diff --git a/.gitignore b/.gitignore index 4c76dc0d..5f0263c1 100644 --- a/.gitignore +++ b/.gitignore @@ -11,6 +11,8 @@ tmd/storage/output/cached_files tmd/storage/output/tax_expenditures !tmd/storage/input/*.csv !tmd/areas/targets/*.csv +!tmd/national_targets/data/*.csv +!tmd/national_targets/data/extracted/**/.gitkeep **demographics_2015.csv **puf_2015.csv *.DS_STORE diff --git a/Makefile b/Makefile index fa520084..b39ede05 100644 --- a/Makefile +++ b/Makefile @@ -41,7 +41,7 @@ data: install tmd_files test format: black . -l 79 -PYLINT_DISABLE = duplicate-code,invalid-name,too-many-instance-attributes,too-many-locals,too-many-arguments,too-many-positional-arguments,too-many-statements,too-many-branches,too-many-nested-blocks,too-many-return-statements,broad-exception-caught,missing-function-docstring,missing-module-docstring,missing-class-docstring +PYLINT_DISABLE = duplicate-code,invalid-name,too-many-instance-attributes,too-many-locals,too-many-arguments,too-many-positional-arguments,too-many-statements,too-many-branches,too-many-nested-blocks,too-many-return-statements,broad-exception-caught,missing-function-docstring,missing-module-docstring,missing-class-docstring,too-many-lines,wrong-import-position PYLINT_OPTIONS = --disable=$(PYLINT_DISABLE) --score=no --jobs=4 \ --check-quote-consistency=yes diff --git a/tests/test_national_targets.py b/tests/test_national_targets.py new file mode 100644 index 00000000..015e2dca --- /dev/null +++ b/tests/test_national_targets.py @@ -0,0 +1,581 @@ +"""Tests for the national targets pipeline. + +Tests are organized by pipeline stage: + 1. Config sanity — table_layouts.py structural integrity + 2. Extracted CSVs — data/extracted/{year}/{table}.csv + 3. IRS aggregate values — data/irs_aggregate_values.csv + 4. soi.csv — storage/input/soi.csv + +Stages 2-4 read committed CSV files and require no Excel libraries or +pipeline execution. Stage 2 also includes optional spot-check tests +that read the raw IRS Excel files directly; these are skipped if the +Excel files are absent (e.g., in CI environments that don't include them). +""" + +from pathlib import Path + +import numpy as np +import pandas as pd +import pytest + +from tmd.national_targets.config.table_layouts import ( + COLUMNS, + DATA_ROWS, + FILE_NAMES, + YEARS, +) +from tmd.storage import STORAGE_FOLDER + +TARGETS_DIR = Path(__file__).resolve().parents[1] / "tmd" / "national_targets" +DATA_DIR = TARGETS_DIR / "data" +EXTRACTED_DIR = DATA_DIR / "extracted" +TABLES = ("tab11", "tab12", "tab14", "tab21") + +VALID_VAR_TYPES = {"amount", "count", "number"} +VALID_VALUE_FILTERS = {"all", "nz", "gt0", "lt0"} +VALID_MARSTATS = {"all", "single", "mfjss", "mfs", "hoh"} + +# pylint: disable=redefined-outer-name # pytest fixture pattern + + +# ── Fixtures + + +@pytest.fixture(scope="module") +def potential_targets(): + return pd.read_csv(DATA_DIR / "irs_aggregate_values.csv") + + +@pytest.fixture(scope="module") +def soi(): + return pd.read_csv(STORAGE_FOLDER / "input" / "soi.csv") + + +# ── 1. Config sanity + + +class TestConfig: + def test_file_names_and_data_rows_keys_match(self): + """Every FILE_NAMES key must have a DATA_ROWS entry and vice versa.""" + assert set(FILE_NAMES.keys()) == set(DATA_ROWS.keys()) + + def test_columns_keys_are_valid_tables(self): + assert set(COLUMNS.keys()) == set(TABLES) + + def test_years_tuple_nonempty(self): + assert len(YEARS) > 0 + + def test_each_spec_has_required_fields(self): + required = {"var_name", "var_type", "value_filter", "marstat", "cols"} + for table, specs in COLUMNS.items(): + for spec in specs: + missing = required - set(spec.keys()) + var_name = spec.get("var_name") + assert ( + not missing + ), f"{table}: spec for {var_name} missing {missing}" + + def test_var_type_values_are_valid(self): + for table, specs in COLUMNS.items(): + for spec in specs: + var_name = spec["var_name"] + var_type = spec["var_type"] + assert ( + var_type in VALID_VAR_TYPES + ), f"{table}/{var_name}: invalid var_type {var_type!r}" + + def test_value_filter_values_are_valid(self): + for table, specs in COLUMNS.items(): + for spec in specs: + var_name = spec["var_name"] + value_filter = spec["value_filter"] + assert value_filter in VALID_VALUE_FILTERS, ( + f"{table}/{var_name}: " + f"invalid value_filter {value_filter!r}" + ) + + def test_marstat_values_are_valid(self): + for table, specs in COLUMNS.items(): + for spec in specs: + var_name = spec["var_name"] + marstat = spec["marstat"] + assert ( + marstat in VALID_MARSTATS + ), f"{table}/{var_name}: invalid marstat {marstat!r}" + + def test_no_duplicate_column_letters_per_table_year(self): + """Two specs in the same table must not map to the same column in the + same year — that would mean reading the wrong IRS column silently.""" + for table, specs in COLUMNS.items(): + for year in YEARS: + if (table, year) not in FILE_NAMES: + continue + letters = [ + spec["cols"][year] + for spec in specs + if year in spec["cols"] + ] + seen = set() + for letter in letters: + assert letter not in seen, ( + f"{table}/{year}: column letter " + f"{letter!r} assigned twice" + ) + seen.add(letter) + + def test_no_duplicate_var_key_per_table_year(self): + """Each (var_name, var_type, value_filter, marstat) combo must be + unique within a table×year — duplicates would silently overwrite rows + in the extracted CSV.""" + for table, specs in COLUMNS.items(): + for year in YEARS: + keys = [ + ( + s["var_name"], + s["var_type"], + s["value_filter"], + s["marstat"], + ) + for s in specs + if year in s["cols"] + ] + assert len(keys) == len( + set(keys) + ), f"{table}/{year}: duplicate var key(s): " + str( + [k for k in keys if keys.count(k) > 1] + ) + + def test_data_rows_first_before_last(self): + for key, (first, last) in DATA_ROWS.items(): + assert first < last, f"{key}: DATA_ROWS first row >= last row" + + def test_cols_years_are_known_years(self): + for table, specs in COLUMNS.items(): + for spec in specs: + var_name = spec["var_name"] + for year in spec["cols"]: + assert ( + year in YEARS + ), f"{table}/{var_name}: cols has unknown year {year}" + + +# ── 2. Extracted CSVs + + +EXTRACTED_COLUMNS = { + "table", + "year", + "fname", + "var_name", + "var_type", + "value_filter", + "marstat", + "description", + "irs_col_header", + "xlcolumn", + "xl_colnumber", + "incsort", + "incrange", + "xlrownum", + "raw_value", +} + + +class TestExtractedCSVs: + def test_all_csvs_exist(self): + missing = [] + for year in YEARS: + for table in TABLES: + if (table, year) not in FILE_NAMES: + continue + p = EXTRACTED_DIR / str(year) / f"{table}.csv" + if not p.exists(): + missing.append(str(p)) + assert not missing, "Missing extracted CSVs:\n" + "\n".join(missing) + + @pytest.mark.parametrize( + "year,table", + [ + (year, table) + for year in YEARS + for table in TABLES + if (table, year) in FILE_NAMES + ], + ) + def test_csv_has_required_columns(self, year, table): + df = pd.read_csv(EXTRACTED_DIR / str(year) / f"{table}.csv") + missing = EXTRACTED_COLUMNS - set(df.columns) + assert not missing, f"{year}/{table} missing columns: {missing}" + + @pytest.mark.parametrize( + "year,table", + [ + (year, table) + for year in YEARS + for table in TABLES + if (table, year) in FILE_NAMES + ], + ) + def test_row_count_matches_data_rows(self, year, table): + """Row count = (last_row - first_row + 1) + × number of specs for that year.""" + first, last = DATA_ROWS[(table, year)] + n_income_rows = last - first + 1 + n_specs = sum(1 for s in COLUMNS[table] if year in s["cols"]) + expected = n_income_rows * n_specs + df = pd.read_csv(EXTRACTED_DIR / str(year) / f"{table}.csv") + assert ( + len(df) == expected + ), f"{year}/{table}: expected {expected} rows, got {len(df)}" + + @pytest.mark.parametrize( + "year,table", + [ + (year, table) + for year in YEARS + for table in TABLES + if (table, year) in FILE_NAMES + ], + ) + def test_irs_col_header_nonempty(self, year, table): + """Every row should have a non-empty IRS column header (validates + that spanner/merged cell extraction is working).""" + df = pd.read_csv(EXTRACTED_DIR / str(year) / f"{table}.csv") + blank = df["irs_col_header"].isna() | ( + df["irs_col_header"].str.strip() == "" + ) + assert ( + not blank.any() + ), f"{year}/{table}: {blank.sum()} rows have empty irs_col_header" + + def test_wages_header_contains_salaries(self): + """The wages column header should mention 'Salaries' — a regression + test for merged-cell spanner extraction.""" + df = pd.read_csv(EXTRACTED_DIR / "2021" / "tab14.csv") + wage_headers = df.loc[df.var_name == "wages", "irs_col_header"] + assert wage_headers.str.contains( + "Salaries", case=False + ).all(), "Wages column header should contain 'Salaries'" + + # ── Spot-check known IRS totals (skip if Excel files absent) ──────────── + + @pytest.mark.parametrize( + "year,var_name,var_type,table,expected", + [ + (2021, "wages", "amount", "tab14", 9_022_352_941_000), + (2022, "wages", "amount", "tab14", 9_738_950_972_000), + (2021, "agi", "amount", "tab11", 14_795_614_070_000), + (2022, "agi", "amount", "tab11", 14_833_956_956_000), + (2021, "agi", "count", "tab11", 160_824_340), + ], + ) + def test_all_returns_spot_check( + self, year, var_name, var_type, table, expected + ): + """Verify 'All returns' row against known IRS published totals.""" + df = pd.read_csv(EXTRACTED_DIR / str(year) / f"{table}.csv") + row = df[ + (df.var_name == var_name) + & (df.var_type == var_type) + & (df.marstat == "all") + & (df.value_filter.isin(["all", "nz"])) + & (df.incsort == 1) + ] + assert len(row) == 1, ( + f"{year}/{table} {var_name}/{var_type}: " + f"expected 1 All-returns row, got {len(row)}" + ) + actual = row.iloc[0]["raw_value"] + assert actual == pytest.approx(expected, rel=1e-9), ( + f"{year}/{table} {var_name}/{var_type} all-returns: " + f"got {actual}, expected {expected}" + ) + + def test_incsort_is_contiguous_per_var(self): + """incsort should run 1..N with no gaps + for each var within a table/year.""" + for year in YEARS: + for table in TABLES: + if (table, year) not in FILE_NAMES: + continue + df = pd.read_csv(EXTRACTED_DIR / str(year) / f"{table}.csv") + first, last = DATA_ROWS[(table, year)] + n_expected = last - first + 1 + for (vn, vt, vf, ms), grp in df.groupby( + ["var_name", "var_type", "value_filter", "marstat"] + ): + sorts = sorted(grp["incsort"].tolist()) + assert sorts == list(range(1, n_expected + 1)), ( + f"{year}/{table} {vn}/{vt}/{vf}/{ms}: " + f"incsort not contiguous 1..{n_expected}" + ) + + +# ── 3. IRS aggregate values + + +class TestPotentialTargets: + def test_row_count(self, potential_targets): + assert len(potential_targets) == 6281 + + def test_years_present(self, potential_targets): + assert set(potential_targets["year"].unique()) == {2015, 2021, 2022} + + def test_year_row_counts(self, potential_targets): + assert len(potential_targets[potential_targets.year == 2015]) == 2023 + assert len(potential_targets[potential_targets.year == 2021]) == 2129 + assert len(potential_targets[potential_targets.year == 2022]) == 2129 + + def test_unique_var_name_count(self, potential_targets): + assert potential_targets["var_name"].nunique() == 42 + + def test_no_missing_ptarget(self, potential_targets): + assert potential_targets["ptarget"].notna().all() + + def test_required_columns_present(self, potential_targets): + required = { + "rownum", + "idbase", + "year", + "table", + "var_name", + "var_type", + "var_description", + "value_filter", + "subgroup", + "marstat", + "incsort", + "incrange", + "ptarget", + "fname", + "xlcell", + "xl_colnumber", + "xlcolumn", + "xlrownum", + } + missing = required - set(potential_targets.columns) + assert not missing, f"Missing columns: {missing}" + + def test_idbase_row_unique(self, potential_targets): + """(idbase, incsort) must be unique within each source table. + idbase is a per-variable-group key; incsort distinguishes income + brackets. Note: the same (idbase, incsort) CAN appear more than once + across different tables — potential_targets preserves cross-table + redundancy by design. Duplicates within a single table would be a bug. + """ + pt = potential_targets + assert not pt.duplicated(subset=["table", "idbase", "incsort"]).any() + + def test_rownum_is_sequential(self, potential_targets): + assert list(potential_targets["rownum"]) == list( + range(1, len(potential_targets) + 1) + ) + + def test_wages_2021_total(self, potential_targets): + val = potential_targets[ + (potential_targets.year == 2021) + & (potential_targets.var_name == "wages") + & (potential_targets.var_type == "amount") + & (potential_targets.value_filter == "nz") + & (potential_targets.marstat == "all") + & (potential_targets.incsort == 1) + ]["ptarget"].values[0] + assert val == pytest.approx(9_022_352_941_000, rel=1e-9) + + def test_wages_2022_total(self, potential_targets): + val = potential_targets[ + (potential_targets.year == 2022) + & (potential_targets.var_name == "wages") + & (potential_targets.var_type == "amount") + & (potential_targets.value_filter == "nz") + & (potential_targets.marstat == "all") + & (potential_targets.incsort == 1) + ]["ptarget"].values[0] + assert val == pytest.approx(9_738_950_972_000, rel=1e-9) + + def test_agi_2021_total(self, potential_targets): + val = potential_targets[ + (potential_targets.year == 2021) + & (potential_targets.var_name == "agi") + & (potential_targets.var_type == "amount") + & (potential_targets.table == "tab11") + & (potential_targets.incsort == 1) + ]["ptarget"].values[0] + assert val == pytest.approx(14_795_614_070_000, rel=1e-9) + + def test_agi_2022_total(self, potential_targets): + val = potential_targets[ + (potential_targets.year == 2022) + & (potential_targets.var_name == "agi") + & (potential_targets.var_type == "amount") + & (potential_targets.table == "tab11") + & (potential_targets.incsort == 1) + ]["ptarget"].values[0] + assert val == pytest.approx(14_833_956_956_000, rel=1e-9) + + def test_marstat_filing_status_sum_check(self, potential_targets): + """For tab12: sum of single+mfjss+mfs+hoh return counts should equal + the 'all' total for the All-returns row (incsort=1).""" + for year in [2021, 2022]: + total_all = potential_targets[ + (potential_targets.year == year) + & (potential_targets.table == "tab12") + & (potential_targets.var_name == "agi") + & (potential_targets.var_type == "count") + & (potential_targets.marstat == "all") + & (potential_targets.incsort == 1) + ]["ptarget"].values[0] + + total_parts = potential_targets[ + (potential_targets.year == year) + & (potential_targets.table == "tab12") + & (potential_targets.var_name == "agi") + & (potential_targets.var_type == "count") + & ( + potential_targets.marstat.isin( + ["single", "mfjss", "mfs", "hoh"] + ) + ) + & (potential_targets.incsort == 1) + ]["ptarget"].sum() + + assert total_parts == pytest.approx(total_all, rel=1e-6), ( + f"{year} tab12 marstat sum mismatch: " + f"parts={total_parts}, all={total_all}" + ) + + def test_amounts_in_dollars_not_thousands(self, potential_targets): + """2021 wages total should be ~9 trillion dollars, not ~9 billion + (which would indicate a missing ×1000 conversion).""" + wages = potential_targets[ + (potential_targets.year == 2021) + & (potential_targets.var_name == "wages") + & (potential_targets.var_type == "amount") + & (potential_targets.incsort == 1) + ]["ptarget"].values[0] + assert ( + wages > 1e12 + ), f"Wages appear to be in thousands, not dollars: {wages:.0f}" + + +# ── 4. soi.csv + + +SOI_COLUMNS = [ + "Year", + "SOI table", + "XLSX column", + "XLSX row", + "Variable", + "Filing status", + "AGI lower bound", + "AGI upper bound", + "Count", + "Taxable only", + "Full population", + "Value", +] + + +class TestSoi: + def test_required_columns(self, soi): + missing = set(SOI_COLUMNS) - set(soi.columns) + assert not missing, f"soi.csv missing columns: {missing}" + + def test_years_present(self, soi): + assert set(soi["Year"].unique()) == {2015, 2021, 2022} + + def test_row_counts_per_year(self, soi): + assert len(soi[soi.Year == 2015]) == 1860 + assert len(soi[soi.Year == 2021]) == 1986 + assert len(soi[soi.Year == 2022]) == 1826 + + def test_no_missing_values(self, soi): + for col in SOI_COLUMNS: + assert soi[col].notna().all(), f"soi.csv has NaN in column {col}" + + def test_employment_income_2021_total(self, soi): + """employment_income (=wages) for 2021 All-returns should match IRS.""" + val = soi[ + (soi.Year == 2021) + & (soi.Variable == "employment_income") + & (soi["Filing status"] == "All") + & (soi["AGI lower bound"] == -np.inf) + & (soi["AGI upper bound"] == np.inf) + & (~soi["Count"]) + ]["Value"].values[0] + assert val == pytest.approx(9_022_352_941_000, rel=1e-9) + + def test_employment_income_2022_total(self, soi): + val = soi[ + (soi.Year == 2022) + & (soi.Variable == "employment_income") + & (soi["Filing status"] == "All") + & (soi["AGI lower bound"] == -np.inf) + & (soi["AGI upper bound"] == np.inf) + & (~soi["Count"]) + ]["Value"].values[0] + assert val == pytest.approx(9_738_950_972_000, rel=1e-9) + + def test_full_population_flag(self, soi): + """Full population = True iff Filing status=All, AGI=(-inf,inf), + Taxable only=False.""" + expected_full_pop = ( + (soi["Filing status"] == "All") + & (soi["AGI lower bound"] == -np.inf) + & (soi["AGI upper bound"] == np.inf) + & (~soi["Taxable only"]) + ) + assert (soi["Full population"] == expected_full_pop).all() + + def test_taxable_only_is_always_false(self, soi): + """irs_aggregate_values.csv has no taxable-only subgroup; + Taxable only should be False for every row.""" + assert (~soi["Taxable only"]).all() + + def test_partner_scorp_aggregation_2021(self, soi): + """For 2021, partnership_and_s_corp_income should exceed + s_corporation_net_income alone + (because S-corp was added to partnership). + """ + partner = soi[ + (soi.Year == 2021) + & (soi.Variable == "partnership_and_s_corp_income") + & (soi["Filing status"] == "All") + & (soi["AGI lower bound"] == -np.inf) + & (soi["AGI upper bound"] == np.inf) + & (~soi["Count"]) + ]["Value"].values[0] + + scorp = soi[ + (soi.Year == 2021) + & (soi.Variable == "s_corporation_net_income") + & (soi["Filing status"] == "All") + & (soi["AGI lower bound"] == -np.inf) + & (soi["AGI upper bound"] == np.inf) + & (~soi["Count"]) + ]["Value"].values[0] + + assert partner > scorp, ( + "partnership_and_s_corp_income should be > s_corp alone " + f"(partner={partner}, scorp={scorp})" + ) + + def test_no_duplicate_targeted_rows(self, soi): + """No two rows should share the same (Year, Variable, Filing status, + AGI lower, AGI upper, Count, Taxable only) — that would mean the + optimizer sees ambiguous targets.""" + key_cols = [ + "Year", + "Variable", + "Filing status", + "AGI lower bound", + "AGI upper bound", + "Count", + "Taxable only", + ] + dupes = soi.duplicated(subset=key_cols, keep=False) + assert not dupes.any(), ( + f"{dupes.sum()} duplicate targeted rows in soi.csv:\n" + + soi[dupes][key_cols].to_string() + ) diff --git a/tmd/national_targets/.gitignore b/tmd/national_targets/.gitignore deleted file mode 100644 index d7e21105..00000000 --- a/tmd/national_targets/.gitignore +++ /dev/null @@ -1,17 +0,0 @@ -/.quarto/ - -# folders -_book/ -_freeze/ -puf_irs_mapping/puf_irs_mapping_files/ -site_libs/ - -# file types -~*.xls* -*.html -*.rds - -# files -.Rhistory - -**/*.quarto_ipynb diff --git a/tmd/national_targets/R/functions_excel.R b/tmd/national_targets/R/functions_excel.R deleted file mode 100644 index dc607569..00000000 --- a/tmd/national_targets/R/functions_excel.R +++ /dev/null @@ -1,106 +0,0 @@ -# excel helpers for reading the target recipes xlsx file and individual xls* files ---- -xlcol_to_num <- function(s) { - # convert vector of Excel column labels s such as c("BF", "AG") to column numbers - sapply(strsplit(toupper(s), "", fixed = TRUE), \(chars) { - Reduce(\(a, b) a * 26 + b, match(chars, LETTERS)) - }) -} - -xlnum_to_col <- function(n) { - # convert vector of Excel column numbers s such as c(58, 33) to column labels - unname(sapply(n, \(x) { - out <- character() - while (x > 0) { - x <- x - 1L - out <- c(LETTERS[x %% 26 + 1L], out) - x <- x %/% 26 - } - paste0(out, collapse = "") - })) -} - -xlcols <- function(n) { - # create a vector of letters in the order that Excel uses - - # a helper function that allows us to put letter column names on a dataframe - # that was read from an Excel file - - # usage: - # xlcols(53) - # gets the letters for the first 53 columns in a spreadsheet - # only good for 1- and 2-letter columns, or 26 + 26 x 26 = 702 columns - xl_letters <- c( - LETTERS, - sapply(LETTERS, function(x) paste0(x, LETTERS, sep = "")) - ) - return(xl_letters[1:n]) -} - - -get_rowmap <- function(tab, DATADIR, targfn) { - # reads the target recipes xlsx file to - # get start and end row for key data for each year of a particular IRS spreadsheet - # from its associated mapping tab in the recipes file - # targfn is the targets filename - sheet <- paste0(tab, "_map") - readxl::read_excel( - fs::path(DATADIR, targfn), - sheet = sheet, - range = cellranger::cell_rows(1:3) - ) |> - tidyr::pivot_longer(-rowtype, values_to = "xlrownum") |> - tidyr::separate_wider_delim( - name, - delim = "_", - names = c("datatype", "year") - ) |> - dplyr::mutate( - table = tab, - year = as.integer(year), - xlrownum = as.integer(xlrownum) - ) |> - dplyr::select(table, datatype, year, rowtype, xlrownum) |> - dplyr::arrange(table, year, datatype, desc(rowtype)) -} - - -get_colmap <- function(tab, DATADIR, targfn) { - # reads the target_recipes.xlsx file to - # get columns of interest for each year of a particular IRS spreadsheet, - # from its associated mapping tab in the recipes file - - # assumes DATADIR, targfn (targets filename), and allcols are in the environment - sheet <- paste0(tab, "_map") - col_map <- readxl::read_excel( - path(DATADIR, targfn), - sheet = sheet, - skip = 3 - ) |> - pivot_longer( - -c(vname, description, units, notes), - values_to = "xlcolumn" - ) |> - separate_wider_delim(name, delim = "_", names = c("datatype", "year")) |> - mutate( - table = tab, - year = as.integer(year), - # xl_colnumber = match(xlcolumn, allcols) - xl_colnumber = xlcol_to_num(xlcolumn) - ) |> - select( - table, - datatype, - year, - xl_colnumber, - xlcolumn, - vname, - description, - units, - notes - ) |> - filter(!is.na(xlcolumn), !is.na(vname)) |> - arrange(table, datatype, year, xl_colnumber) - col_map -} - -# allcols <- xlcols(400); get_colmap("tab11") diff --git a/tmd/national_targets/R/functions_helpers.R b/tmd/national_targets/R/functions_helpers.R deleted file mode 100644 index cec146f6..00000000 --- a/tmd/national_targets/R/functions_helpers.R +++ /dev/null @@ -1,41 +0,0 @@ -# general helper functions ---- - -cut_labels <- function(breaks) { - n <- length(breaks) - labels <- character(n - 1) - for (i in 1:(n - 1)) { - labels[i] <- paste(breaks[i], breaks[i + 1] - 1, sep = "-") - } - return(labels) -} - - -cutlabs_ge <- function(breaks) { - n <- length(breaks) - labels <- character(n - 1) - for (i in 1:(n - 1)) { - paste(breaks[i], breaks[i + 1], sep = " to < ") - } - return(labels) -} -# cutlabs_ge(breaks) -# -# breaks <- c(0, 1000, 2000) -# i <- 2 -# paste(breaks[i], breaks[i + 1], sep = " to < ") - -ht <- function(df, nrecs = 6) { - print(utils::head(df, nrecs)) - print(utils::tail(df, nrecs)) -} - - -lcnames <- function(df) { - vnames <- stringr::str_to_lower(names(df)) - stats::setNames(df, vnames) -} - - -ns <- function(df) { - names(df) |> sort() -} diff --git a/tmd/national_targets/R/legacy_code.R b/tmd/national_targets/R/legacy_code.R deleted file mode 100644 index 7b3f8ea1..00000000 --- a/tmd/national_targets/R/legacy_code.R +++ /dev/null @@ -1,25 +0,0 @@ -# Legacy code to download IRS files - -f <- function(upath, destfolder) { - print(upath) - download.file( - url = upath, - destfile = fs::path(destfolder, fs::path_file(upath)), - mode = "wb" - ) -} - -# uncomment the next 3 lines to download files -# urls <- xxxx # for example, tabmeta$upath -# destfolder <- zzzz # the destination folder -# walk(urls, \(upath) f(upath, destfolder)) # walk through the list of paths, downloading and saving each file - -# legacy code to define locations of files, superseded by project-dir option in _quarto.yml - -# if (Sys.getenv("QUARTO_PROJECT_DIR") != "") { -# # When rendering via quarto render -# QDIR <- Sys.getenv("QUARTO_PROJECT_DIR") -# } else { -# # When running interactively -# QDIR <- here::here("tmd", "national_targets") -# } diff --git a/tmd/national_targets/R/libraries.R b/tmd/national_targets/R/libraries.R deleted file mode 100644 index 4bbae696..00000000 --- a/tmd/national_targets/R/libraries.R +++ /dev/null @@ -1,28 +0,0 @@ -libs <- function() { - library(tidyverse) - tprint <- 75 # default tibble print - options(tibble.print_max = tprint, tibble.print_min = tprint) # show up to tprint rows - - library(readxl) - library(vroom) - library(fs) - library(openxlsx2) - library(arrow) - library(jsonlite) - library(tidyjson) - - library(skimr) - library(janitor) - library(gtExtras) - library(DT) - library(htmltools) - library(kableExtra) - library(knitr) - - library(skimr) - library(Hmisc) - library(gt) - # library(btools) -} - -suppressPackageStartupMessages(libs()) diff --git a/tmd/national_targets/README.md b/tmd/national_targets/README.md deleted file mode 100644 index 57965e2b..00000000 --- a/tmd/national_targets/README.md +++ /dev/null @@ -1 +0,0 @@ -# irs_targets diff --git a/tmd/national_targets/_quarto.yml b/tmd/national_targets/_quarto.yml deleted file mode 100644 index d05d4330..00000000 --- a/tmd/national_targets/_quarto.yml +++ /dev/null @@ -1,43 +0,0 @@ -project: - type: book - execute-dir: project - -execute: - eval: true - echo: true - output: true - freeze: false # auto: during global project renders, re-render only when source changes - -book: - title: "Get IRS data for possible use as PUF targets" - subtitle: "Create csv file" - author: "Don Boyd" - date: today - date-format: long - chapters: - - index.qmd - - prepare.qmd - - examine.qmd - -format: - html: - theme: cosmo - code-fold: true - -editor_options: - chunk_output_type: console - - -# possibly use this at start of each doc -# --- -# output: html_document -# editor_options: -# chunk_output_type: console -# --- - -# use qstop shortcut for this -# ```{r stop_here, echo=FALSE} -# knitr::knit_exit() -# ``` - - \ No newline at end of file diff --git a/tmd/national_targets/build_targets.py b/tmd/national_targets/build_targets.py new file mode 100644 index 00000000..7a6a10cf --- /dev/null +++ b/tmd/national_targets/build_targets.py @@ -0,0 +1,198 @@ +"""Build irs_aggregate_values.csv from extracted IRS CSV files. + +Reads the per-table CSV files produced by extract_irs_to_csv.py and +assembles them into irs_aggregate_values.csv — the input to +potential_targets_to_soi.py. + +The output schema matches the existing file so that potential_targets_to_soi.py +works unchanged. + +Output columns: + rownum, idbase, year, table, var_name, var_type, var_description, + value_filter, subgroup, marstat, incsort, incrange, ptarget, + fname, xlcell, xl_colnumber, xlcolumn, xlrownum +""" + +import sys +from pathlib import Path + +import pandas as pd + +sys.path.insert(0, str(Path(__file__).resolve().parents[2])) + +from tmd.national_targets.config.table_layouts import YEARS # noqa: E402 + +DATA_DIR = Path(__file__).parent / "data" +EXTRACTED_DIR = DATA_DIR / "extracted" +OUTPUT_PATH = DATA_DIR / "irs_aggregate_values.csv" + +TABLES = ("tab11", "tab12", "tab14", "tab21") + +# tab21 covers itemized-deduction filers only, but we label all rows +# "filers" for compatibility with potential_targets_to_soi.py, which +# does not filter on the subgroup column. +_TABLE_SUBGROUP = { + "tab11": "filers", + "tab12": "filers", + "tab14": "filers", + "tab21": "filers", +} + +OUTPUT_COLUMNS = [ + "rownum", + "idbase", + "year", + "table", + "var_name", + "var_type", + "var_description", + "value_filter", + "subgroup", + "marstat", + "incsort", + "incrange", + "ptarget", + "fname", + "xlcell", + "xl_colnumber", + "xlcolumn", + "xlrownum", +] + + +def _xlcell(col_letter: str, row: int) -> str: + """Format an Excel cell reference, e.g. ('D', 9) → 'D9'.""" + return f"{col_letter}{row}" + + +def build_potential_targets( + years=YEARS, + tables=TABLES, + extracted_dir=EXTRACTED_DIR, + output_path=OUTPUT_PATH, +) -> pd.DataFrame: + """Read extracted CSVs and assemble irs_aggregate_values.csv. + + Args: + years: Iterable of years to include. + tables: Iterable of table keys to include. + extracted_dir: Directory containing extracted CSVs. + output_path: Where to write the assembled CSV. + + Returns: + The assembled DataFrame (also written to output_path). + """ + extracted_dir = Path(extracted_dir) + dfs = [] + + for year in years: + for table in tables: + csv_path = extracted_dir / str(year) / f"{table}.csv" + if not csv_path.exists(): + print( + f" WARNING: {csv_path} not found" + f" — run extract_irs_to_csv.py first" + ) + continue + dfs.append(pd.read_csv(csv_path)) + + if not dfs: + raise FileNotFoundError( + f"No extracted CSVs found in {extracted_dir}. " + "Run extract_irs_to_csv.py first." + ) + + combined = pd.concat(dfs, ignore_index=True) + + # Drop rows where the IRS cell held a footnote marker (missing data). + n_missing = combined["raw_value"].isna().sum() + if n_missing: + print( + f" Dropping {n_missing} rows with missing IRS values" + " (footnote markers or suppressed data)" + ) + combined = combined.dropna(subset=["raw_value"]) + + # raw_value is already in dollars (conversion done in extract step). + combined = combined.rename( + columns={ + "raw_value": "ptarget", + "description": "var_description", + } + ) + + combined["subgroup"] = combined["table"].map(_TABLE_SUBGROUP) + combined["xlcell"] = combined.apply( + lambda r: _xlcell(r["xlcolumn"], r["xlrownum"]), axis=1 + ) + + # Sort for reproducibility before assigning row numbers. + combined = combined.sort_values( + [ + "year", + "table", + "var_name", + "var_type", + "value_filter", + "marstat", + "incsort", + ] + ).reset_index(drop=True) + + combined.insert(0, "rownum", range(1, len(combined) + 1)) + combined["idbase"] = ( + combined["year"].astype(str) + + "_" + + combined["table"] + + "_" + + combined["var_name"] + + "_" + + combined["var_type"] + + "_" + + combined["value_filter"] + + "_" + + combined["marstat"] + ) + + df_out = combined[OUTPUT_COLUMNS].copy() + + out_path = Path(output_path) + df_out.to_csv(out_path, index=False) + print(f"Wrote {len(df_out)} rows to {out_path.relative_to(Path.cwd())}") + + return df_out + + +if __name__ == "__main__": + import argparse + + parser = argparse.ArgumentParser( + description="Build irs_aggregate_values.csv from extracted CSVs." + ) + parser.add_argument( + "--years", + nargs="+", + type=int, + default=list(YEARS), + help="Years to include (default: all configured years)", + ) + parser.add_argument( + "--tables", + nargs="+", + default=list(TABLES), + help="Tables to include (default: tab11 tab12 tab14 tab21)", + ) + args = parser.parse_args() + + print("Building irs_aggregate_values.csv...") + print(f" Years: {args.years}") + print(f" Tables: {args.tables}") + print() + result = build_potential_targets(years=args.years, tables=args.tables) + print() + print("Summary:") + print(f" Total rows: {len(result)}") + for yr in sorted(result.year.unique()): + n = len(result[result.year == yr]) + print(f" {yr}: {n} rows") + print(f" Unique var_names: {result.var_name.nunique()}") diff --git a/tmd/national_targets/config/__init__.py b/tmd/national_targets/config/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/tmd/national_targets/config/table_layouts.py b/tmd/national_targets/config/table_layouts.py new file mode 100644 index 00000000..5ded74bc --- /dev/null +++ b/tmd/national_targets/config/table_layouts.py @@ -0,0 +1,1069 @@ +"""IRS SOI Excel file layout configuration. + +For each table and year, specifies: + - filename + - data row range (1-indexed, inclusive) + - column specs: which Excel column letter(s) hold each variable + +This is the single source of truth for reading IRS Excel files. +Update here when IRS adds a new year or restructures a spreadsheet. + +Column letters come from direct inspection of the spreadsheets and +cross-validation against SOI published totals; see +tmd/national_targets/docs/variable_validation_methodology.md. + +Units: IRS amount columns are in thousands of dollars. + extract_irs_to_csv.py multiplies amounts by 1000 → dollars. + Counts and numbers are already in full units (no conversion). +""" + +YEARS = (2015, 2021, 2022) + +# ── Filenames ──────────────────────────────────────────────────────────────── + +FILE_NAMES = { + ("tab11", 2015): "15in11si.xls", + ("tab11", 2021): "21in11si.xls", + ("tab11", 2022): "22in11si.xls", + ("tab12", 2015): "15in12ms.xls", + ("tab12", 2021): "21in12ms.xls", + ("tab12", 2022): "22in12ms.xls", + ("tab14", 2015): "15in14ar.xls", + ("tab14", 2021): "21in14ar.xls", + ("tab14", 2022): "22in14ar.xls", + ("tab21", 2015): "15in21id.xls", + ("tab21", 2021): "21in21id.xls", + ("tab21", 2022): "22in21id.xls", +} + +TABLE_DESCRIPTIONS = { + "tab11": "Table 1.1: All Returns — Returns and AGI by Income Size", + "tab12": "Table 1.2: All Returns — Marital Status", + "tab14": "Table 1.4: All Returns — Sources of Income and Adjustments", + "tab21": "Table 2.1: Returns with Itemized Deductions", +} + +# ── Data row ranges (1-indexed Excel row numbers, inclusive) ───────────────── +# First data row = "All returns, total" row +# Last data row = highest income bracket row + +DATA_ROWS = { + ("tab11", 2015): (10, 29), + ("tab11", 2021): (10, 29), + ("tab11", 2022): (10, 29), + ("tab12", 2015): (9, 28), + ("tab12", 2021): (9, 28), + ("tab12", 2022): (9, 28), + ("tab14", 2015): (9, 28), + ("tab14", 2021): (9, 28), + ("tab14", 2022): (9, 28), + ("tab21", 2015): (10, 32), + ("tab21", 2021): (10, 32), + ("tab21", 2022): (10, 32), +} + +# ── Column specifications ──────────────────────────────────────────────────── +# Each entry defines one (variable × type × filter × marstat) combination. +# "cols" maps year → Excel column letter for that year's file. +# Omit a year from "cols" if the variable doesn't exist in that year. +# +# var_type: +# "amount" — dollar amount (thousands in IRS file, converted to dollars) +# "count" — number of returns +# "number" — item count (e.g. number of exemptions), not a return count +# +# value_filter: +# "all" — all returns regardless of sign or zero value +# "nz" — returns with nonzero value +# "gt0" — returns with strictly positive value (income side) +# "lt0" — returns with strictly negative value (loss side) +# +# marstat: +# "all" | "single" | "mfjss" | "mfs" | "hoh" +# +# Year-availability notes: +# 2015-only: exemption, exemptions_n (tab14/12), partnerscorpincome (tab14) +# 2021+ only: qbid, partnerincome, scorpincome (tab14), id_pitgst (tab21) + + +# ── Table 1.1: All Returns — AGI by income size ────────────────────────────── +# Only two useful columns; "Percent of total" (col C) is intentionally skipped. + +TAB11_COLUMNS = [ + { + "var_name": "agi", + "var_type": "count", + "value_filter": "all", + "marstat": "all", + "description": "Number of returns", + "cols": {2015: "B", 2021: "B", 2022: "B"}, + }, + { + "var_name": "agi", + "var_type": "amount", + "value_filter": "all", + "marstat": "all", + "description": "Adjusted gross income", + "cols": {2015: "D", 2021: "D", 2022: "D"}, + }, +] + + +# ── Table 1.2: All Returns — Marital Status ────────────────────────────────── +# 2015 has a personal exemption column (col D) not present in 2021/2022. +# This shifts all 2015 column letters by +1 for the "all" block and +# by an additional +1 per marstat block (each block also had an exemption col). + +TAB12_COLUMNS = [ + # ── All returns ────────────────────────────────────────────────────────── + { + "var_name": "agi", + "var_type": "count", + "value_filter": "all", + "marstat": "all", + "description": "Number of returns", + "cols": {2015: "B", 2021: "B", 2022: "B"}, + }, + { + "var_name": "agi", + "var_type": "amount", + "value_filter": "all", + "marstat": "all", + "description": "Adjusted gross income", + "cols": {2015: "C", 2021: "C", 2022: "C"}, + }, + # Personal exemption: 2015 only (TCJA eliminated for 2018+) + { + "var_name": "exemption", + "var_type": "amount", + "value_filter": "all", + "marstat": "all", + "description": "Personal exemption (2015 only)", + "cols": {2015: "D"}, + }, + { + "var_name": "itemded", + "var_type": "count", + "value_filter": "nz", + "marstat": "all", + "description": "Itemized deductions — number of returns", + "cols": {2015: "E", 2021: "D", 2022: "D"}, + }, + { + "var_name": "itemded", + "var_type": "amount", + "value_filter": "nz", + "marstat": "all", + "description": "Total itemized deductions", + "cols": {2015: "F", 2021: "E", 2022: "E"}, + }, + { + "var_name": "sd", + "var_type": "count", + "value_filter": "nz", + "marstat": "all", + "description": "Standard deduction — number of returns", + "cols": {2015: "G", 2021: "F", 2022: "F"}, + }, + { + "var_name": "sd", + "var_type": "amount", + "value_filter": "nz", + "marstat": "all", + "description": "Standard deduction", + "cols": {2015: "H", 2021: "G", 2022: "G"}, + }, + { + "var_name": "ti", + "var_type": "count", + "value_filter": "nz", + "marstat": "all", + "description": "Taxable income — number of returns", + "cols": {2015: "I", 2021: "H", 2022: "H"}, + }, + { + "var_name": "ti", + "var_type": "amount", + "value_filter": "nz", + "marstat": "all", + "description": "Taxable income", + "cols": {2015: "J", 2021: "I", 2022: "I"}, + }, + { + "var_name": "taxac", + "var_type": "count", + "value_filter": "nz", + "marstat": "all", + "description": "Income tax after credits — number of returns", + "cols": {2015: "K", 2021: "J", 2022: "J"}, + }, + { + "var_name": "taxac", + "var_type": "amount", + "value_filter": "nz", + "marstat": "all", + "description": "Income tax after credits", + "cols": {2015: "L", 2021: "K", 2022: "K"}, + }, + { + "var_name": "tottax", + "var_type": "count", + "value_filter": "nz", + "marstat": "all", + "description": "Total tax — number of returns", + "cols": {2015: "M", 2021: "L", 2022: "L"}, + }, + { + "var_name": "tottax", + "var_type": "amount", + "value_filter": "nz", + "marstat": "all", + "description": "Total tax", + "cols": {2015: "N", 2021: "M", 2022: "M"}, + }, + # ── Married filing jointly / surviving spouse ──────────────────────────── + # Each marstat block in 2015 also has an exemption col, so the 2015 shift + # grows by 1 per block: mfjss +1, mfs +2, hoh +3, single +4. + { + "var_name": "agi", + "var_type": "count", + "value_filter": "all", + "marstat": "mfjss", + "description": "Number of returns — married filing jointly/SS", + "cols": {2015: "O", 2021: "N", 2022: "N"}, + }, + { + "var_name": "agi", + "var_type": "amount", + "value_filter": "all", + "marstat": "mfjss", + "description": "Adjusted gross income — married filing jointly/SS", + "cols": {2015: "P", 2021: "O", 2022: "O"}, + }, + # ── Married filing separately ──────────────────────────────────────────── + { + "var_name": "agi", + "var_type": "count", + "value_filter": "all", + "marstat": "mfs", + "description": "Number of returns — married filing separately", + "cols": {2015: "AB", 2021: "Z", 2022: "Z"}, + }, + { + "var_name": "agi", + "var_type": "amount", + "value_filter": "all", + "marstat": "mfs", + "description": "Adjusted gross income — married filing separately", + "cols": {2015: "AC", 2021: "AA", 2022: "AA"}, + }, + # ── Head of household ──────────────────────────────────────────────────── + { + "var_name": "agi", + "var_type": "count", + "value_filter": "all", + "marstat": "hoh", + "description": "Number of returns — head of household", + "cols": {2015: "AO", 2021: "AL", 2022: "AL"}, + }, + { + "var_name": "agi", + "var_type": "amount", + "value_filter": "all", + "marstat": "hoh", + "description": "Adjusted gross income — head of household", + "cols": {2015: "AP", 2021: "AM", 2022: "AM"}, + }, + # ── Single ─────────────────────────────────────────────────────────────── + { + "var_name": "agi", + "var_type": "count", + "value_filter": "all", + "marstat": "single", + "description": "Number of returns — single", + "cols": {2015: "BB", 2021: "AX", 2022: "AX"}, + }, + { + "var_name": "agi", + "var_type": "amount", + "value_filter": "all", + "marstat": "single", + "description": "Adjusted gross income — single", + "cols": {2015: "BC", 2021: "AY", 2022: "AY"}, + }, +] + + +# ── Table 1.4: All Returns — Sources of Income and Adjustments ─────────────── +# Column positions are stable for 2015 and 2021 for most variables, but +# IRS added several new columns in 2022 before the existing variables, +# shifting many of them. See column comments where 2022 differs. +# Additionally: +# - 2015 has partnerscorpincome (combined) but not partnerincome/scorpincome +# - 2021+ have partnerincome and scorpincome (split) but not +# partnerscorpincome +# - 2015 has exemption/exemptions_n (pre-TCJA) +# - 2021+ have qbid (post-TCJA) + +TAB14_COLUMNS = [ + # ── Number of returns and AGI ──────────────────────────────────────────── + { + "var_name": "agi", + "var_type": "count", + "value_filter": "all", + "marstat": "all", + "description": "Number of returns", + "cols": {2015: "B", 2021: "B", 2022: "B"}, + }, + { + "var_name": "agi", + "var_type": "amount", + "value_filter": "all", + "marstat": "all", + "description": "Adjusted gross income", + "cols": {2015: "C", 2021: "C", 2022: "C"}, + }, + # ── Wages and salaries ─────────────────────────────────────────────────── + { + "var_name": "wages", + "var_type": "count", + "value_filter": "nz", + "marstat": "all", + "description": "Salaries and wages — number of returns", + "cols": {2015: "F", 2021: "F", 2022: "F"}, + }, + { + "var_name": "wages", + "var_type": "amount", + "value_filter": "nz", + "marstat": "all", + "description": "Salaries and wages", + "cols": {2015: "G", 2021: "G", 2022: "G"}, + }, + # ── Taxable interest ───────────────────────────────────────────────────── + # 2022: IRS inserted new columns (tips, overtime) before taxint + { + "var_name": "taxint", + "var_type": "count", + "value_filter": "nz", + "marstat": "all", + "description": "Taxable interest — number of returns", + "cols": {2015: "H", 2021: "H", 2022: "T"}, + }, + { + "var_name": "taxint", + "var_type": "amount", + "value_filter": "nz", + "marstat": "all", + "description": "Taxable interest", + "cols": {2015: "I", 2021: "I", 2022: "U"}, + }, + # ── Tax-exempt interest ────────────────────────────────────────────────── + { + "var_name": "exemptint", + "var_type": "count", + "value_filter": "nz", + "marstat": "all", + "description": "Tax-exempt interest — number of returns", + "cols": {2015: "J", 2021: "J", 2022: "V"}, + }, + { + "var_name": "exemptint", + "var_type": "amount", + "value_filter": "nz", + "marstat": "all", + "description": "Tax-exempt interest", + "cols": {2015: "K", 2021: "K", 2022: "W"}, + }, + # ── Ordinary dividends ─────────────────────────────────────────────────── + { + "var_name": "orddiv", + "var_type": "count", + "value_filter": "nz", + "marstat": "all", + "description": "Ordinary dividends — number of returns", + "cols": {2015: "L", 2021: "L", 2022: "X"}, + }, + { + "var_name": "orddiv", + "var_type": "amount", + "value_filter": "nz", + "marstat": "all", + "description": "Ordinary dividends", + "cols": {2015: "M", 2021: "M", 2022: "Y"}, + }, + # ── Qualified dividends ────────────────────────────────────────────────── + { + "var_name": "qualdiv", + "var_type": "count", + "value_filter": "nz", + "marstat": "all", + "description": "Qualified dividends — number of returns", + "cols": {2015: "N", 2021: "N", 2022: "Z"}, + }, + { + "var_name": "qualdiv", + "var_type": "amount", + "value_filter": "nz", + "marstat": "all", + "description": "Qualified dividends", + "cols": {2015: "O", 2021: "O", 2022: "AA"}, + }, + # ── Business / profession net income (income and loss reported + # ── separately) + { + "var_name": "busprofincome", + "var_type": "count", + "value_filter": "gt0", + "marstat": "all", + "description": "Business income — number of returns with profit", + "cols": {2015: "T", 2021: "T", 2022: "AF"}, + }, + { + "var_name": "busprofincome", + "var_type": "amount", + "value_filter": "gt0", + "marstat": "all", + "description": "Business net income (profit)", + "cols": {2015: "U", 2021: "U", 2022: "AG"}, + }, + { + "var_name": "busprofincome", + "var_type": "count", + "value_filter": "lt0", + "marstat": "all", + "description": "Business income — number of returns with loss", + "cols": {2015: "V", 2021: "V", 2022: "AH"}, + }, + { + "var_name": "busprofincome", + "var_type": "amount", + "value_filter": "lt0", + "marstat": "all", + "description": "Business net loss", + "cols": {2015: "W", 2021: "W", 2022: "AI"}, + }, + # ── Capital gain distributions (Schedule D) ────────────────────────────── + { + "var_name": "cgdist", + "var_type": "count", + "value_filter": "nz", + "marstat": "all", + "description": "Capital gain distributions — number of returns", + "cols": {2015: "X", 2021: "X", 2022: "AJ"}, + }, + { + "var_name": "cgdist", + "var_type": "amount", + "value_filter": "nz", + "marstat": "all", + "description": "Capital gain distributions", + "cols": {2015: "Y", 2021: "Y", 2022: "AK"}, + }, + # ── Net capital gain / loss ────────────────────────────────────────────── + { + "var_name": "cgtaxable", + "var_type": "count", + "value_filter": "gt0", + "marstat": "all", + "description": "Capital gains — number of returns with net gain", + "cols": {2015: "Z", 2021: "Z", 2022: "AL"}, + }, + { + "var_name": "cgtaxable", + "var_type": "amount", + "value_filter": "gt0", + "marstat": "all", + "description": "Net capital gain", + "cols": {2015: "AA", 2021: "AA", 2022: "AM"}, + }, + { + "var_name": "cgtaxable", + "var_type": "count", + "value_filter": "lt0", + "marstat": "all", + "description": "Capital gains — number of returns with net loss", + "cols": {2015: "AB", 2021: "AB", 2022: "AN"}, + }, + { + "var_name": "cgtaxable", + "var_type": "amount", + "value_filter": "lt0", + "marstat": "all", + "description": "Net capital loss", + "cols": {2015: "AC", 2021: "AC", 2022: "AO"}, + }, + # ── IRA distributions ──────────────────────────────────────────────────── + { + "var_name": "iradist", + "var_type": "count", + "value_filter": "nz", + "marstat": "all", + "description": "IRA distributions — number of returns", + "cols": {2015: "AH", 2021: "AH", 2022: "AT"}, + }, + { + "var_name": "iradist", + "var_type": "amount", + "value_filter": "nz", + "marstat": "all", + "description": "IRA distributions", + "cols": {2015: "AI", 2021: "AI", 2022: "AU"}, + }, + # ── Pensions and annuities ─────────────────────────────────────────────── + { + "var_name": "pensions", + "var_type": "count", + "value_filter": "nz", + "marstat": "all", + "description": "Pensions and annuities — number of returns", + "cols": {2015: "AJ", 2021: "AJ", 2022: "AV"}, + }, + { + "var_name": "pensions", + "var_type": "amount", + "value_filter": "nz", + "marstat": "all", + "description": "Pensions and annuities (total)", + "cols": {2015: "AK", 2021: "AK", 2022: "AW"}, + }, + { + "var_name": "pensions_taxable", + "var_type": "count", + "value_filter": "nz", + "marstat": "all", + "description": "Pensions and annuities (taxable) — number of returns", + "cols": {2015: "AL", 2021: "AL", 2022: "AX"}, + }, + { + "var_name": "pensions_taxable", + "var_type": "amount", + "value_filter": "nz", + "marstat": "all", + "description": "Pensions and annuities (taxable)", + "cols": {2015: "AM", 2021: "AM", 2022: "AY"}, + }, + # ── Rent and royalty net income / loss ─────────────────────────────────── + { + "var_name": "rentroyalty", + "var_type": "count", + "value_filter": "gt0", + "marstat": "all", + "description": "Rent/royalty — number of returns with income", + "cols": {2015: "AZ", 2021: "AZ", 2022: "BL"}, + }, + { + "var_name": "rentroyalty", + "var_type": "amount", + "value_filter": "gt0", + "marstat": "all", + "description": "Rent and royalty net income", + "cols": {2015: "BA", 2021: "BA", 2022: "BM"}, + }, + { + "var_name": "rentroyalty", + "var_type": "count", + "value_filter": "lt0", + "marstat": "all", + "description": "Rent/royalty — number of returns with loss", + "cols": {2015: "BB", 2021: "BB", 2022: "BN"}, + }, + { + "var_name": "rentroyalty", + "var_type": "amount", + "value_filter": "lt0", + "marstat": "all", + "description": "Rent and royalty net loss", + "cols": {2015: "BC", 2021: "BC", 2022: "BO"}, + }, + # ── Partnership and S-corp: 2015 combined, 2021+ split ─────────────────── + # IRS reported partnership+S-corp combined in 2015; split into two series + # starting 2021. Use partnerscorpincome for 2015 targets; use + # partnerincome + scorpincome for 2021+ (potential_targets_to_soi.py + # aggregates them back into partnership_and_s_corp for the optimizer). + { + "var_name": "partnerscorpincome", + "var_type": "count", + "value_filter": "gt0", + "marstat": "all", + "description": "Partnership+S-corp income (2015 only, combined)", + "cols": {2015: "BD"}, + }, + { + "var_name": "partnerscorpincome", + "var_type": "amount", + "value_filter": "gt0", + "marstat": "all", + "description": "Partnership+S-corp net income (2015 only, combined)", + "cols": {2015: "BE"}, + }, + { + "var_name": "partnerscorpincome", + "var_type": "count", + "value_filter": "lt0", + "marstat": "all", + "description": "Partnership+S-corp loss (2015 only, combined)", + "cols": {2015: "BF"}, + }, + { + "var_name": "partnerscorpincome", + "var_type": "amount", + "value_filter": "lt0", + "marstat": "all", + "description": "Partnership and S-corp net loss (2015 only, combined)", + "cols": {2015: "BG"}, + }, + { + "var_name": "partnerincome", + "var_type": "count", + "value_filter": "gt0", + "marstat": "all", + "description": "Partnership income — number with income (2021+)", + "cols": {2021: "BD", 2022: "BP"}, + }, + { + "var_name": "partnerincome", + "var_type": "amount", + "value_filter": "gt0", + "marstat": "all", + "description": "Partnership net income (2021+)", + "cols": {2021: "BE", 2022: "BQ"}, + }, + { + "var_name": "partnerincome", + "var_type": "count", + "value_filter": "lt0", + "marstat": "all", + "description": "Partnership income — number with loss (2021+)", + "cols": {2021: "BF", 2022: "BR"}, + }, + { + "var_name": "partnerincome", + "var_type": "amount", + "value_filter": "lt0", + "marstat": "all", + "description": "Partnership net loss (2021+)", + "cols": {2021: "BG", 2022: "BS"}, + }, + { + "var_name": "scorpincome", + "var_type": "count", + "value_filter": "gt0", + "marstat": "all", + "description": "S-corporation income — number with income (2021+)", + "cols": {2021: "BH", 2022: "BT"}, + }, + { + "var_name": "scorpincome", + "var_type": "amount", + "value_filter": "gt0", + "marstat": "all", + "description": "S-corporation net income (2021+)", + "cols": {2021: "BI", 2022: "BU"}, + }, + { + "var_name": "scorpincome", + "var_type": "count", + "value_filter": "lt0", + "marstat": "all", + "description": "S-corporation income — number with loss (2021+)", + "cols": {2021: "BJ", 2022: "BV"}, + }, + { + "var_name": "scorpincome", + "var_type": "amount", + "value_filter": "lt0", + "marstat": "all", + "description": "S-corporation net loss (2021+)", + "cols": {2021: "BK", 2022: "BW"}, + }, + # ── Estate and trust income / loss ─────────────────────────────────────── + # Positions differ all 3 years because 2021 inserted scorpincome cols + # and 2022 shifted further. + { + "var_name": "estateincome", + "var_type": "count", + "value_filter": "gt0", + "marstat": "all", + "description": "Estate/trust income — number with income", + "cols": {2015: "BH", 2021: "BL", 2022: "BX"}, + }, + { + "var_name": "estateincome", + "var_type": "amount", + "value_filter": "gt0", + "marstat": "all", + "description": "Estate and trust net income", + "cols": {2015: "BI", 2021: "BM", 2022: "BY"}, + }, + { + "var_name": "estateincome", + "var_type": "count", + "value_filter": "lt0", + "marstat": "all", + "description": "Estate/trust income — number with loss", + "cols": {2015: "BJ", 2021: "BN", 2022: "BZ"}, + }, + { + "var_name": "estateincome", + "var_type": "amount", + "value_filter": "lt0", + "marstat": "all", + "description": "Estate and trust net loss", + "cols": {2015: "BK", 2021: "BO", 2022: "CA"}, + }, + # ── Unemployment compensation ──────────────────────────────────────────── + { + "var_name": "unempcomp", + "var_type": "count", + "value_filter": "nz", + "marstat": "all", + "description": "Unemployment compensation — number of returns", + "cols": {2015: "BP", 2021: "BT", 2022: "CF"}, + }, + { + "var_name": "unempcomp", + "var_type": "amount", + "value_filter": "nz", + "marstat": "all", + "description": "Unemployment compensation", + "cols": {2015: "BQ", 2021: "BU", 2022: "CG"}, + }, + # ── Social security benefits ───────────────────────────────────────────── + { + "var_name": "socsectot", + "var_type": "count", + "value_filter": "nz", + "marstat": "all", + "description": "Social security benefits (total) — number of returns", + "cols": {2015: "BR", 2021: "BV", 2022: "CH"}, + }, + { + "var_name": "socsectot", + "var_type": "amount", + "value_filter": "nz", + "marstat": "all", + "description": "Social security benefits (total)", + "cols": {2015: "BS", 2021: "BW", 2022: "CI"}, + }, + { + "var_name": "socsectaxable", + "var_type": "count", + "value_filter": "nz", + "marstat": "all", + "description": "Social security benefits (taxable) — num. returns", + "cols": {2015: "BT", 2021: "BX", 2022: "CJ"}, + }, + { + "var_name": "socsectaxable", + "var_type": "amount", + "value_filter": "nz", + "marstat": "all", + "description": "Social security benefits (taxable)", + "cols": {2015: "BU", 2021: "BY", 2022: "CK"}, + }, + # ── Personal exemptions: 2015 only (TCJA eliminated after 2017) ────────── + { + "var_name": "exemption", + "var_type": "amount", + "value_filter": "nz", + "marstat": "all", + "description": "Personal exemptions (2015 only)", + "cols": {2015: "DY"}, + }, + { + "var_name": "exemptions_n", + "var_type": "number", + "value_filter": "nz", + "marstat": "all", + "description": "Number of exemptions (2015 only)", + "cols": {2015: "DX"}, + }, + # ── Itemized deductions (total) ────────────────────────────────────────── + { + "var_name": "itemded", + "var_type": "count", + "value_filter": "nz", + "marstat": "all", + "description": "Itemized deductions — number of returns", + "cols": {2015: "DV", 2021: "DV", 2022: "EF"}, + }, + { + "var_name": "itemded", + "var_type": "amount", + "value_filter": "nz", + "marstat": "all", + "description": "Total itemized deductions", + "cols": {2015: "DW", 2021: "DW", 2022: "EG"}, + }, + # ── Qualified business income deduction: 2021+ (post-TCJA) ─────────────── + { + "var_name": "qbid", + "var_type": "count", + "value_filter": "nz", + "marstat": "all", + "description": "QBI deduction — number of returns (2021+)", + "cols": {2021: "DX", 2022: "EH"}, + }, + { + "var_name": "qbid", + "var_type": "amount", + "value_filter": "nz", + "marstat": "all", + "description": "Qualified business income deduction (2021+)", + "cols": {2021: "DY", 2022: "EI"}, + }, + # ── Alternative minimum tax ────────────────────────────────────────────── + { + "var_name": "amt", + "var_type": "count", + "value_filter": "nz", + "marstat": "all", + "description": "Alternative minimum tax — number of returns", + "cols": {2015: "ED", 2021: "ED", 2022: "EN"}, + }, + { + "var_name": "amt", + "var_type": "amount", + "value_filter": "nz", + "marstat": "all", + "description": "Alternative minimum tax", + "cols": {2015: "EE", 2021: "EE", 2022: "EO"}, + }, + # ── Income tax before credits ──────────────────────────────────────────── + { + "var_name": "taxbc", + "var_type": "count", + "value_filter": "nz", + "marstat": "all", + "description": "Income tax before credits — number of returns", + "cols": {2015: "EH", 2021: "EH", 2022: "ER"}, + }, + { + "var_name": "taxbc", + "var_type": "amount", + "value_filter": "nz", + "marstat": "all", + "description": "Income tax before credits", + "cols": {2015: "EI", 2021: "EI", 2022: "ES"}, + }, +] + + +# ── Table 2.1: Returns with Itemized Deductions ────────────────────────────── +# Covers taxable returns with itemized deductions only. +# Column positions differ across all three years because IRS regularly +# adds or reorganizes itemized deduction sub-components. +# id_pitgst (combined state income/sales tax) was added in 2021. + +TAB21_COLUMNS = [ + # ── Count of returns with itemized deductions ──────────────────────────── + { + "var_name": "id", + "var_type": "count", + "value_filter": "nz", + "marstat": "all", + "description": "Number of returns with itemized deductions", + "cols": {2015: "B", 2021: "B", 2022: "B"}, + }, + # ── Medical and dental expenses ────────────────────────────────────────── + { + "var_name": "id_medical_capped", + "var_type": "count", + "value_filter": "nz", + "marstat": "all", + "description": "Medical expenses (capped) — number of returns", + "cols": {2015: "BK", 2021: "BI", 2022: "BU"}, + }, + { + "var_name": "id_medical_capped", + "var_type": "amount", + "value_filter": "nz", + "marstat": "all", + "description": "Medical expenses (deductible/capped)", + "cols": {2015: "BL", 2021: "BJ", 2022: "BV"}, + }, + { + "var_name": "id_medical_uncapped", + "var_type": "count", + "value_filter": "nz", + "marstat": "all", + "description": "Medical expenses (total/uncapped) — number of returns", + "cols": {2015: "BM", 2021: "BK", 2022: "BW"}, + }, + { + "var_name": "id_medical_uncapped", + "var_type": "amount", + "value_filter": "nz", + "marstat": "all", + "description": "Medical expenses (total/uncapped)", + "cols": {2015: "BN", 2021: "BL", 2022: "BX"}, + }, + # ── Taxes paid ─────────────────────────────────────────────────────────── + { + "var_name": "id_taxpaid", + "var_type": "count", + "value_filter": "nz", + "marstat": "all", + "description": "Taxes paid deduction — number of returns", + "cols": {2015: "BQ", 2021: "BO", 2022: "CA"}, + }, + { + "var_name": "id_taxpaid", + "var_type": "amount", + "value_filter": "nz", + "marstat": "all", + "description": "Taxes paid deduction", + "cols": {2015: "BR", 2021: "BP", 2022: "CB"}, + }, + # ── State and local taxes (SALT) ───────────────────────────────────────── + { + "var_name": "id_salt", + "var_type": "count", + "value_filter": "nz", + "marstat": "all", + "description": "State and local taxes (SALT) — number of returns", + "cols": {2015: "BS", 2021: "BQ", 2022: "CC"}, + }, + { + "var_name": "id_salt", + "var_type": "amount", + "value_filter": "nz", + "marstat": "all", + "description": "State and local taxes (SALT)", + "cols": {2015: "BT", 2021: "BR", 2022: "CD"}, + }, + # ── State income/sales taxes combined: 2021+ only ──────────────────────── + # In 2021 IRS began reporting the combined income-or-sales-tax election + # as a separate line (id_pitgst), in addition to the individual components. + { + "var_name": "id_pitgst", + "var_type": "count", + "value_filter": "nz", + "marstat": "all", + "description": "State income/sales taxes — number of returns (2021+)", + "cols": {2021: "BS", 2022: "CE"}, + }, + { + "var_name": "id_pitgst", + "var_type": "amount", + "value_filter": "nz", + "marstat": "all", + "description": "State income or sales taxes combined (2021+)", + "cols": {2021: "BT", 2022: "CF"}, + }, + # ── State/local income taxes ───────────────────────────────────────────── + { + "var_name": "id_pit", + "var_type": "count", + "value_filter": "nz", + "marstat": "all", + "description": "State income taxes — number of returns", + "cols": {2015: "BU", 2021: "BU", 2022: "CG"}, + }, + { + "var_name": "id_pit", + "var_type": "amount", + "value_filter": "nz", + "marstat": "all", + "description": "State income taxes", + "cols": {2015: "BV", 2021: "BV", 2022: "CH"}, + }, + # ── General sales taxes ────────────────────────────────────────────────── + { + "var_name": "id_gst", + "var_type": "count", + "value_filter": "nz", + "marstat": "all", + "description": "General sales taxes — number of returns", + "cols": {2015: "BW", 2021: "BW", 2022: "CI"}, + }, + { + "var_name": "id_gst", + "var_type": "amount", + "value_filter": "nz", + "marstat": "all", + "description": "General sales taxes", + "cols": {2015: "BX", 2021: "BX", 2022: "CJ"}, + }, + # ── Real estate taxes ──────────────────────────────────────────────────── + { + "var_name": "id_retax", + "var_type": "count", + "value_filter": "nz", + "marstat": "all", + "description": "Real estate taxes — number of returns", + "cols": {2015: "BY", 2021: "BY", 2022: "CK"}, + }, + { + "var_name": "id_retax", + "var_type": "amount", + "value_filter": "nz", + "marstat": "all", + "description": "Real estate taxes", + "cols": {2015: "BZ", 2021: "BZ", 2022: "CL"}, + }, + # ── Interest paid ──────────────────────────────────────────────────────── + # 2021/2022 column positions are offset from 2015 because id_pitgst + # (2 cols) was inserted before id_pit/id_gst in 2021. + { + "var_name": "id_intpaid", + "var_type": "count", + "value_filter": "nz", + "marstat": "all", + "description": "Interest paid — number of returns", + "cols": {2015: "CE", 2021: "CG", 2022: "CS"}, + }, + { + "var_name": "id_intpaid", + "var_type": "amount", + "value_filter": "nz", + "marstat": "all", + "description": "Interest paid", + "cols": {2015: "CF", 2021: "CH", 2022: "CT"}, + }, + # ── Home mortgage interest ─────────────────────────────────────────────── + { + "var_name": "id_mortgage", + "var_type": "count", + "value_filter": "nz", + "marstat": "all", + "description": "Home mortgage interest — number of returns", + "cols": {2015: "CG", 2021: "CI", 2022: "CW"}, + }, + { + "var_name": "id_mortgage", + "var_type": "amount", + "value_filter": "nz", + "marstat": "all", + "description": "Home mortgage interest", + "cols": {2015: "CH", 2021: "CJ", 2022: "CX"}, + }, + # ── Charitable contributions ───────────────────────────────────────────── + { + "var_name": "id_contributions", + "var_type": "count", + "value_filter": "nz", + "marstat": "all", + "description": "Charitable contributions — number of returns", + "cols": {2015: "CS", 2021: "CW", 2022: "DG"}, + }, + { + "var_name": "id_contributions", + "var_type": "amount", + "value_filter": "nz", + "marstat": "all", + "description": "Charitable contributions", + "cols": {2015: "CT", 2021: "CX", 2022: "DH"}, + }, +] + + +# ── Aggregate lookup ───────────────────────────────────────────────────────── + +COLUMNS = { + "tab11": TAB11_COLUMNS, + "tab12": TAB12_COLUMNS, + "tab14": TAB14_COLUMNS, + "tab21": TAB21_COLUMNS, +} diff --git a/tmd/national_targets/data/extracted/2015/.gitkeep b/tmd/national_targets/data/extracted/2015/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/tmd/national_targets/data/extracted/2021/.gitkeep b/tmd/national_targets/data/extracted/2021/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/tmd/national_targets/data/extracted/2022/.gitkeep b/tmd/national_targets/data/extracted/2022/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/tmd/national_targets/data/irs_aggregate_values.csv b/tmd/national_targets/data/irs_aggregate_values.csv new file mode 100644 index 00000000..32dc0ab4 --- /dev/null +++ b/tmd/national_targets/data/irs_aggregate_values.csv @@ -0,0 +1,6282 @@ +rownum,idbase,year,table,var_name,var_type,var_description,value_filter,subgroup,marstat,incsort,incrange,ptarget,fname,xlcell,xl_colnumber,xlcolumn,xlrownum +1,2015_tab11_agi_amount_all_all,2015,tab11,agi,amount,Adjusted gross income,all,filers,all,1,All returns,10210310102000.0,15in11si.xls,D10,4,D,10 +2,2015_tab11_agi_amount_all_all,2015,tab11,agi,amount,Adjusted gross income,all,filers,all,2,No adjusted gross income,-203775058000.0,15in11si.xls,D11,4,D,11 +3,2015_tab11_agi_amount_all_all,2015,tab11,agi,amount,Adjusted gross income,all,filers,all,3,"$1 under $5,000",26240798000.0,15in11si.xls,D12,4,D,12 +4,2015_tab11_agi_amount_all_all,2015,tab11,agi,amount,Adjusted gross income,all,filers,all,4,"$5,000 under $10,000",86411986000.0,15in11si.xls,D13,4,D,13 +5,2015_tab11_agi_amount_all_all,2015,tab11,agi,amount,Adjusted gross income,all,filers,all,5,"$10,000 under $15,000",152752468000.0,15in11si.xls,D14,4,D,14 +6,2015_tab11_agi_amount_all_all,2015,tab11,agi,amount,Adjusted gross income,all,filers,all,6,"$15,000 under $20,000",195857688000.0,15in11si.xls,D15,4,D,15 +7,2015_tab11_agi_amount_all_all,2015,tab11,agi,amount,Adjusted gross income,all,filers,all,7,"$20,000 under $25,000",224230854000.0,15in11si.xls,D16,4,D,16 +8,2015_tab11_agi_amount_all_all,2015,tab11,agi,amount,Adjusted gross income,all,filers,all,8,"$25,000 under $30,000",242572775000.0,15in11si.xls,D17,4,D,17 +9,2015_tab11_agi_amount_all_all,2015,tab11,agi,amount,Adjusted gross income,all,filers,all,9,"$30,000 under $40,000",519525813000.0,15in11si.xls,D18,4,D,18 +10,2015_tab11_agi_amount_all_all,2015,tab11,agi,amount,Adjusted gross income,all,filers,all,10,"$40,000 under $50,000",520845982000.0,15in11si.xls,D19,4,D,19 +11,2015_tab11_agi_amount_all_all,2015,tab11,agi,amount,Adjusted gross income,all,filers,all,11,"$50,000 under $75,000",1228299087000.0,15in11si.xls,D20,4,D,20 +12,2015_tab11_agi_amount_all_all,2015,tab11,agi,amount,Adjusted gross income,all,filers,all,12,"$75,000 under $100,000",1111174843000.0,15in11si.xls,D21,4,D,21 +13,2015_tab11_agi_amount_all_all,2015,tab11,agi,amount,Adjusted gross income,all,filers,all,13,"$100,000 under $200,000",2506497828000.0,15in11si.xls,D22,4,D,22 +14,2015_tab11_agi_amount_all_all,2015,tab11,agi,amount,Adjusted gross income,all,filers,all,14,"$200,000 under $500,000",1546515483000.0,15in11si.xls,D23,4,D,23 +15,2015_tab11_agi_amount_all_all,2015,tab11,agi,amount,Adjusted gross income,all,filers,all,15,"$500,000 under $1,000,000",597676645000.0,15in11si.xls,D24,4,D,24 +16,2015_tab11_agi_amount_all_all,2015,tab11,agi,amount,Adjusted gross income,all,filers,all,16,"$1,000,000 under $1,500,000",236499605000.0,15in11si.xls,D25,4,D,25 +17,2015_tab11_agi_amount_all_all,2015,tab11,agi,amount,Adjusted gross income,all,filers,all,17,"$1,500,000 under $2,000,000",137686352000.0,15in11si.xls,D26,4,D,26 +18,2015_tab11_agi_amount_all_all,2015,tab11,agi,amount,Adjusted gross income,all,filers,all,18,"$2,000,000 under $5,000,000",346864436000.0,15in11si.xls,D27,4,D,27 +19,2015_tab11_agi_amount_all_all,2015,tab11,agi,amount,Adjusted gross income,all,filers,all,19,"$5,000,000 under $10,000,000",195661353000.0,15in11si.xls,D28,4,D,28 +20,2015_tab11_agi_amount_all_all,2015,tab11,agi,amount,Adjusted gross income,all,filers,all,20,"$10,000,000 or more",538771167000.0,15in11si.xls,D29,4,D,29 +21,2015_tab11_agi_count_all_all,2015,tab11,agi,count,Number of returns,all,filers,all,1,All returns,150493263.0,15in11si.xls,B10,2,B,10 +22,2015_tab11_agi_count_all_all,2015,tab11,agi,count,Number of returns,all,filers,all,2,No adjusted gross income,2072066.0,15in11si.xls,B11,2,B,11 +23,2015_tab11_agi_count_all_all,2015,tab11,agi,count,Number of returns,all,filers,all,3,"$1 under $5,000",10134704.0,15in11si.xls,B12,2,B,12 +24,2015_tab11_agi_count_all_all,2015,tab11,agi,count,Number of returns,all,filers,all,4,"$5,000 under $10,000",11398595.0,15in11si.xls,B13,2,B,13 +25,2015_tab11_agi_count_all_all,2015,tab11,agi,count,Number of returns,all,filers,all,5,"$10,000 under $15,000",12219480.0,15in11si.xls,B14,2,B,14 +26,2015_tab11_agi_count_all_all,2015,tab11,agi,count,Number of returns,all,filers,all,6,"$15,000 under $20,000",11228447.0,15in11si.xls,B15,2,B,15 +27,2015_tab11_agi_count_all_all,2015,tab11,agi,count,Number of returns,all,filers,all,7,"$20,000 under $25,000",9981450.0,15in11si.xls,B16,2,B,16 +28,2015_tab11_agi_count_all_all,2015,tab11,agi,count,Number of returns,all,filers,all,8,"$25,000 under $30,000",8832875.0,15in11si.xls,B17,2,B,17 +29,2015_tab11_agi_count_all_all,2015,tab11,agi,count,Number of returns,all,filers,all,9,"$30,000 under $40,000",14913880.0,15in11si.xls,B18,2,B,18 +30,2015_tab11_agi_count_all_all,2015,tab11,agi,count,Number of returns,all,filers,all,10,"$40,000 under $50,000",11625418.0,15in11si.xls,B19,2,B,19 +31,2015_tab11_agi_count_all_all,2015,tab11,agi,count,Number of returns,all,filers,all,11,"$50,000 under $75,000",19980117.0,15in11si.xls,B20,2,B,20 +32,2015_tab11_agi_count_all_all,2015,tab11,agi,count,Number of returns,all,filers,all,12,"$75,000 under $100,000",12821791.0,15in11si.xls,B21,2,B,21 +33,2015_tab11_agi_count_all_all,2015,tab11,agi,count,Number of returns,all,filers,all,13,"$100,000 under $200,000",18532593.0,15in11si.xls,B22,2,B,22 +34,2015_tab11_agi_count_all_all,2015,tab11,agi,count,Number of returns,all,filers,all,14,"$200,000 under $500,000",5428176.0,15in11si.xls,B23,2,B,23 +35,2015_tab11_agi_count_all_all,2015,tab11,agi,count,Number of returns,all,filers,all,15,"$500,000 under $1,000,000",884335.0,15in11si.xls,B24,2,B,24 +36,2015_tab11_agi_count_all_all,2015,tab11,agi,count,Number of returns,all,filers,all,16,"$1,000,000 under $1,500,000",195905.0,15in11si.xls,B25,2,B,25 +37,2015_tab11_agi_count_all_all,2015,tab11,agi,count,Number of returns,all,filers,all,17,"$1,500,000 under $2,000,000",79971.0,15in11si.xls,B26,2,B,26 +38,2015_tab11_agi_count_all_all,2015,tab11,agi,count,Number of returns,all,filers,all,18,"$2,000,000 under $5,000,000",116718.0,15in11si.xls,B27,2,B,27 +39,2015_tab11_agi_count_all_all,2015,tab11,agi,count,Number of returns,all,filers,all,19,"$5,000,000 under $10,000,000",28680.0,15in11si.xls,B28,2,B,28 +40,2015_tab11_agi_count_all_all,2015,tab11,agi,count,Number of returns,all,filers,all,20,"$10,000,000 or more",18061.0,15in11si.xls,B29,2,B,29 +41,2015_tab12_agi_amount_all_all,2015,tab12,agi,amount,Adjusted gross income,all,filers,all,1,"All returns, total",10210310102000.0,15in12ms.xls,C9,3,C,9 +42,2015_tab12_agi_amount_all_all,2015,tab12,agi,amount,Adjusted gross income,all,filers,all,2,No adjusted gross income,-203775058000.0,15in12ms.xls,C10,3,C,10 +43,2015_tab12_agi_amount_all_all,2015,tab12,agi,amount,Adjusted gross income,all,filers,all,3,"$1 under $5,000",26240797000.0,15in12ms.xls,C11,3,C,11 +44,2015_tab12_agi_amount_all_all,2015,tab12,agi,amount,Adjusted gross income,all,filers,all,4,"$5,000 under $10,000",86411986000.0,15in12ms.xls,C12,3,C,12 +45,2015_tab12_agi_amount_all_all,2015,tab12,agi,amount,Adjusted gross income,all,filers,all,5,"$10,000 under $15,000",152752468000.0,15in12ms.xls,C13,3,C,13 +46,2015_tab12_agi_amount_all_all,2015,tab12,agi,amount,Adjusted gross income,all,filers,all,6,"$15,000 under $20,000",195857688000.0,15in12ms.xls,C14,3,C,14 +47,2015_tab12_agi_amount_all_all,2015,tab12,agi,amount,Adjusted gross income,all,filers,all,7,"$20,000 under $25,000",224230854000.0,15in12ms.xls,C15,3,C,15 +48,2015_tab12_agi_amount_all_all,2015,tab12,agi,amount,Adjusted gross income,all,filers,all,8,"$25,000 under $30,000",242572775000.0,15in12ms.xls,C16,3,C,16 +49,2015_tab12_agi_amount_all_all,2015,tab12,agi,amount,Adjusted gross income,all,filers,all,9,"$30,000 under $40,000",519525813000.0,15in12ms.xls,C17,3,C,17 +50,2015_tab12_agi_amount_all_all,2015,tab12,agi,amount,Adjusted gross income,all,filers,all,10,"$40,000 under $50,000",520845982000.0,15in12ms.xls,C18,3,C,18 +51,2015_tab12_agi_amount_all_all,2015,tab12,agi,amount,Adjusted gross income,all,filers,all,11,"$50,000 under $75,000",1228299087000.0,15in12ms.xls,C19,3,C,19 +52,2015_tab12_agi_amount_all_all,2015,tab12,agi,amount,Adjusted gross income,all,filers,all,12,"$75,000 under $100,000",1111174843000.0,15in12ms.xls,C20,3,C,20 +53,2015_tab12_agi_amount_all_all,2015,tab12,agi,amount,Adjusted gross income,all,filers,all,13,"$100,000 under $200,000",2506497828000.0,15in12ms.xls,C21,3,C,21 +54,2015_tab12_agi_amount_all_all,2015,tab12,agi,amount,Adjusted gross income,all,filers,all,14,"$200,000 under $500,000",1546515483000.0,15in12ms.xls,C22,3,C,22 +55,2015_tab12_agi_amount_all_all,2015,tab12,agi,amount,Adjusted gross income,all,filers,all,15,"$500,000 under $1,000,000",597676645000.0,15in12ms.xls,C23,3,C,23 +56,2015_tab12_agi_amount_all_all,2015,tab12,agi,amount,Adjusted gross income,all,filers,all,16,"$1,000,000 under $1,500,000",236499605000.0,15in12ms.xls,C24,3,C,24 +57,2015_tab12_agi_amount_all_all,2015,tab12,agi,amount,Adjusted gross income,all,filers,all,17,"$1,500,000 under $2,000,000",137686352000.0,15in12ms.xls,C25,3,C,25 +58,2015_tab12_agi_amount_all_all,2015,tab12,agi,amount,Adjusted gross income,all,filers,all,18,"$2,000,000 under $5,000,000",346864436000.0,15in12ms.xls,C26,3,C,26 +59,2015_tab12_agi_amount_all_all,2015,tab12,agi,amount,Adjusted gross income,all,filers,all,19,"$5,000,000 under $10,000,000",195661353000.0,15in12ms.xls,C27,3,C,27 +60,2015_tab12_agi_amount_all_all,2015,tab12,agi,amount,Adjusted gross income,all,filers,all,20,"$10,000,000 or more",538771166000.0,15in12ms.xls,C28,3,C,28 +61,2015_tab12_agi_amount_all_hoh,2015,tab12,agi,amount,Adjusted gross income — head of household,all,filers,hoh,1,"All returns, total",823331580000.0,15in12ms.xls,AP9,42,AP,9 +62,2015_tab12_agi_amount_all_hoh,2015,tab12,agi,amount,Adjusted gross income — head of household,all,filers,hoh,2,No adjusted gross income,-6112273000.0,15in12ms.xls,AP10,42,AP,10 +63,2015_tab12_agi_amount_all_hoh,2015,tab12,agi,amount,Adjusted gross income — head of household,all,filers,hoh,3,"$1 under $5,000",1575074000.0,15in12ms.xls,AP11,42,AP,11 +64,2015_tab12_agi_amount_all_hoh,2015,tab12,agi,amount,Adjusted gross income — head of household,all,filers,hoh,4,"$5,000 under $10,000",12792368000.0,15in12ms.xls,AP12,42,AP,12 +65,2015_tab12_agi_amount_all_hoh,2015,tab12,agi,amount,Adjusted gross income — head of household,all,filers,hoh,5,"$10,000 under $15,000",38156366000.0,15in12ms.xls,AP13,42,AP,13 +66,2015_tab12_agi_amount_all_hoh,2015,tab12,agi,amount,Adjusted gross income — head of household,all,filers,hoh,6,"$15,000 under $20,000",50267348000.0,15in12ms.xls,AP14,42,AP,14 +67,2015_tab12_agi_amount_all_hoh,2015,tab12,agi,amount,Adjusted gross income — head of household,all,filers,hoh,7,"$20,000 under $25,000",54911539000.0,15in12ms.xls,AP15,42,AP,15 +68,2015_tab12_agi_amount_all_hoh,2015,tab12,agi,amount,Adjusted gross income — head of household,all,filers,hoh,8,"$25,000 under $30,000",57018894000.0,15in12ms.xls,AP16,42,AP,16 +69,2015_tab12_agi_amount_all_hoh,2015,tab12,agi,amount,Adjusted gross income — head of household,all,filers,hoh,9,"$30,000 under $40,000",111505100000.0,15in12ms.xls,AP17,42,AP,17 +70,2015_tab12_agi_amount_all_hoh,2015,tab12,agi,amount,Adjusted gross income — head of household,all,filers,hoh,10,"$40,000 under $50,000",87765923000.0,15in12ms.xls,AP18,42,AP,18 +71,2015_tab12_agi_amount_all_hoh,2015,tab12,agi,amount,Adjusted gross income — head of household,all,filers,hoh,11,"$50,000 under $75,000",149872637000.0,15in12ms.xls,AP19,42,AP,19 +72,2015_tab12_agi_amount_all_hoh,2015,tab12,agi,amount,Adjusted gross income — head of household,all,filers,hoh,12,"$75,000 under $100,000",83627737000.0,15in12ms.xls,AP20,42,AP,20 +73,2015_tab12_agi_amount_all_hoh,2015,tab12,agi,amount,Adjusted gross income — head of household,all,filers,hoh,13,"$100,000 under $200,000",95168655000.0,15in12ms.xls,AP21,42,AP,21 +74,2015_tab12_agi_amount_all_hoh,2015,tab12,agi,amount,Adjusted gross income — head of household,all,filers,hoh,14,"$200,000 under $500,000",38411664000.0,15in12ms.xls,AP22,42,AP,22 +75,2015_tab12_agi_amount_all_hoh,2015,tab12,agi,amount,Adjusted gross income — head of household,all,filers,hoh,15,"$500,000 under $1,000,000",14214904000.0,15in12ms.xls,AP23,42,AP,23 +76,2015_tab12_agi_amount_all_hoh,2015,tab12,agi,amount,Adjusted gross income — head of household,all,filers,hoh,16,"$1,000,000 under $1,500,000",5808236000.0,15in12ms.xls,AP24,42,AP,24 +77,2015_tab12_agi_amount_all_hoh,2015,tab12,agi,amount,Adjusted gross income — head of household,all,filers,hoh,17,"$1,500,000 under $2,000,000",3590648000.0,15in12ms.xls,AP25,42,AP,25 +78,2015_tab12_agi_amount_all_hoh,2015,tab12,agi,amount,Adjusted gross income — head of household,all,filers,hoh,18,"$2,000,000 under $5,000,000",8909085000.0,15in12ms.xls,AP26,42,AP,26 +79,2015_tab12_agi_amount_all_hoh,2015,tab12,agi,amount,Adjusted gross income — head of household,all,filers,hoh,19,"$5,000,000 under $10,000,000",4737921000.0,15in12ms.xls,AP27,42,AP,27 +80,2015_tab12_agi_amount_all_hoh,2015,tab12,agi,amount,Adjusted gross income — head of household,all,filers,hoh,20,"$10,000,000 or more",11109754000.0,15in12ms.xls,AP28,42,AP,28 +81,2015_tab12_agi_amount_all_mfjss,2015,tab12,agi,amount,Adjusted gross income — married filing jointly/SS,all,filers,mfjss,1,"All returns, total",6627921521000.0,15in12ms.xls,P9,16,P,9 +82,2015_tab12_agi_amount_all_mfjss,2015,tab12,agi,amount,Adjusted gross income — married filing jointly/SS,all,filers,mfjss,2,No adjusted gross income,-126340287000.0,15in12ms.xls,P10,16,P,10 +83,2015_tab12_agi_amount_all_mfjss,2015,tab12,agi,amount,Adjusted gross income — married filing jointly/SS,all,filers,mfjss,3,"$1 under $5,000",1722543000.0,15in12ms.xls,P11,16,P,11 +84,2015_tab12_agi_amount_all_mfjss,2015,tab12,agi,amount,Adjusted gross income — married filing jointly/SS,all,filers,mfjss,4,"$5,000 under $10,000",7565279000.0,15in12ms.xls,P12,16,P,12 +85,2015_tab12_agi_amount_all_mfjss,2015,tab12,agi,amount,Adjusted gross income — married filing jointly/SS,all,filers,mfjss,5,"$10,000 under $15,000",18485113000.0,15in12ms.xls,P13,16,P,13 +86,2015_tab12_agi_amount_all_mfjss,2015,tab12,agi,amount,Adjusted gross income — married filing jointly/SS,all,filers,mfjss,6,"$15,000 under $20,000",30393578000.0,15in12ms.xls,P14,16,P,14 +87,2015_tab12_agi_amount_all_mfjss,2015,tab12,agi,amount,Adjusted gross income — married filing jointly/SS,all,filers,mfjss,7,"$20,000 under $25,000",41271852000.0,15in12ms.xls,P15,16,P,15 +88,2015_tab12_agi_amount_all_mfjss,2015,tab12,agi,amount,Adjusted gross income — married filing jointly/SS,all,filers,mfjss,8,"$25,000 under $30,000",50362264000.0,15in12ms.xls,P16,16,P,16 +89,2015_tab12_agi_amount_all_mfjss,2015,tab12,agi,amount,Adjusted gross income — married filing jointly/SS,all,filers,mfjss,9,"$30,000 under $40,000",129496107000.0,15in12ms.xls,P17,16,P,17 +90,2015_tab12_agi_amount_all_mfjss,2015,tab12,agi,amount,Adjusted gross income — married filing jointly/SS,all,filers,mfjss,10,"$40,000 under $50,000",163840994000.0,15in12ms.xls,P18,16,P,18 +91,2015_tab12_agi_amount_all_mfjss,2015,tab12,agi,amount,Adjusted gross income — married filing jointly/SS,all,filers,mfjss,11,"$50,000 under $75,000",558395634000.0,15in12ms.xls,P19,16,P,19 +92,2015_tab12_agi_amount_all_mfjss,2015,tab12,agi,amount,Adjusted gross income — married filing jointly/SS,all,filers,mfjss,12,"$75,000 under $100,000",726506192000.0,15in12ms.xls,P20,16,P,20 +93,2015_tab12_agi_amount_all_mfjss,2015,tab12,agi,amount,Adjusted gross income — married filing jointly/SS,all,filers,mfjss,13,"$100,000 under $200,000",2010365290000.0,15in12ms.xls,P21,16,P,21 +94,2015_tab12_agi_amount_all_mfjss,2015,tab12,agi,amount,Adjusted gross income — married filing jointly/SS,all,filers,mfjss,14,"$200,000 under $500,000",1322258013000.0,15in12ms.xls,P22,16,P,22 +95,2015_tab12_agi_amount_all_mfjss,2015,tab12,agi,amount,Adjusted gross income — married filing jointly/SS,all,filers,mfjss,15,"$500,000 under $1,000,000",512355084000.0,15in12ms.xls,P23,16,P,23 +96,2015_tab12_agi_amount_all_mfjss,2015,tab12,agi,amount,Adjusted gross income — married filing jointly/SS,all,filers,mfjss,16,"$1,000,000 under $1,500,000",199994480000.0,15in12ms.xls,P24,16,P,24 +97,2015_tab12_agi_amount_all_mfjss,2015,tab12,agi,amount,Adjusted gross income — married filing jointly/SS,all,filers,mfjss,17,"$1,500,000 under $2,000,000",115599264000.0,15in12ms.xls,P25,16,P,25 +98,2015_tab12_agi_amount_all_mfjss,2015,tab12,agi,amount,Adjusted gross income — married filing jointly/SS,all,filers,mfjss,18,"$2,000,000 under $5,000,000",287553194000.0,15in12ms.xls,P26,16,P,26 +99,2015_tab12_agi_amount_all_mfjss,2015,tab12,agi,amount,Adjusted gross income — married filing jointly/SS,all,filers,mfjss,19,"$5,000,000 under $10,000,000",161324719000.0,15in12ms.xls,P27,16,P,27 +100,2015_tab12_agi_amount_all_mfjss,2015,tab12,agi,amount,Adjusted gross income — married filing jointly/SS,all,filers,mfjss,20,"$10,000,000 or more",416772208000.0,15in12ms.xls,P28,16,P,28 +101,2015_tab12_agi_amount_all_mfs,2015,tab12,agi,amount,Adjusted gross income — married filing separately,all,filers,mfs,1,"All returns, total",190688552000.0,15in12ms.xls,AC9,29,AC,9 +102,2015_tab12_agi_amount_all_mfs,2015,tab12,agi,amount,Adjusted gross income — married filing separately,all,filers,mfs,2,No adjusted gross income,-13605308000.0,15in12ms.xls,AC10,29,AC,10 +103,2015_tab12_agi_amount_all_mfs,2015,tab12,agi,amount,Adjusted gross income — married filing separately,all,filers,mfs,3,"$1 under $5,000",291398000.0,15in12ms.xls,AC11,29,AC,11 +104,2015_tab12_agi_amount_all_mfs,2015,tab12,agi,amount,Adjusted gross income — married filing separately,all,filers,mfs,4,"$5,000 under $10,000",1031674000.0,15in12ms.xls,AC12,29,AC,12 +105,2015_tab12_agi_amount_all_mfs,2015,tab12,agi,amount,Adjusted gross income — married filing separately,all,filers,mfs,5,"$10,000 under $15,000",1957818000.0,15in12ms.xls,AC13,29,AC,13 +106,2015_tab12_agi_amount_all_mfs,2015,tab12,agi,amount,Adjusted gross income — married filing separately,all,filers,mfs,6,"$15,000 under $20,000",3161912000.0,15in12ms.xls,AC14,29,AC,14 +107,2015_tab12_agi_amount_all_mfs,2015,tab12,agi,amount,Adjusted gross income — married filing separately,all,filers,mfs,7,"$20,000 under $25,000",4940024000.0,15in12ms.xls,AC15,29,AC,15 +108,2015_tab12_agi_amount_all_mfs,2015,tab12,agi,amount,Adjusted gross income — married filing separately,all,filers,mfs,8,"$25,000 under $30,000",6252129000.0,15in12ms.xls,AC16,29,AC,16 +109,2015_tab12_agi_amount_all_mfs,2015,tab12,agi,amount,Adjusted gross income — married filing separately,all,filers,mfs,9,"$30,000 under $40,000",14102338000.0,15in12ms.xls,AC17,29,AC,17 +110,2015_tab12_agi_amount_all_mfs,2015,tab12,agi,amount,Adjusted gross income — married filing separately,all,filers,mfs,10,"$40,000 under $50,000",16245296000.0,15in12ms.xls,AC18,29,AC,18 +111,2015_tab12_agi_amount_all_mfs,2015,tab12,agi,amount,Adjusted gross income — married filing separately,all,filers,mfs,11,"$50,000 under $75,000",33923498000.0,15in12ms.xls,AC19,29,AC,19 +112,2015_tab12_agi_amount_all_mfs,2015,tab12,agi,amount,Adjusted gross income — married filing separately,all,filers,mfs,12,"$75,000 under $100,000",20909768000.0,15in12ms.xls,AC20,29,AC,20 +113,2015_tab12_agi_amount_all_mfs,2015,tab12,agi,amount,Adjusted gross income — married filing separately,all,filers,mfs,13,"$100,000 under $200,000",25864087000.0,15in12ms.xls,AC21,29,AC,21 +114,2015_tab12_agi_amount_all_mfs,2015,tab12,agi,amount,Adjusted gross income — married filing separately,all,filers,mfs,14,"$200,000 under $500,000",12954865000.0,15in12ms.xls,AC22,29,AC,22 +115,2015_tab12_agi_amount_all_mfs,2015,tab12,agi,amount,Adjusted gross income — married filing separately,all,filers,mfs,15,"$500,000 under $1,000,000",7551360000.0,15in12ms.xls,AC23,29,AC,23 +116,2015_tab12_agi_amount_all_mfs,2015,tab12,agi,amount,Adjusted gross income — married filing separately,all,filers,mfs,16,"$1,000,000 under $1,500,000",3762883000.0,15in12ms.xls,AC24,29,AC,24 +117,2015_tab12_agi_amount_all_mfs,2015,tab12,agi,amount,Adjusted gross income — married filing separately,all,filers,mfs,17,"$1,500,000 under $2,000,000",2741360000.0,15in12ms.xls,AC25,29,AC,25 +118,2015_tab12_agi_amount_all_mfs,2015,tab12,agi,amount,Adjusted gross income — married filing separately,all,filers,mfs,18,"$2,000,000 under $5,000,000",8073951000.0,15in12ms.xls,AC26,29,AC,26 +119,2015_tab12_agi_amount_all_mfs,2015,tab12,agi,amount,Adjusted gross income — married filing separately,all,filers,mfs,19,"$5,000,000 under $10,000,000",5621137000.0,15in12ms.xls,AC27,29,AC,27 +120,2015_tab12_agi_amount_all_mfs,2015,tab12,agi,amount,Adjusted gross income — married filing separately,all,filers,mfs,20,"$10,000,000 or more",34908361000.0,15in12ms.xls,AC28,29,AC,28 +121,2015_tab12_agi_amount_all_single,2015,tab12,agi,amount,Adjusted gross income — single,all,filers,single,1,"All returns, total",2568368449000.0,15in12ms.xls,BC9,55,BC,9 +122,2015_tab12_agi_amount_all_single,2015,tab12,agi,amount,Adjusted gross income — single,all,filers,single,2,No adjusted gross income,-57717191000.0,15in12ms.xls,BC10,55,BC,10 +123,2015_tab12_agi_amount_all_single,2015,tab12,agi,amount,Adjusted gross income — single,all,filers,single,3,"$1 under $5,000",22651783000.0,15in12ms.xls,BC11,55,BC,11 +124,2015_tab12_agi_amount_all_single,2015,tab12,agi,amount,Adjusted gross income — single,all,filers,single,4,"$5,000 under $10,000",65022665000.0,15in12ms.xls,BC12,55,BC,12 +125,2015_tab12_agi_amount_all_single,2015,tab12,agi,amount,Adjusted gross income — single,all,filers,single,5,"$10,000 under $15,000",94153171000.0,15in12ms.xls,BC13,55,BC,13 +126,2015_tab12_agi_amount_all_single,2015,tab12,agi,amount,Adjusted gross income — single,all,filers,single,6,"$15,000 under $20,000",112034850000.0,15in12ms.xls,BC14,55,BC,14 +127,2015_tab12_agi_amount_all_single,2015,tab12,agi,amount,Adjusted gross income — single,all,filers,single,7,"$20,000 under $25,000",123107439000.0,15in12ms.xls,BC15,55,BC,15 +128,2015_tab12_agi_amount_all_single,2015,tab12,agi,amount,Adjusted gross income — single,all,filers,single,8,"$25,000 under $30,000",128939489000.0,15in12ms.xls,BC16,55,BC,16 +129,2015_tab12_agi_amount_all_single,2015,tab12,agi,amount,Adjusted gross income — single,all,filers,single,9,"$30,000 under $40,000",264422268000.0,15in12ms.xls,BC17,55,BC,17 +130,2015_tab12_agi_amount_all_single,2015,tab12,agi,amount,Adjusted gross income — single,all,filers,single,10,"$40,000 under $50,000",252993769000.0,15in12ms.xls,BC18,55,BC,18 +131,2015_tab12_agi_amount_all_single,2015,tab12,agi,amount,Adjusted gross income — single,all,filers,single,11,"$50,000 under $75,000",486107317000.0,15in12ms.xls,BC19,55,BC,19 +132,2015_tab12_agi_amount_all_single,2015,tab12,agi,amount,Adjusted gross income — single,all,filers,single,12,"$75,000 under $100,000",280131146000.0,15in12ms.xls,BC20,55,BC,20 +133,2015_tab12_agi_amount_all_single,2015,tab12,agi,amount,Adjusted gross income — single,all,filers,single,13,"$100,000 under $200,000",375099797000.0,15in12ms.xls,BC21,55,BC,21 +134,2015_tab12_agi_amount_all_single,2015,tab12,agi,amount,Adjusted gross income — single,all,filers,single,14,"$200,000 under $500,000",172890940000.0,15in12ms.xls,BC22,55,BC,22 +135,2015_tab12_agi_amount_all_single,2015,tab12,agi,amount,Adjusted gross income — single,all,filers,single,15,"$500,000 under $1,000,000",63555296000.0,15in12ms.xls,BC23,55,BC,23 +136,2015_tab12_agi_amount_all_single,2015,tab12,agi,amount,Adjusted gross income — single,all,filers,single,16,"$1,000,000 under $1,500,000",26934006000.0,15in12ms.xls,BC24,55,BC,24 +137,2015_tab12_agi_amount_all_single,2015,tab12,agi,amount,Adjusted gross income — single,all,filers,single,17,"$1,500,000 under $2,000,000",15755080000.0,15in12ms.xls,BC25,55,BC,25 +138,2015_tab12_agi_amount_all_single,2015,tab12,agi,amount,Adjusted gross income — single,all,filers,single,18,"$2,000,000 under $5,000,000",42328206000.0,15in12ms.xls,BC26,55,BC,26 +139,2015_tab12_agi_amount_all_single,2015,tab12,agi,amount,Adjusted gross income — single,all,filers,single,19,"$5,000,000 under $10,000,000",23977575000.0,15in12ms.xls,BC27,55,BC,27 +140,2015_tab12_agi_amount_all_single,2015,tab12,agi,amount,Adjusted gross income — single,all,filers,single,20,"$10,000,000 or more",75980843000.0,15in12ms.xls,BC28,55,BC,28 +141,2015_tab12_agi_count_all_all,2015,tab12,agi,count,Number of returns,all,filers,all,1,"All returns, total",150493263.0,15in12ms.xls,B9,2,B,9 +142,2015_tab12_agi_count_all_all,2015,tab12,agi,count,Number of returns,all,filers,all,2,No adjusted gross income,2072066.0,15in12ms.xls,B10,2,B,10 +143,2015_tab12_agi_count_all_all,2015,tab12,agi,count,Number of returns,all,filers,all,3,"$1 under $5,000",10134703.0,15in12ms.xls,B11,2,B,11 +144,2015_tab12_agi_count_all_all,2015,tab12,agi,count,Number of returns,all,filers,all,4,"$5,000 under $10,000",11398595.0,15in12ms.xls,B12,2,B,12 +145,2015_tab12_agi_count_all_all,2015,tab12,agi,count,Number of returns,all,filers,all,5,"$10,000 under $15,000",12219481.0,15in12ms.xls,B13,2,B,13 +146,2015_tab12_agi_count_all_all,2015,tab12,agi,count,Number of returns,all,filers,all,6,"$15,000 under $20,000",11228447.0,15in12ms.xls,B14,2,B,14 +147,2015_tab12_agi_count_all_all,2015,tab12,agi,count,Number of returns,all,filers,all,7,"$20,000 under $25,000",9981450.0,15in12ms.xls,B15,2,B,15 +148,2015_tab12_agi_count_all_all,2015,tab12,agi,count,Number of returns,all,filers,all,8,"$25,000 under $30,000",8832875.0,15in12ms.xls,B16,2,B,16 +149,2015_tab12_agi_count_all_all,2015,tab12,agi,count,Number of returns,all,filers,all,9,"$30,000 under $40,000",14913880.0,15in12ms.xls,B17,2,B,17 +150,2015_tab12_agi_count_all_all,2015,tab12,agi,count,Number of returns,all,filers,all,10,"$40,000 under $50,000",11625418.0,15in12ms.xls,B18,2,B,18 +151,2015_tab12_agi_count_all_all,2015,tab12,agi,count,Number of returns,all,filers,all,11,"$50,000 under $75,000",19980117.0,15in12ms.xls,B19,2,B,19 +152,2015_tab12_agi_count_all_all,2015,tab12,agi,count,Number of returns,all,filers,all,12,"$75,000 under $100,000",12821791.0,15in12ms.xls,B20,2,B,20 +153,2015_tab12_agi_count_all_all,2015,tab12,agi,count,Number of returns,all,filers,all,13,"$100,000 under $200,000",18532593.0,15in12ms.xls,B21,2,B,21 +154,2015_tab12_agi_count_all_all,2015,tab12,agi,count,Number of returns,all,filers,all,14,"$200,000 under $500,000",5428176.0,15in12ms.xls,B22,2,B,22 +155,2015_tab12_agi_count_all_all,2015,tab12,agi,count,Number of returns,all,filers,all,15,"$500,000 under $1,000,000",884335.0,15in12ms.xls,B23,2,B,23 +156,2015_tab12_agi_count_all_all,2015,tab12,agi,count,Number of returns,all,filers,all,16,"$1,000,000 under $1,500,000",195905.0,15in12ms.xls,B24,2,B,24 +157,2015_tab12_agi_count_all_all,2015,tab12,agi,count,Number of returns,all,filers,all,17,"$1,500,000 under $2,000,000",79971.0,15in12ms.xls,B25,2,B,25 +158,2015_tab12_agi_count_all_all,2015,tab12,agi,count,Number of returns,all,filers,all,18,"$2,000,000 under $5,000,000",116718.0,15in12ms.xls,B26,2,B,26 +159,2015_tab12_agi_count_all_all,2015,tab12,agi,count,Number of returns,all,filers,all,19,"$5,000,000 under $10,000,000",28680.0,15in12ms.xls,B27,2,B,27 +160,2015_tab12_agi_count_all_all,2015,tab12,agi,count,Number of returns,all,filers,all,20,"$10,000,000 or more",18061.0,15in12ms.xls,B28,2,B,28 +161,2015_tab12_agi_count_all_hoh,2015,tab12,agi,count,Number of returns — head of household,all,filers,hoh,1,"All returns, total",22134303.0,15in12ms.xls,AO9,41,AO,9 +162,2015_tab12_agi_count_all_hoh,2015,tab12,agi,count,Number of returns — head of household,all,filers,hoh,2,No adjusted gross income,94006.0,15in12ms.xls,AO10,41,AO,10 +163,2015_tab12_agi_count_all_hoh,2015,tab12,agi,count,Number of returns — head of household,all,filers,hoh,3,"$1 under $5,000",522095.0,15in12ms.xls,AO11,41,AO,11 +164,2015_tab12_agi_count_all_hoh,2015,tab12,agi,count,Number of returns — head of household,all,filers,hoh,4,"$5,000 under $10,000",1579866.0,15in12ms.xls,AO12,41,AO,12 +165,2015_tab12_agi_count_all_hoh,2015,tab12,agi,count,Number of returns — head of household,all,filers,hoh,5,"$10,000 under $15,000",2997105.0,15in12ms.xls,AO13,41,AO,13 +166,2015_tab12_agi_count_all_hoh,2015,tab12,agi,count,Number of returns — head of household,all,filers,hoh,6,"$15,000 under $20,000",2885867.0,15in12ms.xls,AO14,41,AO,14 +167,2015_tab12_agi_count_all_hoh,2015,tab12,agi,count,Number of returns — head of household,all,filers,hoh,7,"$20,000 under $25,000",2444577.0,15in12ms.xls,AO15,41,AO,15 +168,2015_tab12_agi_count_all_hoh,2015,tab12,agi,count,Number of returns — head of household,all,filers,hoh,8,"$25,000 under $30,000",2074644.0,15in12ms.xls,AO16,41,AO,16 +169,2015_tab12_agi_count_all_hoh,2015,tab12,agi,count,Number of returns — head of household,all,filers,hoh,9,"$30,000 under $40,000",3213969.0,15in12ms.xls,AO17,41,AO,17 +170,2015_tab12_agi_count_all_hoh,2015,tab12,agi,count,Number of returns — head of household,all,filers,hoh,10,"$40,000 under $50,000",1966315.0,15in12ms.xls,AO18,41,AO,18 +171,2015_tab12_agi_count_all_hoh,2015,tab12,agi,count,Number of returns — head of household,all,filers,hoh,11,"$50,000 under $75,000",2477603.0,15in12ms.xls,AO19,41,AO,19 +172,2015_tab12_agi_count_all_hoh,2015,tab12,agi,count,Number of returns — head of household,all,filers,hoh,12,"$75,000 under $100,000",981338.0,15in12ms.xls,AO20,41,AO,20 +173,2015_tab12_agi_count_all_hoh,2015,tab12,agi,count,Number of returns — head of household,all,filers,hoh,13,"$100,000 under $200,000",729595.0,15in12ms.xls,AO21,41,AO,21 +174,2015_tab12_agi_count_all_hoh,2015,tab12,agi,count,Number of returns — head of household,all,filers,hoh,14,"$200,000 under $500,000",135203.0,15in12ms.xls,AO22,41,AO,22 +175,2015_tab12_agi_count_all_hoh,2015,tab12,agi,count,Number of returns — head of household,all,filers,hoh,15,"$500,000 under $1,000,000",21033.0,15in12ms.xls,AO23,41,AO,23 +176,2015_tab12_agi_count_all_hoh,2015,tab12,agi,count,Number of returns — head of household,all,filers,hoh,16,"$1,000,000 under $1,500,000",4826.0,15in12ms.xls,AO24,41,AO,24 +177,2015_tab12_agi_count_all_hoh,2015,tab12,agi,count,Number of returns — head of household,all,filers,hoh,17,"$1,500,000 under $2,000,000",2091.0,15in12ms.xls,AO25,41,AO,25 +178,2015_tab12_agi_count_all_hoh,2015,tab12,agi,count,Number of returns — head of household,all,filers,hoh,18,"$2,000,000 under $5,000,000",3043.0,15in12ms.xls,AO26,41,AO,26 +179,2015_tab12_agi_count_all_hoh,2015,tab12,agi,count,Number of returns — head of household,all,filers,hoh,19,"$5,000,000 under $10,000,000",703.0,15in12ms.xls,AO27,41,AO,27 +180,2015_tab12_agi_count_all_hoh,2015,tab12,agi,count,Number of returns — head of household,all,filers,hoh,20,"$10,000,000 or more",424.0,15in12ms.xls,AO28,41,AO,28 +181,2015_tab12_agi_count_all_mfjss,2015,tab12,agi,count,Number of returns — married filing jointly/SS,all,filers,mfjss,1,"All returns, total",54294820.0,15in12ms.xls,O9,15,O,9 +182,2015_tab12_agi_count_all_mfjss,2015,tab12,agi,count,Number of returns — married filing jointly/SS,all,filers,mfjss,2,No adjusted gross income,631850.0,15in12ms.xls,O10,15,O,10 +183,2015_tab12_agi_count_all_mfjss,2015,tab12,agi,count,Number of returns — married filing jointly/SS,all,filers,mfjss,3,"$1 under $5,000",721218.0,15in12ms.xls,O11,15,O,11 +184,2015_tab12_agi_count_all_mfjss,2015,tab12,agi,count,Number of returns — married filing jointly/SS,all,filers,mfjss,4,"$5,000 under $10,000",983536.0,15in12ms.xls,O12,15,O,12 +185,2015_tab12_agi_count_all_mfjss,2015,tab12,agi,count,Number of returns — married filing jointly/SS,all,filers,mfjss,5,"$10,000 under $15,000",1464654.0,15in12ms.xls,O13,15,O,13 +186,2015_tab12_agi_count_all_mfjss,2015,tab12,agi,count,Number of returns — married filing jointly/SS,all,filers,mfjss,6,"$15,000 under $20,000",1739384.0,15in12ms.xls,O14,15,O,14 +187,2015_tab12_agi_count_all_mfjss,2015,tab12,agi,count,Number of returns — married filing jointly/SS,all,filers,mfjss,7,"$20,000 under $25,000",1829227.0,15in12ms.xls,O15,15,O,15 +188,2015_tab12_agi_count_all_mfjss,2015,tab12,agi,count,Number of returns — married filing jointly/SS,all,filers,mfjss,8,"$25,000 under $30,000",1833147.0,15in12ms.xls,O16,15,O,16 +189,2015_tab12_agi_count_all_mfjss,2015,tab12,agi,count,Number of returns — married filing jointly/SS,all,filers,mfjss,9,"$30,000 under $40,000",3693642.0,15in12ms.xls,O17,15,O,17 +190,2015_tab12_agi_count_all_mfjss,2015,tab12,agi,count,Number of returns — married filing jointly/SS,all,filers,mfjss,10,"$40,000 under $50,000",3643135.0,15in12ms.xls,O18,15,O,18 +191,2015_tab12_agi_count_all_mfjss,2015,tab12,agi,count,Number of returns — married filing jointly/SS,all,filers,mfjss,11,"$50,000 under $75,000",8915819.0,15in12ms.xls,O19,15,O,19 +192,2015_tab12_agi_count_all_mfjss,2015,tab12,agi,count,Number of returns — married filing jointly/SS,all,filers,mfjss,12,"$75,000 under $100,000",8333406.0,15in12ms.xls,O20,15,O,20 +193,2015_tab12_agi_count_all_mfjss,2015,tab12,agi,count,Number of returns — married filing jointly/SS,all,filers,mfjss,13,"$100,000 under $200,000",14734839.0,15in12ms.xls,O21,15,O,21 +194,2015_tab12_agi_count_all_mfjss,2015,tab12,agi,count,Number of returns — married filing jointly/SS,all,filers,mfjss,14,"$200,000 under $500,000",4644659.0,15in12ms.xls,O22,15,O,22 +195,2015_tab12_agi_count_all_mfjss,2015,tab12,agi,count,Number of returns — married filing jointly/SS,all,filers,mfjss,15,"$500,000 under $1,000,000",758569.0,15in12ms.xls,O23,15,O,23 +196,2015_tab12_agi_count_all_mfjss,2015,tab12,agi,count,Number of returns — married filing jointly/SS,all,filers,mfjss,16,"$1,000,000 under $1,500,000",165678.0,15in12ms.xls,O24,15,O,24 +197,2015_tab12_agi_count_all_mfjss,2015,tab12,agi,count,Number of returns — married filing jointly/SS,all,filers,mfjss,17,"$1,500,000 under $2,000,000",67141.0,15in12ms.xls,O25,15,O,25 +198,2015_tab12_agi_count_all_mfjss,2015,tab12,agi,count,Number of returns — married filing jointly/SS,all,filers,mfjss,18,"$2,000,000 under $5,000,000",96769.0,15in12ms.xls,O26,15,O,26 +199,2015_tab12_agi_count_all_mfjss,2015,tab12,agi,count,Number of returns — married filing jointly/SS,all,filers,mfjss,19,"$5,000,000 under $10,000,000",23661.0,15in12ms.xls,O27,15,O,27 +200,2015_tab12_agi_count_all_mfjss,2015,tab12,agi,count,Number of returns — married filing jointly/SS,all,filers,mfjss,20,"$10,000,000 or more",14485.0,15in12ms.xls,O28,15,O,28 +201,2015_tab12_agi_count_all_mfs,2015,tab12,agi,count,Number of returns — married filing separately,all,filers,mfs,1,"All returns, total",2977192.0,15in12ms.xls,AB9,28,AB,9 +202,2015_tab12_agi_count_all_mfs,2015,tab12,agi,count,Number of returns — married filing separately,all,filers,mfs,2,No adjusted gross income,82706.0,15in12ms.xls,AB10,28,AB,10 +203,2015_tab12_agi_count_all_mfs,2015,tab12,agi,count,Number of returns — married filing separately,all,filers,mfs,3,"$1 under $5,000",136980.0,15in12ms.xls,AB11,28,AB,11 +204,2015_tab12_agi_count_all_mfs,2015,tab12,agi,count,Number of returns — married filing separately,all,filers,mfs,4,"$5,000 under $10,000",137000.0,15in12ms.xls,AB12,28,AB,12 +205,2015_tab12_agi_count_all_mfs,2015,tab12,agi,count,Number of returns — married filing separately,all,filers,mfs,5,"$10,000 under $15,000",158225.0,15in12ms.xls,AB13,28,AB,13 +206,2015_tab12_agi_count_all_mfs,2015,tab12,agi,count,Number of returns — married filing separately,all,filers,mfs,6,"$15,000 under $20,000",178490.0,15in12ms.xls,AB14,28,AB,14 +207,2015_tab12_agi_count_all_mfs,2015,tab12,agi,count,Number of returns — married filing separately,all,filers,mfs,7,"$20,000 under $25,000",219122.0,15in12ms.xls,AB15,28,AB,15 +208,2015_tab12_agi_count_all_mfs,2015,tab12,agi,count,Number of returns — married filing separately,all,filers,mfs,8,"$25,000 under $30,000",227923.0,15in12ms.xls,AB16,28,AB,16 +209,2015_tab12_agi_count_all_mfs,2015,tab12,agi,count,Number of returns — married filing separately,all,filers,mfs,9,"$30,000 under $40,000",404882.0,15in12ms.xls,AB17,28,AB,17 +210,2015_tab12_agi_count_all_mfs,2015,tab12,agi,count,Number of returns — married filing separately,all,filers,mfs,10,"$40,000 under $50,000",362595.0,15in12ms.xls,AB18,28,AB,18 +211,2015_tab12_agi_count_all_mfs,2015,tab12,agi,count,Number of returns — married filing separately,all,filers,mfs,11,"$50,000 under $75,000",561196.0,15in12ms.xls,AB19,28,AB,19 +212,2015_tab12_agi_count_all_mfs,2015,tab12,agi,count,Number of returns — married filing separately,all,filers,mfs,12,"$75,000 under $100,000",240402.0,15in12ms.xls,AB20,28,AB,20 +213,2015_tab12_agi_count_all_mfs,2015,tab12,agi,count,Number of returns — married filing separately,all,filers,mfs,13,"$100,000 under $200,000",202292.0,15in12ms.xls,AB21,28,AB,21 +214,2015_tab12_agi_count_all_mfs,2015,tab12,agi,count,Number of returns — married filing separately,all,filers,mfs,14,"$200,000 under $500,000",45272.0,15in12ms.xls,AB22,28,AB,22 +215,2015_tab12_agi_count_all_mfs,2015,tab12,agi,count,Number of returns — married filing separately,all,filers,mfs,15,"$500,000 under $1,000,000",11170.0,15in12ms.xls,AB23,28,AB,23 +216,2015_tab12_agi_count_all_mfs,2015,tab12,agi,count,Number of returns — married filing separately,all,filers,mfs,16,"$1,000,000 under $1,500,000",3056.0,15in12ms.xls,AB24,28,AB,24 +217,2015_tab12_agi_count_all_mfs,2015,tab12,agi,count,Number of returns — married filing separately,all,filers,mfs,17,"$1,500,000 under $2,000,000",1587.0,15in12ms.xls,AB25,28,AB,25 +218,2015_tab12_agi_count_all_mfs,2015,tab12,agi,count,Number of returns — married filing separately,all,filers,mfs,18,"$2,000,000 under $5,000,000",2656.0,15in12ms.xls,AB26,28,AB,26 +219,2015_tab12_agi_count_all_mfs,2015,tab12,agi,count,Number of returns — married filing separately,all,filers,mfs,19,"$5,000,000 under $10,000,000",800.0,15in12ms.xls,AB27,28,AB,27 +220,2015_tab12_agi_count_all_mfs,2015,tab12,agi,count,Number of returns — married filing separately,all,filers,mfs,20,"$10,000,000 or more",835.0,15in12ms.xls,AB28,28,AB,28 +221,2015_tab12_agi_count_all_single,2015,tab12,agi,count,Number of returns — single,all,filers,single,1,"All returns, total",71086947.0,15in12ms.xls,BB9,54,BB,9 +222,2015_tab12_agi_count_all_single,2015,tab12,agi,count,Number of returns — single,all,filers,single,2,No adjusted gross income,1263503.0,15in12ms.xls,BB10,54,BB,10 +223,2015_tab12_agi_count_all_single,2015,tab12,agi,count,Number of returns — single,all,filers,single,3,"$1 under $5,000",8754410.0,15in12ms.xls,BB11,54,BB,11 +224,2015_tab12_agi_count_all_single,2015,tab12,agi,count,Number of returns — single,all,filers,single,4,"$5,000 under $10,000",8698192.0,15in12ms.xls,BB12,54,BB,12 +225,2015_tab12_agi_count_all_single,2015,tab12,agi,count,Number of returns — single,all,filers,single,5,"$10,000 under $15,000",7599496.0,15in12ms.xls,BB13,54,BB,13 +226,2015_tab12_agi_count_all_single,2015,tab12,agi,count,Number of returns — single,all,filers,single,6,"$15,000 under $20,000",6424705.0,15in12ms.xls,BB14,54,BB,14 +227,2015_tab12_agi_count_all_single,2015,tab12,agi,count,Number of returns — single,all,filers,single,7,"$20,000 under $25,000",5488525.0,15in12ms.xls,BB15,54,BB,15 +228,2015_tab12_agi_count_all_single,2015,tab12,agi,count,Number of returns — single,all,filers,single,8,"$25,000 under $30,000",4697161.0,15in12ms.xls,BB16,54,BB,16 +229,2015_tab12_agi_count_all_single,2015,tab12,agi,count,Number of returns — single,all,filers,single,9,"$30,000 under $40,000",7601388.0,15in12ms.xls,BB17,54,BB,17 +230,2015_tab12_agi_count_all_single,2015,tab12,agi,count,Number of returns — single,all,filers,single,10,"$40,000 under $50,000",5653373.0,15in12ms.xls,BB18,54,BB,18 +231,2015_tab12_agi_count_all_single,2015,tab12,agi,count,Number of returns — single,all,filers,single,11,"$50,000 under $75,000",8025499.0,15in12ms.xls,BB19,54,BB,19 +232,2015_tab12_agi_count_all_single,2015,tab12,agi,count,Number of returns — single,all,filers,single,12,"$75,000 under $100,000",3266645.0,15in12ms.xls,BB20,54,BB,20 +233,2015_tab12_agi_count_all_single,2015,tab12,agi,count,Number of returns — single,all,filers,single,13,"$100,000 under $200,000",2865867.0,15in12ms.xls,BB21,54,BB,21 +234,2015_tab12_agi_count_all_single,2015,tab12,agi,count,Number of returns — single,all,filers,single,14,"$200,000 under $500,000",603042.0,15in12ms.xls,BB22,54,BB,22 +235,2015_tab12_agi_count_all_single,2015,tab12,agi,count,Number of returns — single,all,filers,single,15,"$500,000 under $1,000,000",93563.0,15in12ms.xls,BB23,54,BB,23 +236,2015_tab12_agi_count_all_single,2015,tab12,agi,count,Number of returns — single,all,filers,single,16,"$1,000,000 under $1,500,000",22345.0,15in12ms.xls,BB24,54,BB,24 +237,2015_tab12_agi_count_all_single,2015,tab12,agi,count,Number of returns — single,all,filers,single,17,"$1,500,000 under $2,000,000",9152.0,15in12ms.xls,BB25,54,BB,25 +238,2015_tab12_agi_count_all_single,2015,tab12,agi,count,Number of returns — single,all,filers,single,18,"$2,000,000 under $5,000,000",14249.0,15in12ms.xls,BB26,54,BB,26 +239,2015_tab12_agi_count_all_single,2015,tab12,agi,count,Number of returns — single,all,filers,single,19,"$5,000,000 under $10,000,000",3516.0,15in12ms.xls,BB27,54,BB,27 +240,2015_tab12_agi_count_all_single,2015,tab12,agi,count,Number of returns — single,all,filers,single,20,"$10,000,000 or more",2317.0,15in12ms.xls,BB28,54,BB,28 +241,2015_tab12_exemption_amount_all_all,2015,tab12,exemption,amount,Personal exemption (2015 only),all,filers,all,1,"All returns, total",1140740415000.0,15in12ms.xls,D9,4,D,9 +242,2015_tab12_exemption_amount_all_all,2015,tab12,exemption,amount,Personal exemption (2015 only),all,filers,all,2,No adjusted gross income,12446491000.0,15in12ms.xls,D10,4,D,10 +243,2015_tab12_exemption_amount_all_all,2015,tab12,exemption,amount,Personal exemption (2015 only),all,filers,all,3,"$1 under $5,000",31087459000.0,15in12ms.xls,D11,4,D,11 +244,2015_tab12_exemption_amount_all_all,2015,tab12,exemption,amount,Personal exemption (2015 only),all,filers,all,4,"$5,000 under $10,000",52312323000.0,15in12ms.xls,D12,4,D,12 +245,2015_tab12_exemption_amount_all_all,2015,tab12,exemption,amount,Personal exemption (2015 only),all,filers,all,5,"$10,000 under $15,000",78326220000.0,15in12ms.xls,D13,4,D,13 +246,2015_tab12_exemption_amount_all_all,2015,tab12,exemption,amount,Personal exemption (2015 only),all,filers,all,6,"$15,000 under $20,000",80165929000.0,15in12ms.xls,D14,4,D,14 +247,2015_tab12_exemption_amount_all_all,2015,tab12,exemption,amount,Personal exemption (2015 only),all,filers,all,7,"$20,000 under $25,000",72448913000.0,15in12ms.xls,D15,4,D,15 +248,2015_tab12_exemption_amount_all_all,2015,tab12,exemption,amount,Personal exemption (2015 only),all,filers,all,8,"$25,000 under $30,000",66284851000.0,15in12ms.xls,D16,4,D,16 +249,2015_tab12_exemption_amount_all_all,2015,tab12,exemption,amount,Personal exemption (2015 only),all,filers,all,9,"$30,000 under $40,000",115442883000.0,15in12ms.xls,D17,4,D,17 +250,2015_tab12_exemption_amount_all_all,2015,tab12,exemption,amount,Personal exemption (2015 only),all,filers,all,10,"$40,000 under $50,000",91236099000.0,15in12ms.xls,D18,4,D,18 +251,2015_tab12_exemption_amount_all_all,2015,tab12,exemption,amount,Personal exemption (2015 only),all,filers,all,11,"$50,000 under $75,000",169228826000.0,15in12ms.xls,D19,4,D,19 +252,2015_tab12_exemption_amount_all_all,2015,tab12,exemption,amount,Personal exemption (2015 only),all,filers,all,12,"$75,000 under $100,000",122634902000.0,15in12ms.xls,D20,4,D,20 +253,2015_tab12_exemption_amount_all_all,2015,tab12,exemption,amount,Personal exemption (2015 only),all,filers,all,13,"$100,000 under $200,000",198173870000.0,15in12ms.xls,D21,4,D,21 +254,2015_tab12_exemption_amount_all_all,2015,tab12,exemption,amount,Personal exemption (2015 only),all,filers,all,14,"$200,000 under $500,000",50951651000.0,15in12ms.xls,D22,4,D,22 +255,2015_tab12_exemption_amount_all_all,2015,tab12,exemption,amount,Personal exemption (2015 only),all,filers,all,15,"$500,000 under $1,000,000",0.0,15in12ms.xls,D23,4,D,23 +256,2015_tab12_exemption_amount_all_all,2015,tab12,exemption,amount,Personal exemption (2015 only),all,filers,all,16,"$1,000,000 under $1,500,000",0.0,15in12ms.xls,D24,4,D,24 +257,2015_tab12_exemption_amount_all_all,2015,tab12,exemption,amount,Personal exemption (2015 only),all,filers,all,17,"$1,500,000 under $2,000,000",0.0,15in12ms.xls,D25,4,D,25 +258,2015_tab12_exemption_amount_all_all,2015,tab12,exemption,amount,Personal exemption (2015 only),all,filers,all,18,"$2,000,000 under $5,000,000",0.0,15in12ms.xls,D26,4,D,26 +259,2015_tab12_exemption_amount_all_all,2015,tab12,exemption,amount,Personal exemption (2015 only),all,filers,all,19,"$5,000,000 under $10,000,000",0.0,15in12ms.xls,D27,4,D,27 +260,2015_tab12_exemption_amount_all_all,2015,tab12,exemption,amount,Personal exemption (2015 only),all,filers,all,20,"$10,000,000 or more",0.0,15in12ms.xls,D28,4,D,28 +261,2015_tab12_itemded_amount_nz_all,2015,tab12,itemded,amount,Total itemized deductions,nz,filers,all,1,"All returns, total",1257437010000.0,15in12ms.xls,F9,6,F,9 +262,2015_tab12_itemded_amount_nz_all,2015,tab12,itemded,amount,Total itemized deductions,nz,filers,all,2,No adjusted gross income,0.0,15in12ms.xls,F10,6,F,10 +263,2015_tab12_itemded_amount_nz_all,2015,tab12,itemded,amount,Total itemized deductions,nz,filers,all,3,"$1 under $5,000",5062303000.0,15in12ms.xls,F11,6,F,11 +264,2015_tab12_itemded_amount_nz_all,2015,tab12,itemded,amount,Total itemized deductions,nz,filers,all,4,"$5,000 under $10,000",6390443000.0,15in12ms.xls,F12,6,F,12 +265,2015_tab12_itemded_amount_nz_all,2015,tab12,itemded,amount,Total itemized deductions,nz,filers,all,5,"$10,000 under $15,000",9962058000.0,15in12ms.xls,F13,6,F,13 +266,2015_tab12_itemded_amount_nz_all,2015,tab12,itemded,amount,Total itemized deductions,nz,filers,all,6,"$15,000 under $20,000",12524176000.0,15in12ms.xls,F14,6,F,14 +267,2015_tab12_itemded_amount_nz_all,2015,tab12,itemded,amount,Total itemized deductions,nz,filers,all,7,"$20,000 under $25,000",14912176000.0,15in12ms.xls,F15,6,F,15 +268,2015_tab12_itemded_amount_nz_all,2015,tab12,itemded,amount,Total itemized deductions,nz,filers,all,8,"$25,000 under $30,000",17588605000.0,15in12ms.xls,F16,6,F,16 +269,2015_tab12_itemded_amount_nz_all,2015,tab12,itemded,amount,Total itemized deductions,nz,filers,all,9,"$30,000 under $40,000",40798529000.0,15in12ms.xls,F17,6,F,17 +270,2015_tab12_itemded_amount_nz_all,2015,tab12,itemded,amount,Total itemized deductions,nz,filers,all,10,"$40,000 under $50,000",48716667000.0,15in12ms.xls,F18,6,F,18 +271,2015_tab12_itemded_amount_nz_all,2015,tab12,itemded,amount,Total itemized deductions,nz,filers,all,11,"$50,000 under $75,000",134805158000.0,15in12ms.xls,F19,6,F,19 +272,2015_tab12_itemded_amount_nz_all,2015,tab12,itemded,amount,Total itemized deductions,nz,filers,all,12,"$75,000 under $100,000",143109518000.0,15in12ms.xls,F20,6,F,20 +273,2015_tab12_itemded_amount_nz_all,2015,tab12,itemded,amount,Total itemized deductions,nz,filers,all,13,"$100,000 under $200,000",358208357000.0,15in12ms.xls,F21,6,F,21 +274,2015_tab12_itemded_amount_nz_all,2015,tab12,itemded,amount,Total itemized deductions,nz,filers,all,14,"$200,000 under $500,000",220760559000.0,15in12ms.xls,F22,6,F,22 +275,2015_tab12_itemded_amount_nz_all,2015,tab12,itemded,amount,Total itemized deductions,nz,filers,all,15,"$500,000 under $1,000,000",69703881000.0,15in12ms.xls,F23,6,F,23 +276,2015_tab12_itemded_amount_nz_all,2015,tab12,itemded,amount,Total itemized deductions,nz,filers,all,16,"$1,000,000 under $1,500,000",26437560000.0,15in12ms.xls,F24,6,F,24 +277,2015_tab12_itemded_amount_nz_all,2015,tab12,itemded,amount,Total itemized deductions,nz,filers,all,17,"$1,500,000 under $2,000,000",14954416000.0,15in12ms.xls,F25,6,F,25 +278,2015_tab12_itemded_amount_nz_all,2015,tab12,itemded,amount,Total itemized deductions,nz,filers,all,18,"$2,000,000 under $5,000,000",38021038000.0,15in12ms.xls,F26,6,F,26 +279,2015_tab12_itemded_amount_nz_all,2015,tab12,itemded,amount,Total itemized deductions,nz,filers,all,19,"$5,000,000 under $10,000,000",21753953000.0,15in12ms.xls,F27,6,F,27 +280,2015_tab12_itemded_amount_nz_all,2015,tab12,itemded,amount,Total itemized deductions,nz,filers,all,20,"$10,000,000 or more",73727614000.0,15in12ms.xls,F28,6,F,28 +281,2015_tab12_itemded_count_nz_all,2015,tab12,itemded,count,Itemized deductions — number of returns,nz,filers,all,1,"All returns, total",44567263.0,15in12ms.xls,E9,5,E,9 +282,2015_tab12_itemded_count_nz_all,2015,tab12,itemded,count,Itemized deductions — number of returns,nz,filers,all,2,No adjusted gross income,0.0,15in12ms.xls,E10,5,E,10 +283,2015_tab12_itemded_count_nz_all,2015,tab12,itemded,count,Itemized deductions — number of returns,nz,filers,all,3,"$1 under $5,000",317443.0,15in12ms.xls,E11,5,E,11 +284,2015_tab12_itemded_count_nz_all,2015,tab12,itemded,count,Itemized deductions — number of returns,nz,filers,all,4,"$5,000 under $10,000",384355.0,15in12ms.xls,E12,5,E,12 +285,2015_tab12_itemded_count_nz_all,2015,tab12,itemded,count,Itemized deductions — number of returns,nz,filers,all,5,"$10,000 under $15,000",662599.0,15in12ms.xls,E13,5,E,13 +286,2015_tab12_itemded_count_nz_all,2015,tab12,itemded,count,Itemized deductions — number of returns,nz,filers,all,6,"$15,000 under $20,000",811728.0,15in12ms.xls,E14,5,E,14 +287,2015_tab12_itemded_count_nz_all,2015,tab12,itemded,count,Itemized deductions — number of returns,nz,filers,all,7,"$20,000 under $25,000",941085.0,15in12ms.xls,E15,5,E,15 +288,2015_tab12_itemded_count_nz_all,2015,tab12,itemded,count,Itemized deductions — number of returns,nz,filers,all,8,"$25,000 under $30,000",1081500.0,15in12ms.xls,E16,5,E,16 +289,2015_tab12_itemded_count_nz_all,2015,tab12,itemded,count,Itemized deductions — number of returns,nz,filers,all,9,"$30,000 under $40,000",2565311.0,15in12ms.xls,E17,5,E,17 +290,2015_tab12_itemded_count_nz_all,2015,tab12,itemded,count,Itemized deductions — number of returns,nz,filers,all,10,"$40,000 under $50,000",2983529.0,15in12ms.xls,E18,5,E,18 +291,2015_tab12_itemded_count_nz_all,2015,tab12,itemded,count,Itemized deductions — number of returns,nz,filers,all,11,"$50,000 under $75,000",7518141.0,15in12ms.xls,E19,5,E,19 +292,2015_tab12_itemded_count_nz_all,2015,tab12,itemded,count,Itemized deductions — number of returns,nz,filers,all,12,"$75,000 under $100,000",6957567.0,15in12ms.xls,E20,5,E,20 +293,2015_tab12_itemded_count_nz_all,2015,tab12,itemded,count,Itemized deductions — number of returns,nz,filers,all,13,"$100,000 under $200,000",14038259.0,15in12ms.xls,E21,5,E,21 +294,2015_tab12_itemded_count_nz_all,2015,tab12,itemded,count,Itemized deductions — number of returns,nz,filers,all,14,"$200,000 under $500,000",5083499.0,15in12ms.xls,E22,5,E,22 +295,2015_tab12_itemded_count_nz_all,2015,tab12,itemded,count,Itemized deductions — number of returns,nz,filers,all,15,"$500,000 under $1,000,000",821784.0,15in12ms.xls,E23,5,E,23 +296,2015_tab12_itemded_count_nz_all,2015,tab12,itemded,count,Itemized deductions — number of returns,nz,filers,all,16,"$1,000,000 under $1,500,000",177407.0,15in12ms.xls,E24,5,E,24 +297,2015_tab12_itemded_count_nz_all,2015,tab12,itemded,count,Itemized deductions — number of returns,nz,filers,all,17,"$1,500,000 under $2,000,000",71685.0,15in12ms.xls,E25,5,E,25 +298,2015_tab12_itemded_count_nz_all,2015,tab12,itemded,count,Itemized deductions — number of returns,nz,filers,all,18,"$2,000,000 under $5,000,000",106755.0,15in12ms.xls,E26,5,E,26 +299,2015_tab12_itemded_count_nz_all,2015,tab12,itemded,count,Itemized deductions — number of returns,nz,filers,all,19,"$5,000,000 under $10,000,000",27125.0,15in12ms.xls,E27,5,E,27 +300,2015_tab12_itemded_count_nz_all,2015,tab12,itemded,count,Itemized deductions — number of returns,nz,filers,all,20,"$10,000,000 or more",17490.0,15in12ms.xls,E28,5,E,28 +301,2015_tab12_sd_amount_nz_all,2015,tab12,sd,amount,Standard deduction,nz,filers,all,1,"All returns, total",900609447000.0,15in12ms.xls,H9,8,H,9 +302,2015_tab12_sd_amount_nz_all,2015,tab12,sd,amount,Standard deduction,nz,filers,all,2,No adjusted gross income,0.0,15in12ms.xls,H10,8,H,10 +303,2015_tab12_sd_amount_nz_all,2015,tab12,sd,amount,Standard deduction,nz,filers,all,3,"$1 under $5,000",54726212000.0,15in12ms.xls,H11,8,H,11 +304,2015_tab12_sd_amount_nz_all,2015,tab12,sd,amount,Standard deduction,nz,filers,all,4,"$5,000 under $10,000",81276862000.0,15in12ms.xls,H12,8,H,12 +305,2015_tab12_sd_amount_nz_all,2015,tab12,sd,amount,Standard deduction,nz,filers,all,5,"$10,000 under $15,000",92616719000.0,15in12ms.xls,H13,8,H,13 +306,2015_tab12_sd_amount_nz_all,2015,tab12,sd,amount,Standard deduction,nz,filers,all,6,"$15,000 under $20,000",86251291000.0,15in12ms.xls,H14,8,H,14 +307,2015_tab12_sd_amount_nz_all,2015,tab12,sd,amount,Standard deduction,nz,filers,all,7,"$20,000 under $25,000",76036514000.0,15in12ms.xls,H15,8,H,15 +308,2015_tab12_sd_amount_nz_all,2015,tab12,sd,amount,Standard deduction,nz,filers,all,8,"$25,000 under $30,000",66157579000.0,15in12ms.xls,H16,8,H,16 +309,2015_tab12_sd_amount_nz_all,2015,tab12,sd,amount,Standard deduction,nz,filers,all,9,"$30,000 under $40,000",108298415000.0,15in12ms.xls,H17,8,H,17 +310,2015_tab12_sd_amount_nz_all,2015,tab12,sd,amount,Standard deduction,nz,filers,all,10,"$40,000 under $50,000",79302209000.0,15in12ms.xls,H18,8,H,18 +311,2015_tab12_sd_amount_nz_all,2015,tab12,sd,amount,Standard deduction,nz,filers,all,11,"$50,000 under $75,000",126871911000.0,15in12ms.xls,H19,8,H,19 +312,2015_tab12_sd_amount_nz_all,2015,tab12,sd,amount,Standard deduction,nz,filers,all,12,"$75,000 under $100,000",68439631000.0,15in12ms.xls,H20,8,H,20 +313,2015_tab12_sd_amount_nz_all,2015,tab12,sd,amount,Standard deduction,nz,filers,all,13,"$100,000 under $200,000",55233169000.0,15in12ms.xls,H21,8,H,21 +314,2015_tab12_sd_amount_nz_all,2015,tab12,sd,amount,Standard deduction,nz,filers,all,14,"$200,000 under $500,000",4196553000.0,15in12ms.xls,H22,8,H,22 +315,2015_tab12_sd_amount_nz_all,2015,tab12,sd,amount,Standard deduction,nz,filers,all,15,"$500,000 under $1,000,000",740487000.0,15in12ms.xls,H23,8,H,23 +316,2015_tab12_sd_amount_nz_all,2015,tab12,sd,amount,Standard deduction,nz,filers,all,16,"$1,000,000 under $1,500,000",218776000.0,15in12ms.xls,H24,8,H,24 +317,2015_tab12_sd_amount_nz_all,2015,tab12,sd,amount,Standard deduction,nz,filers,all,17,"$1,500,000 under $2,000,000",98942000.0,15in12ms.xls,H25,8,H,25 +318,2015_tab12_sd_amount_nz_all,2015,tab12,sd,amount,Standard deduction,nz,filers,all,18,"$2,000,000 under $5,000,000",118857000.0,15in12ms.xls,H26,8,H,26 +319,2015_tab12_sd_amount_nz_all,2015,tab12,sd,amount,Standard deduction,nz,filers,all,19,"$5,000,000 under $10,000,000",18800000.0,15in12ms.xls,H27,8,H,27 +320,2015_tab12_sd_amount_nz_all,2015,tab12,sd,amount,Standard deduction,nz,filers,all,20,"$10,000,000 or more",6520000.0,15in12ms.xls,H28,8,H,28 +321,2015_tab12_sd_count_nz_all,2015,tab12,sd,count,Standard deduction — number of returns,nz,filers,all,1,"All returns, total",103844288.0,15in12ms.xls,G9,7,G,9 +322,2015_tab12_sd_count_nz_all,2015,tab12,sd,count,Standard deduction — number of returns,nz,filers,all,2,No adjusted gross income,0.0,15in12ms.xls,G10,7,G,10 +323,2015_tab12_sd_count_nz_all,2015,tab12,sd,count,Standard deduction — number of returns,nz,filers,all,3,"$1 under $5,000",9815255.0,15in12ms.xls,G11,7,G,11 +324,2015_tab12_sd_count_nz_all,2015,tab12,sd,count,Standard deduction — number of returns,nz,filers,all,4,"$5,000 under $10,000",11012200.0,15in12ms.xls,G12,7,G,12 +325,2015_tab12_sd_count_nz_all,2015,tab12,sd,count,Standard deduction — number of returns,nz,filers,all,5,"$10,000 under $15,000",11555885.0,15in12ms.xls,G13,7,G,13 +326,2015_tab12_sd_count_nz_all,2015,tab12,sd,count,Standard deduction — number of returns,nz,filers,all,6,"$15,000 under $20,000",10416717.0,15in12ms.xls,G14,7,G,14 +327,2015_tab12_sd_count_nz_all,2015,tab12,sd,count,Standard deduction — number of returns,nz,filers,all,7,"$20,000 under $25,000",9039307.0,15in12ms.xls,G15,7,G,15 +328,2015_tab12_sd_count_nz_all,2015,tab12,sd,count,Standard deduction — number of returns,nz,filers,all,8,"$25,000 under $30,000",7749382.0,15in12ms.xls,G16,7,G,16 +329,2015_tab12_sd_count_nz_all,2015,tab12,sd,count,Standard deduction — number of returns,nz,filers,all,9,"$30,000 under $40,000",12348570.0,15in12ms.xls,G17,7,G,17 +330,2015_tab12_sd_count_nz_all,2015,tab12,sd,count,Standard deduction — number of returns,nz,filers,all,10,"$40,000 under $50,000",8640831.0,15in12ms.xls,G18,7,G,18 +331,2015_tab12_sd_count_nz_all,2015,tab12,sd,count,Standard deduction — number of returns,nz,filers,all,11,"$50,000 under $75,000",12461976.0,15in12ms.xls,G19,7,G,19 +332,2015_tab12_sd_count_nz_all,2015,tab12,sd,count,Standard deduction — number of returns,nz,filers,all,12,"$75,000 under $100,000",5864215.0,15in12ms.xls,G20,7,G,20 +333,2015_tab12_sd_count_nz_all,2015,tab12,sd,count,Standard deduction — number of returns,nz,filers,all,13,"$100,000 under $200,000",4494023.0,15in12ms.xls,G21,7,G,21 +334,2015_tab12_sd_count_nz_all,2015,tab12,sd,count,Standard deduction — number of returns,nz,filers,all,14,"$200,000 under $500,000",344509.0,15in12ms.xls,G22,7,G,22 +335,2015_tab12_sd_count_nz_all,2015,tab12,sd,count,Standard deduction — number of returns,nz,filers,all,15,"$500,000 under $1,000,000",62549.0,15in12ms.xls,G23,7,G,23 +336,2015_tab12_sd_count_nz_all,2015,tab12,sd,count,Standard deduction — number of returns,nz,filers,all,16,"$1,000,000 under $1,500,000",18497.0,15in12ms.xls,G24,7,G,24 +337,2015_tab12_sd_count_nz_all,2015,tab12,sd,count,Standard deduction — number of returns,nz,filers,all,17,"$1,500,000 under $2,000,000",8285.0,15in12ms.xls,G25,7,G,25 +338,2015_tab12_sd_count_nz_all,2015,tab12,sd,count,Standard deduction — number of returns,nz,filers,all,18,"$2,000,000 under $5,000,000",9963.0,15in12ms.xls,G26,7,G,26 +339,2015_tab12_sd_count_nz_all,2015,tab12,sd,count,Standard deduction — number of returns,nz,filers,all,19,"$5,000,000 under $10,000,000",1555.0,15in12ms.xls,G27,7,G,27 +340,2015_tab12_sd_count_nz_all,2015,tab12,sd,count,Standard deduction — number of returns,nz,filers,all,20,"$10,000,000 or more",569.0,15in12ms.xls,G28,7,G,28 +341,2015_tab12_taxac_amount_nz_all,2015,tab12,taxac,amount,Income tax after credits,nz,filers,all,1,"All returns, total",1435848586000.0,15in12ms.xls,L9,12,L,9 +342,2015_tab12_taxac_amount_nz_all,2015,tab12,taxac,amount,Income tax after credits,nz,filers,all,2,No adjusted gross income,241975000.0,15in12ms.xls,L10,12,L,10 +343,2015_tab12_taxac_amount_nz_all,2015,tab12,taxac,amount,Income tax after credits,nz,filers,all,3,"$1 under $5,000",40941000.0,15in12ms.xls,L11,12,L,11 +344,2015_tab12_taxac_amount_nz_all,2015,tab12,taxac,amount,Income tax after credits,nz,filers,all,4,"$5,000 under $10,000",368015000.0,15in12ms.xls,L12,12,L,12 +345,2015_tab12_taxac_amount_nz_all,2015,tab12,taxac,amount,Income tax after credits,nz,filers,all,5,"$10,000 under $15,000",1381283000.0,15in12ms.xls,L13,12,L,13 +346,2015_tab12_taxac_amount_nz_all,2015,tab12,taxac,amount,Income tax after credits,nz,filers,all,6,"$15,000 under $20,000",3523850000.0,15in12ms.xls,L14,12,L,14 +347,2015_tab12_taxac_amount_nz_all,2015,tab12,taxac,amount,Income tax after credits,nz,filers,all,7,"$20,000 under $25,000",6191130000.0,15in12ms.xls,L15,12,L,15 +348,2015_tab12_taxac_amount_nz_all,2015,tab12,taxac,amount,Income tax after credits,nz,filers,all,8,"$25,000 under $30,000",8752577000.0,15in12ms.xls,L16,12,L,16 +349,2015_tab12_taxac_amount_nz_all,2015,tab12,taxac,amount,Income tax after credits,nz,filers,all,9,"$30,000 under $40,000",25167659000.0,15in12ms.xls,L17,12,L,17 +350,2015_tab12_taxac_amount_nz_all,2015,tab12,taxac,amount,Income tax after credits,nz,filers,all,10,"$40,000 under $50,000",32530107000.0,15in12ms.xls,L18,12,L,18 +351,2015_tab12_taxac_amount_nz_all,2015,tab12,taxac,amount,Income tax after credits,nz,filers,all,11,"$50,000 under $75,000",99790385000.0,15in12ms.xls,L19,12,L,19 +352,2015_tab12_taxac_amount_nz_all,2015,tab12,taxac,amount,Income tax after credits,nz,filers,all,12,"$75,000 under $100,000",105900927000.0,15in12ms.xls,L20,12,L,20 +353,2015_tab12_taxac_amount_nz_all,2015,tab12,taxac,amount,Income tax after credits,nz,filers,all,13,"$100,000 under $200,000",316328337000.0,15in12ms.xls,L21,12,L,21 +354,2015_tab12_taxac_amount_nz_all,2015,tab12,taxac,amount,Income tax after credits,nz,filers,all,14,"$200,000 under $500,000",297192494000.0,15in12ms.xls,L22,12,L,22 +355,2015_tab12_taxac_amount_nz_all,2015,tab12,taxac,amount,Income tax after credits,nz,filers,all,15,"$500,000 under $1,000,000",151253134000.0,15in12ms.xls,L23,12,L,23 +356,2015_tab12_taxac_amount_nz_all,2015,tab12,taxac,amount,Income tax after credits,nz,filers,all,16,"$1,000,000 under $1,500,000",64652109000.0,15in12ms.xls,L24,12,L,24 +357,2015_tab12_taxac_amount_nz_all,2015,tab12,taxac,amount,Income tax after credits,nz,filers,all,17,"$1,500,000 under $2,000,000",38594091000.0,15in12ms.xls,L25,12,L,25 +358,2015_tab12_taxac_amount_nz_all,2015,tab12,taxac,amount,Income tax after credits,nz,filers,all,18,"$2,000,000 under $5,000,000",98361813000.0,15in12ms.xls,L26,12,L,26 +359,2015_tab12_taxac_amount_nz_all,2015,tab12,taxac,amount,Income tax after credits,nz,filers,all,19,"$5,000,000 under $10,000,000",54239522000.0,15in12ms.xls,L27,12,L,27 +360,2015_tab12_taxac_amount_nz_all,2015,tab12,taxac,amount,Income tax after credits,nz,filers,all,20,"$10,000,000 or more",131338237000.0,15in12ms.xls,L28,12,L,28 +361,2015_tab12_taxac_count_nz_all,2015,tab12,taxac,count,Income tax after credits — number of returns,nz,filers,all,1,"All returns, total",99021502.0,15in12ms.xls,K9,11,K,9 +362,2015_tab12_taxac_count_nz_all,2015,tab12,taxac,count,Income tax after credits — number of returns,nz,filers,all,2,No adjusted gross income,6628.0,15in12ms.xls,K10,11,K,10 +363,2015_tab12_taxac_count_nz_all,2015,tab12,taxac,count,Income tax after credits — number of returns,nz,filers,all,3,"$1 under $5,000",199682.0,15in12ms.xls,K11,11,K,11 +364,2015_tab12_taxac_count_nz_all,2015,tab12,taxac,count,Income tax after credits — number of returns,nz,filers,all,4,"$5,000 under $10,000",1926254.0,15in12ms.xls,K12,11,K,12 +365,2015_tab12_taxac_count_nz_all,2015,tab12,taxac,count,Income tax after credits — number of returns,nz,filers,all,5,"$10,000 under $15,000",4333058.0,15in12ms.xls,K13,11,K,13 +366,2015_tab12_taxac_count_nz_all,2015,tab12,taxac,count,Income tax after credits — number of returns,nz,filers,all,6,"$15,000 under $20,000",5195436.0,15in12ms.xls,K14,11,K,14 +367,2015_tab12_taxac_count_nz_all,2015,tab12,taxac,count,Income tax after credits — number of returns,nz,filers,all,7,"$20,000 under $25,000",5404801.0,15in12ms.xls,K15,11,K,15 +368,2015_tab12_taxac_count_nz_all,2015,tab12,taxac,count,Income tax after credits — number of returns,nz,filers,all,8,"$25,000 under $30,000",5319345.0,15in12ms.xls,K16,11,K,16 +369,2015_tab12_taxac_count_nz_all,2015,tab12,taxac,count,Income tax after credits — number of returns,nz,filers,all,9,"$30,000 under $40,000",10561750.0,15in12ms.xls,K17,11,K,17 +370,2015_tab12_taxac_count_nz_all,2015,tab12,taxac,count,Income tax after credits — number of returns,nz,filers,all,10,"$40,000 under $50,000",9701526.0,15in12ms.xls,K18,11,K,18 +371,2015_tab12_taxac_count_nz_all,2015,tab12,taxac,count,Income tax after credits — number of returns,nz,filers,all,11,"$50,000 under $75,000",18683039.0,15in12ms.xls,K19,11,K,19 +372,2015_tab12_taxac_count_nz_all,2015,tab12,taxac,count,Income tax after credits — number of returns,nz,filers,all,12,"$75,000 under $100,000",12561202.0,15in12ms.xls,K20,11,K,20 +373,2015_tab12_taxac_count_nz_all,2015,tab12,taxac,count,Income tax after credits — number of returns,nz,filers,all,13,"$100,000 under $200,000",18399987.0,15in12ms.xls,K21,11,K,21 +374,2015_tab12_taxac_count_nz_all,2015,tab12,taxac,count,Income tax after credits — number of returns,nz,filers,all,14,"$200,000 under $500,000",5409762.0,15in12ms.xls,K22,11,K,22 +375,2015_tab12_taxac_count_nz_all,2015,tab12,taxac,count,Income tax after credits — number of returns,nz,filers,all,15,"$500,000 under $1,000,000",881330.0,15in12ms.xls,K23,11,K,23 +376,2015_tab12_taxac_count_nz_all,2015,tab12,taxac,count,Income tax after credits — number of returns,nz,filers,all,16,"$1,000,000 under $1,500,000",195087.0,15in12ms.xls,K24,11,K,24 +377,2015_tab12_taxac_count_nz_all,2015,tab12,taxac,count,Income tax after credits — number of returns,nz,filers,all,17,"$1,500,000 under $2,000,000",79731.0,15in12ms.xls,K25,11,K,25 +378,2015_tab12_taxac_count_nz_all,2015,tab12,taxac,count,Income tax after credits — number of returns,nz,filers,all,18,"$2,000,000 under $5,000,000",116288.0,15in12ms.xls,K26,11,K,26 +379,2015_tab12_taxac_count_nz_all,2015,tab12,taxac,count,Income tax after credits — number of returns,nz,filers,all,19,"$5,000,000 under $10,000,000",28583.0,15in12ms.xls,K27,11,K,27 +380,2015_tab12_taxac_count_nz_all,2015,tab12,taxac,count,Income tax after credits — number of returns,nz,filers,all,20,"$10,000,000 or more",18012.0,15in12ms.xls,K28,11,K,28 +381,2015_tab12_ti_amount_nz_all,2015,tab12,ti,amount,Taxable income,nz,filers,all,1,"All returns, total",7350295492000.0,15in12ms.xls,J9,10,J,9 +382,2015_tab12_ti_amount_nz_all,2015,tab12,ti,amount,Taxable income,nz,filers,all,2,No adjusted gross income,0.0,15in12ms.xls,J10,10,J,10 +383,2015_tab12_ti_amount_nz_all,2015,tab12,ti,amount,Taxable income,nz,filers,all,3,"$1 under $5,000",433802000.0,15in12ms.xls,J11,10,J,11 +384,2015_tab12_ti_amount_nz_all,2015,tab12,ti,amount,Taxable income,nz,filers,all,4,"$5,000 under $10,000",3654755000.0,15in12ms.xls,J12,10,J,12 +385,2015_tab12_ti_amount_nz_all,2015,tab12,ti,amount,Taxable income,nz,filers,all,5,"$10,000 under $15,000",17534933000.0,15in12ms.xls,J13,10,J,13 +386,2015_tab12_ti_amount_nz_all,2015,tab12,ti,amount,Taxable income,nz,filers,all,6,"$15,000 under $20,000",43206787000.0,15in12ms.xls,J14,10,J,14 +387,2015_tab12_ti_amount_nz_all,2015,tab12,ti,amount,Taxable income,nz,filers,all,7,"$20,000 under $25,000",71587937000.0,15in12ms.xls,J15,10,J,15 +388,2015_tab12_ti_amount_nz_all,2015,tab12,ti,amount,Taxable income,nz,filers,all,8,"$25,000 under $30,000",97548763000.0,15in12ms.xls,J16,10,J,16 +389,2015_tab12_ti_amount_nz_all,2015,tab12,ti,amount,Taxable income,nz,filers,all,9,"$30,000 under $40,000",258870165000.0,15in12ms.xls,J17,10,J,17 +390,2015_tab12_ti_amount_nz_all,2015,tab12,ti,amount,Taxable income,nz,filers,all,10,"$40,000 under $50,000",303324644000.0,15in12ms.xls,J18,10,J,18 +391,2015_tab12_ti_amount_nz_all,2015,tab12,ti,amount,Taxable income,nz,filers,all,11,"$50,000 under $75,000",799873339000.0,15in12ms.xls,J19,10,J,19 +392,2015_tab12_ti_amount_nz_all,2015,tab12,ti,amount,Taxable income,nz,filers,all,12,"$75,000 under $100,000",778011174000.0,15in12ms.xls,J20,10,J,20 +393,2015_tab12_ti_amount_nz_all,2015,tab12,ti,amount,Taxable income,nz,filers,all,13,"$100,000 under $200,000",1895870893000.0,15in12ms.xls,J21,10,J,21 +394,2015_tab12_ti_amount_nz_all,2015,tab12,ti,amount,Taxable income,nz,filers,all,14,"$200,000 under $500,000",1271631085000.0,15in12ms.xls,J22,10,J,22 +395,2015_tab12_ti_amount_nz_all,2015,tab12,ti,amount,Taxable income,nz,filers,all,15,"$500,000 under $1,000,000",527614042000.0,15in12ms.xls,J23,10,J,23 +396,2015_tab12_ti_amount_nz_all,2015,tab12,ti,amount,Taxable income,nz,filers,all,16,"$1,000,000 under $1,500,000",210041628000.0,15in12ms.xls,J24,10,J,24 +397,2015_tab12_ti_amount_nz_all,2015,tab12,ti,amount,Taxable income,nz,filers,all,17,"$1,500,000 under $2,000,000",122829421000.0,15in12ms.xls,J25,10,J,25 +398,2015_tab12_ti_amount_nz_all,2015,tab12,ti,amount,Taxable income,nz,filers,all,18,"$2,000,000 under $5,000,000",308993986000.0,15in12ms.xls,J26,10,J,26 +399,2015_tab12_ti_amount_nz_all,2015,tab12,ti,amount,Taxable income,nz,filers,all,19,"$5,000,000 under $10,000,000",173981577000.0,15in12ms.xls,J27,10,J,27 +400,2015_tab12_ti_amount_nz_all,2015,tab12,ti,amount,Taxable income,nz,filers,all,20,"$10,000,000 or more",465286561000.0,15in12ms.xls,J28,10,J,28 +401,2015_tab12_ti_count_nz_all,2015,tab12,ti,count,Taxable income — number of returns,nz,filers,all,1,"All returns, total",114871989.0,15in12ms.xls,I9,9,I,9 +402,2015_tab12_ti_count_nz_all,2015,tab12,ti,count,Taxable income — number of returns,nz,filers,all,2,No adjusted gross income,0.0,15in12ms.xls,I10,9,I,10 +403,2015_tab12_ti_count_nz_all,2015,tab12,ti,count,Taxable income — number of returns,nz,filers,all,3,"$1 under $5,000",355760.0,15in12ms.xls,I11,9,I,11 +404,2015_tab12_ti_count_nz_all,2015,tab12,ti,count,Taxable income — number of returns,nz,filers,all,4,"$5,000 under $10,000",1971291.0,15in12ms.xls,I12,9,I,12 +405,2015_tab12_ti_count_nz_all,2015,tab12,ti,count,Taxable income — number of returns,nz,filers,all,5,"$10,000 under $15,000",6085567.0,15in12ms.xls,I13,9,I,13 +406,2015_tab12_ti_count_nz_all,2015,tab12,ti,count,Taxable income — number of returns,nz,filers,all,6,"$15,000 under $20,000",6850887.0,15in12ms.xls,I14,9,I,14 +407,2015_tab12_ti_count_nz_all,2015,tab12,ti,count,Taxable income — number of returns,nz,filers,all,7,"$20,000 under $25,000",7851151.0,15in12ms.xls,I15,9,I,15 +408,2015_tab12_ti_count_nz_all,2015,tab12,ti,count,Taxable income — number of returns,nz,filers,all,8,"$25,000 under $30,000",7999445.0,15in12ms.xls,I16,9,I,16 +409,2015_tab12_ti_count_nz_all,2015,tab12,ti,count,Taxable income — number of returns,nz,filers,all,9,"$30,000 under $40,000",14358239.0,15in12ms.xls,I17,9,I,17 +410,2015_tab12_ti_count_nz_all,2015,tab12,ti,count,Taxable income — number of returns,nz,filers,all,10,"$40,000 under $50,000",11493776.0,15in12ms.xls,I18,9,I,18 +411,2015_tab12_ti_count_nz_all,2015,tab12,ti,count,Taxable income — number of returns,nz,filers,all,11,"$50,000 under $75,000",19872288.0,15in12ms.xls,I19,9,I,19 +412,2015_tab12_ti_count_nz_all,2015,tab12,ti,count,Taxable income — number of returns,nz,filers,all,12,"$75,000 under $100,000",12780368.0,15in12ms.xls,I20,9,I,20 +413,2015_tab12_ti_count_nz_all,2015,tab12,ti,count,Taxable income — number of returns,nz,filers,all,13,"$100,000 under $200,000",18510747.0,15in12ms.xls,I21,9,I,21 +414,2015_tab12_ti_count_nz_all,2015,tab12,ti,count,Taxable income — number of returns,nz,filers,all,14,"$200,000 under $500,000",5421049.0,15in12ms.xls,I22,9,I,22 +415,2015_tab12_ti_count_nz_all,2015,tab12,ti,count,Taxable income — number of returns,nz,filers,all,15,"$500,000 under $1,000,000",883020.0,15in12ms.xls,I23,9,I,23 +416,2015_tab12_ti_count_nz_all,2015,tab12,ti,count,Taxable income — number of returns,nz,filers,all,16,"$1,000,000 under $1,500,000",195466.0,15in12ms.xls,I24,9,I,24 +417,2015_tab12_ti_count_nz_all,2015,tab12,ti,count,Taxable income — number of returns,nz,filers,all,17,"$1,500,000 under $2,000,000",79839.0,15in12ms.xls,I25,9,I,25 +418,2015_tab12_ti_count_nz_all,2015,tab12,ti,count,Taxable income — number of returns,nz,filers,all,18,"$2,000,000 under $5,000,000",116452.0,15in12ms.xls,I26,9,I,26 +419,2015_tab12_ti_count_nz_all,2015,tab12,ti,count,Taxable income — number of returns,nz,filers,all,19,"$5,000,000 under $10,000,000",28614.0,15in12ms.xls,I27,9,I,27 +420,2015_tab12_ti_count_nz_all,2015,tab12,ti,count,Taxable income — number of returns,nz,filers,all,20,"$10,000,000 or more",18032.0,15in12ms.xls,I28,9,I,28 +421,2015_tab12_tottax_amount_nz_all,2015,tab12,tottax,amount,Total tax,nz,filers,all,1,"All returns, total",1457891441000.0,15in12ms.xls,N9,14,N,9 +422,2015_tab12_tottax_amount_nz_all,2015,tab12,tottax,amount,Total tax,nz,filers,all,2,No adjusted gross income,242459000.0,15in12ms.xls,N10,14,N,10 +423,2015_tab12_tottax_amount_nz_all,2015,tab12,tottax,amount,Total tax,nz,filers,all,3,"$1 under $5,000",40941000.0,15in12ms.xls,N11,14,N,11 +424,2015_tab12_tottax_amount_nz_all,2015,tab12,tottax,amount,Total tax,nz,filers,all,4,"$5,000 under $10,000",368015000.0,15in12ms.xls,N12,14,N,12 +425,2015_tab12_tottax_amount_nz_all,2015,tab12,tottax,amount,Total tax,nz,filers,all,5,"$10,000 under $15,000",1381283000.0,15in12ms.xls,N13,14,N,13 +426,2015_tab12_tottax_amount_nz_all,2015,tab12,tottax,amount,Total tax,nz,filers,all,6,"$15,000 under $20,000",3523850000.0,15in12ms.xls,N14,14,N,14 +427,2015_tab12_tottax_amount_nz_all,2015,tab12,tottax,amount,Total tax,nz,filers,all,7,"$20,000 under $25,000",6191130000.0,15in12ms.xls,N15,14,N,15 +428,2015_tab12_tottax_amount_nz_all,2015,tab12,tottax,amount,Total tax,nz,filers,all,8,"$25,000 under $30,000",8752589000.0,15in12ms.xls,N16,14,N,16 +429,2015_tab12_tottax_amount_nz_all,2015,tab12,tottax,amount,Total tax,nz,filers,all,9,"$30,000 under $40,000",25167676000.0,15in12ms.xls,N17,14,N,17 +430,2015_tab12_tottax_amount_nz_all,2015,tab12,tottax,amount,Total tax,nz,filers,all,10,"$40,000 under $50,000",32530207000.0,15in12ms.xls,N18,14,N,18 +431,2015_tab12_tottax_amount_nz_all,2015,tab12,tottax,amount,Total tax,nz,filers,all,11,"$50,000 under $75,000",99791796000.0,15in12ms.xls,N19,14,N,19 +432,2015_tab12_tottax_amount_nz_all,2015,tab12,tottax,amount,Total tax,nz,filers,all,12,"$75,000 under $100,000",105901459000.0,15in12ms.xls,N20,14,N,20 +433,2015_tab12_tottax_amount_nz_all,2015,tab12,tottax,amount,Total tax,nz,filers,all,13,"$100,000 under $200,000",316349637000.0,15in12ms.xls,N21,14,N,21 +434,2015_tab12_tottax_amount_nz_all,2015,tab12,tottax,amount,Total tax,nz,filers,all,14,"$200,000 under $500,000",299832203000.0,15in12ms.xls,N22,14,N,22 +435,2015_tab12_tottax_amount_nz_all,2015,tab12,tottax,amount,Total tax,nz,filers,all,15,"$500,000 under $1,000,000",154388762000.0,15in12ms.xls,N23,14,N,23 +436,2015_tab12_tottax_amount_nz_all,2015,tab12,tottax,amount,Total tax,nz,filers,all,16,"$1,000,000 under $1,500,000",66323590000.0,15in12ms.xls,N24,14,N,24 +437,2015_tab12_tottax_amount_nz_all,2015,tab12,tottax,amount,Total tax,nz,filers,all,17,"$1,500,000 under $2,000,000",39671617000.0,15in12ms.xls,N25,14,N,25 +438,2015_tab12_tottax_amount_nz_all,2015,tab12,tottax,amount,Total tax,nz,filers,all,18,"$2,000,000 under $5,000,000",101488542000.0,15in12ms.xls,N26,14,N,26 +439,2015_tab12_tottax_amount_nz_all,2015,tab12,tottax,amount,Total tax,nz,filers,all,19,"$5,000,000 under $10,000,000",56334403000.0,15in12ms.xls,N27,14,N,27 +440,2015_tab12_tottax_amount_nz_all,2015,tab12,tottax,amount,Total tax,nz,filers,all,20,"$10,000,000 or more",139611281000.0,15in12ms.xls,N28,14,N,28 +441,2015_tab12_tottax_count_nz_all,2015,tab12,tottax,count,Total tax — number of returns,nz,filers,all,1,"All returns, total",99040729.0,15in12ms.xls,M9,13,M,9 +442,2015_tab12_tottax_count_nz_all,2015,tab12,tottax,count,Total tax — number of returns,nz,filers,all,2,No adjusted gross income,6640.0,15in12ms.xls,M10,13,M,10 +443,2015_tab12_tottax_count_nz_all,2015,tab12,tottax,count,Total tax — number of returns,nz,filers,all,3,"$1 under $5,000",199682.0,15in12ms.xls,M11,13,M,11 +444,2015_tab12_tottax_count_nz_all,2015,tab12,tottax,count,Total tax — number of returns,nz,filers,all,4,"$5,000 under $10,000",1926254.0,15in12ms.xls,M12,13,M,12 +445,2015_tab12_tottax_count_nz_all,2015,tab12,tottax,count,Total tax — number of returns,nz,filers,all,5,"$10,000 under $15,000",4333058.0,15in12ms.xls,M13,13,M,13 +446,2015_tab12_tottax_count_nz_all,2015,tab12,tottax,count,Total tax — number of returns,nz,filers,all,6,"$15,000 under $20,000",5195436.0,15in12ms.xls,M14,13,M,14 +447,2015_tab12_tottax_count_nz_all,2015,tab12,tottax,count,Total tax — number of returns,nz,filers,all,7,"$20,000 under $25,000",5404801.0,15in12ms.xls,M15,13,M,15 +448,2015_tab12_tottax_count_nz_all,2015,tab12,tottax,count,Total tax — number of returns,nz,filers,all,8,"$25,000 under $30,000",5319345.0,15in12ms.xls,M16,13,M,16 +449,2015_tab12_tottax_count_nz_all,2015,tab12,tottax,count,Total tax — number of returns,nz,filers,all,9,"$30,000 under $40,000",10563700.0,15in12ms.xls,M17,13,M,17 +450,2015_tab12_tottax_count_nz_all,2015,tab12,tottax,count,Total tax — number of returns,nz,filers,all,10,"$40,000 under $50,000",9702501.0,15in12ms.xls,M18,13,M,18 +451,2015_tab12_tottax_count_nz_all,2015,tab12,tottax,count,Total tax — number of returns,nz,filers,all,11,"$50,000 under $75,000",18684013.0,15in12ms.xls,M19,13,M,19 +452,2015_tab12_tottax_count_nz_all,2015,tab12,tottax,count,Total tax — number of returns,nz,filers,all,12,"$75,000 under $100,000",12562177.0,15in12ms.xls,M20,13,M,20 +453,2015_tab12_tottax_count_nz_all,2015,tab12,tottax,count,Total tax — number of returns,nz,filers,all,13,"$100,000 under $200,000",18402358.0,15in12ms.xls,M21,13,M,21 +454,2015_tab12_tottax_count_nz_all,2015,tab12,tottax,count,Total tax — number of returns,nz,filers,all,14,"$200,000 under $500,000",5418598.0,15in12ms.xls,M22,13,M,22 +455,2015_tab12_tottax_count_nz_all,2015,tab12,tottax,count,Total tax — number of returns,nz,filers,all,15,"$500,000 under $1,000,000",883288.0,15in12ms.xls,M23,13,M,23 +456,2015_tab12_tottax_count_nz_all,2015,tab12,tottax,count,Total tax — number of returns,nz,filers,all,16,"$1,000,000 under $1,500,000",195676.0,15in12ms.xls,M24,13,M,24 +457,2015_tab12_tottax_count_nz_all,2015,tab12,tottax,count,Total tax — number of returns,nz,filers,all,17,"$1,500,000 under $2,000,000",79884.0,15in12ms.xls,M25,13,M,25 +458,2015_tab12_tottax_count_nz_all,2015,tab12,tottax,count,Total tax — number of returns,nz,filers,all,18,"$2,000,000 under $5,000,000",116605.0,15in12ms.xls,M26,13,M,26 +459,2015_tab12_tottax_count_nz_all,2015,tab12,tottax,count,Total tax — number of returns,nz,filers,all,19,"$5,000,000 under $10,000,000",28655.0,15in12ms.xls,M27,13,M,27 +460,2015_tab12_tottax_count_nz_all,2015,tab12,tottax,count,Total tax — number of returns,nz,filers,all,20,"$10,000,000 or more",18057.0,15in12ms.xls,M28,13,M,28 +461,2015_tab14_agi_amount_all_all,2015,tab14,agi,amount,Adjusted gross income,all,filers,all,1,"All returns, total",10210310102000.0,15in14ar.xls,C9,3,C,9 +462,2015_tab14_agi_amount_all_all,2015,tab14,agi,amount,Adjusted gross income,all,filers,all,2,No adjusted gross income,-203775058000.0,15in14ar.xls,C10,3,C,10 +463,2015_tab14_agi_amount_all_all,2015,tab14,agi,amount,Adjusted gross income,all,filers,all,3,"$1 under $5,000",26240797000.0,15in14ar.xls,C11,3,C,11 +464,2015_tab14_agi_amount_all_all,2015,tab14,agi,amount,Adjusted gross income,all,filers,all,4,"$5,000 under $10,000",86411986000.0,15in14ar.xls,C12,3,C,12 +465,2015_tab14_agi_amount_all_all,2015,tab14,agi,amount,Adjusted gross income,all,filers,all,5,"$10,000 under $15,000",152752468000.0,15in14ar.xls,C13,3,C,13 +466,2015_tab14_agi_amount_all_all,2015,tab14,agi,amount,Adjusted gross income,all,filers,all,6,"$15,000 under $20,000",195857688000.0,15in14ar.xls,C14,3,C,14 +467,2015_tab14_agi_amount_all_all,2015,tab14,agi,amount,Adjusted gross income,all,filers,all,7,"$20,000 under $25,000",224230854000.0,15in14ar.xls,C15,3,C,15 +468,2015_tab14_agi_amount_all_all,2015,tab14,agi,amount,Adjusted gross income,all,filers,all,8,"$25,000 under $30,000",242572775000.0,15in14ar.xls,C16,3,C,16 +469,2015_tab14_agi_amount_all_all,2015,tab14,agi,amount,Adjusted gross income,all,filers,all,9,"$30,000 under $40,000",519525813000.0,15in14ar.xls,C17,3,C,17 +470,2015_tab14_agi_amount_all_all,2015,tab14,agi,amount,Adjusted gross income,all,filers,all,10,"$40,000 under $50,000",520845982000.0,15in14ar.xls,C18,3,C,18 +471,2015_tab14_agi_amount_all_all,2015,tab14,agi,amount,Adjusted gross income,all,filers,all,11,"$50,000 under $75,000",1228299087000.0,15in14ar.xls,C19,3,C,19 +472,2015_tab14_agi_amount_all_all,2015,tab14,agi,amount,Adjusted gross income,all,filers,all,12,"$75,000 under $100,000",1111174843000.0,15in14ar.xls,C20,3,C,20 +473,2015_tab14_agi_amount_all_all,2015,tab14,agi,amount,Adjusted gross income,all,filers,all,13,"$100,000 under $200,000",2506497828000.0,15in14ar.xls,C21,3,C,21 +474,2015_tab14_agi_amount_all_all,2015,tab14,agi,amount,Adjusted gross income,all,filers,all,14,"$200,000 under $500,000",1546515483000.0,15in14ar.xls,C22,3,C,22 +475,2015_tab14_agi_amount_all_all,2015,tab14,agi,amount,Adjusted gross income,all,filers,all,15,"$500,000 under $1,000,000",597676645000.0,15in14ar.xls,C23,3,C,23 +476,2015_tab14_agi_amount_all_all,2015,tab14,agi,amount,Adjusted gross income,all,filers,all,16,"$1,000,000 under $1,500,000",236499605000.0,15in14ar.xls,C24,3,C,24 +477,2015_tab14_agi_amount_all_all,2015,tab14,agi,amount,Adjusted gross income,all,filers,all,17,"$1,500,000 under $2,000,000",137686352000.0,15in14ar.xls,C25,3,C,25 +478,2015_tab14_agi_amount_all_all,2015,tab14,agi,amount,Adjusted gross income,all,filers,all,18,"$2,000,000 under $5,000,000",346864436000.0,15in14ar.xls,C26,3,C,26 +479,2015_tab14_agi_amount_all_all,2015,tab14,agi,amount,Adjusted gross income,all,filers,all,19,"$5,000,000 under $10,000,000",195661353000.0,15in14ar.xls,C27,3,C,27 +480,2015_tab14_agi_amount_all_all,2015,tab14,agi,amount,Adjusted gross income,all,filers,all,20,"$10,000,000 or more",538771166000.0,15in14ar.xls,C28,3,C,28 +481,2015_tab14_agi_count_all_all,2015,tab14,agi,count,Number of returns,all,filers,all,1,"All returns, total",150493263.0,15in14ar.xls,B9,2,B,9 +482,2015_tab14_agi_count_all_all,2015,tab14,agi,count,Number of returns,all,filers,all,2,No adjusted gross income,2072066.0,15in14ar.xls,B10,2,B,10 +483,2015_tab14_agi_count_all_all,2015,tab14,agi,count,Number of returns,all,filers,all,3,"$1 under $5,000",10134703.0,15in14ar.xls,B11,2,B,11 +484,2015_tab14_agi_count_all_all,2015,tab14,agi,count,Number of returns,all,filers,all,4,"$5,000 under $10,000",11398595.0,15in14ar.xls,B12,2,B,12 +485,2015_tab14_agi_count_all_all,2015,tab14,agi,count,Number of returns,all,filers,all,5,"$10,000 under $15,000",12219481.0,15in14ar.xls,B13,2,B,13 +486,2015_tab14_agi_count_all_all,2015,tab14,agi,count,Number of returns,all,filers,all,6,"$15,000 under $20,000",11228447.0,15in14ar.xls,B14,2,B,14 +487,2015_tab14_agi_count_all_all,2015,tab14,agi,count,Number of returns,all,filers,all,7,"$20,000 under $25,000",9981450.0,15in14ar.xls,B15,2,B,15 +488,2015_tab14_agi_count_all_all,2015,tab14,agi,count,Number of returns,all,filers,all,8,"$25,000 under $30,000",8832875.0,15in14ar.xls,B16,2,B,16 +489,2015_tab14_agi_count_all_all,2015,tab14,agi,count,Number of returns,all,filers,all,9,"$30,000 under $40,000",14913880.0,15in14ar.xls,B17,2,B,17 +490,2015_tab14_agi_count_all_all,2015,tab14,agi,count,Number of returns,all,filers,all,10,"$40,000 under $50,000",11625418.0,15in14ar.xls,B18,2,B,18 +491,2015_tab14_agi_count_all_all,2015,tab14,agi,count,Number of returns,all,filers,all,11,"$50,000 under $75,000",19980117.0,15in14ar.xls,B19,2,B,19 +492,2015_tab14_agi_count_all_all,2015,tab14,agi,count,Number of returns,all,filers,all,12,"$75,000 under $100,000",12821791.0,15in14ar.xls,B20,2,B,20 +493,2015_tab14_agi_count_all_all,2015,tab14,agi,count,Number of returns,all,filers,all,13,"$100,000 under $200,000",18532593.0,15in14ar.xls,B21,2,B,21 +494,2015_tab14_agi_count_all_all,2015,tab14,agi,count,Number of returns,all,filers,all,14,"$200,000 under $500,000",5428176.0,15in14ar.xls,B22,2,B,22 +495,2015_tab14_agi_count_all_all,2015,tab14,agi,count,Number of returns,all,filers,all,15,"$500,000 under $1,000,000",884335.0,15in14ar.xls,B23,2,B,23 +496,2015_tab14_agi_count_all_all,2015,tab14,agi,count,Number of returns,all,filers,all,16,"$1,000,000 under $1,500,000",195905.0,15in14ar.xls,B24,2,B,24 +497,2015_tab14_agi_count_all_all,2015,tab14,agi,count,Number of returns,all,filers,all,17,"$1,500,000 under $2,000,000",79971.0,15in14ar.xls,B25,2,B,25 +498,2015_tab14_agi_count_all_all,2015,tab14,agi,count,Number of returns,all,filers,all,18,"$2,000,000 under $5,000,000",116718.0,15in14ar.xls,B26,2,B,26 +499,2015_tab14_agi_count_all_all,2015,tab14,agi,count,Number of returns,all,filers,all,19,"$5,000,000 under $10,000,000",28680.0,15in14ar.xls,B27,2,B,27 +500,2015_tab14_agi_count_all_all,2015,tab14,agi,count,Number of returns,all,filers,all,20,"$10,000,000 or more",18061.0,15in14ar.xls,B28,2,B,28 +501,2015_tab14_amt_amount_nz_all,2015,tab14,amt,amount,Alternative minimum tax,nz,filers,all,1,"All returns, total",31165616000.0,15in14ar.xls,EE9,135,EE,9 +502,2015_tab14_amt_amount_nz_all,2015,tab14,amt,amount,Alternative minimum tax,nz,filers,all,2,No adjusted gross income,263639000.0,15in14ar.xls,EE10,135,EE,10 +503,2015_tab14_amt_amount_nz_all,2015,tab14,amt,amount,Alternative minimum tax,nz,filers,all,3,"$1 under $5,000",3065000.0,15in14ar.xls,EE11,135,EE,11 +504,2015_tab14_amt_amount_nz_all,2015,tab14,amt,amount,Alternative minimum tax,nz,filers,all,4,"$5,000 under $10,000",7028000.0,15in14ar.xls,EE12,135,EE,12 +505,2015_tab14_amt_amount_nz_all,2015,tab14,amt,amount,Alternative minimum tax,nz,filers,all,5,"$10,000 under $15,000",372000.0,15in14ar.xls,EE13,135,EE,13 +506,2015_tab14_amt_amount_nz_all,2015,tab14,amt,amount,Alternative minimum tax,nz,filers,all,6,"$15,000 under $20,000",1900000.0,15in14ar.xls,EE14,135,EE,14 +507,2015_tab14_amt_amount_nz_all,2015,tab14,amt,amount,Alternative minimum tax,nz,filers,all,7,"$20,000 under $25,000",1816000.0,15in14ar.xls,EE15,135,EE,15 +508,2015_tab14_amt_amount_nz_all,2015,tab14,amt,amount,Alternative minimum tax,nz,filers,all,8,"$25,000 under $30,000",11832000.0,15in14ar.xls,EE16,135,EE,16 +509,2015_tab14_amt_amount_nz_all,2015,tab14,amt,amount,Alternative minimum tax,nz,filers,all,9,"$30,000 under $40,000",9877000.0,15in14ar.xls,EE17,135,EE,17 +510,2015_tab14_amt_amount_nz_all,2015,tab14,amt,amount,Alternative minimum tax,nz,filers,all,10,"$40,000 under $50,000",10880000.0,15in14ar.xls,EE18,135,EE,18 +511,2015_tab14_amt_amount_nz_all,2015,tab14,amt,amount,Alternative minimum tax,nz,filers,all,11,"$50,000 under $75,000",51299000.0,15in14ar.xls,EE19,135,EE,19 +512,2015_tab14_amt_amount_nz_all,2015,tab14,amt,amount,Alternative minimum tax,nz,filers,all,12,"$75,000 under $100,000",115377000.0,15in14ar.xls,EE20,135,EE,20 +513,2015_tab14_amt_amount_nz_all,2015,tab14,amt,amount,Alternative minimum tax,nz,filers,all,13,"$100,000 under $200,000",1490373000.0,15in14ar.xls,EE21,135,EE,21 +514,2015_tab14_amt_amount_nz_all,2015,tab14,amt,amount,Alternative minimum tax,nz,filers,all,14,"$200,000 under $500,000",16510191000.0,15in14ar.xls,EE22,135,EE,22 +515,2015_tab14_amt_amount_nz_all,2015,tab14,amt,amount,Alternative minimum tax,nz,filers,all,15,"$500,000 under $1,000,000",5414951000.0,15in14ar.xls,EE23,135,EE,23 +516,2015_tab14_amt_amount_nz_all,2015,tab14,amt,amount,Alternative minimum tax,nz,filers,all,16,"$1,000,000 under $1,500,000",1207369000.0,15in14ar.xls,EE24,135,EE,24 +517,2015_tab14_amt_amount_nz_all,2015,tab14,amt,amount,Alternative minimum tax,nz,filers,all,17,"$1,500,000 under $2,000,000",680282000.0,15in14ar.xls,EE25,135,EE,25 +518,2015_tab14_amt_amount_nz_all,2015,tab14,amt,amount,Alternative minimum tax,nz,filers,all,18,"$2,000,000 under $5,000,000",1599151000.0,15in14ar.xls,EE26,135,EE,26 +519,2015_tab14_amt_amount_nz_all,2015,tab14,amt,amount,Alternative minimum tax,nz,filers,all,19,"$5,000,000 under $10,000,000",898704000.0,15in14ar.xls,EE27,135,EE,27 +520,2015_tab14_amt_amount_nz_all,2015,tab14,amt,amount,Alternative minimum tax,nz,filers,all,20,"$10,000,000 or more",2887510000.0,15in14ar.xls,EE28,135,EE,28 +521,2015_tab14_amt_count_nz_all,2015,tab14,amt,count,Alternative minimum tax — number of returns,nz,filers,all,1,"All returns, total",4467806.0,15in14ar.xls,ED9,134,ED,9 +522,2015_tab14_amt_count_nz_all,2015,tab14,amt,count,Alternative minimum tax — number of returns,nz,filers,all,2,No adjusted gross income,7177.0,15in14ar.xls,ED10,134,ED,10 +523,2015_tab14_amt_count_nz_all,2015,tab14,amt,count,Alternative minimum tax — number of returns,nz,filers,all,3,"$1 under $5,000",1142.0,15in14ar.xls,ED11,134,ED,11 +524,2015_tab14_amt_count_nz_all,2015,tab14,amt,count,Alternative minimum tax — number of returns,nz,filers,all,4,"$5,000 under $10,000",1036.0,15in14ar.xls,ED12,134,ED,12 +525,2015_tab14_amt_count_nz_all,2015,tab14,amt,count,Alternative minimum tax — number of returns,nz,filers,all,5,"$10,000 under $15,000",1011.0,15in14ar.xls,ED13,134,ED,13 +526,2015_tab14_amt_count_nz_all,2015,tab14,amt,count,Alternative minimum tax — number of returns,nz,filers,all,6,"$15,000 under $20,000",1037.0,15in14ar.xls,ED14,134,ED,14 +527,2015_tab14_amt_count_nz_all,2015,tab14,amt,count,Alternative minimum tax — number of returns,nz,filers,all,7,"$20,000 under $25,000",2070.0,15in14ar.xls,ED15,134,ED,15 +528,2015_tab14_amt_count_nz_all,2015,tab14,amt,count,Alternative minimum tax — number of returns,nz,filers,all,8,"$25,000 under $30,000",1614.0,15in14ar.xls,ED16,134,ED,16 +529,2015_tab14_amt_count_nz_all,2015,tab14,amt,count,Alternative minimum tax — number of returns,nz,filers,all,9,"$30,000 under $40,000",3577.0,15in14ar.xls,ED17,134,ED,17 +530,2015_tab14_amt_count_nz_all,2015,tab14,amt,count,Alternative minimum tax — number of returns,nz,filers,all,10,"$40,000 under $50,000",2279.0,15in14ar.xls,ED18,134,ED,18 +531,2015_tab14_amt_count_nz_all,2015,tab14,amt,count,Alternative minimum tax — number of returns,nz,filers,all,11,"$50,000 under $75,000",33879.0,15in14ar.xls,ED19,134,ED,19 +532,2015_tab14_amt_count_nz_all,2015,tab14,amt,count,Alternative minimum tax — number of returns,nz,filers,all,12,"$75,000 under $100,000",83418.0,15in14ar.xls,ED20,134,ED,20 +533,2015_tab14_amt_count_nz_all,2015,tab14,amt,count,Alternative minimum tax — number of returns,nz,filers,all,13,"$100,000 under $200,000",617682.0,15in14ar.xls,ED21,134,ED,21 +534,2015_tab14_amt_count_nz_all,2015,tab14,amt,count,Alternative minimum tax — number of returns,nz,filers,all,14,"$200,000 under $500,000",3220348.0,15in14ar.xls,ED22,134,ED,22 +535,2015_tab14_amt_count_nz_all,2015,tab14,amt,count,Alternative minimum tax — number of returns,nz,filers,all,15,"$500,000 under $1,000,000",407046.0,15in14ar.xls,ED23,134,ED,23 +536,2015_tab14_amt_count_nz_all,2015,tab14,amt,count,Alternative minimum tax — number of returns,nz,filers,all,16,"$1,000,000 under $1,500,000",37864.0,15in14ar.xls,ED24,134,ED,24 +537,2015_tab14_amt_count_nz_all,2015,tab14,amt,count,Alternative minimum tax — number of returns,nz,filers,all,17,"$1,500,000 under $2,000,000",14534.0,15in14ar.xls,ED25,134,ED,25 +538,2015_tab14_amt_count_nz_all,2015,tab14,amt,count,Alternative minimum tax — number of returns,nz,filers,all,18,"$2,000,000 under $5,000,000",21597.0,15in14ar.xls,ED26,134,ED,26 +539,2015_tab14_amt_count_nz_all,2015,tab14,amt,count,Alternative minimum tax — number of returns,nz,filers,all,19,"$5,000,000 under $10,000,000",5906.0,15in14ar.xls,ED27,134,ED,27 +540,2015_tab14_amt_count_nz_all,2015,tab14,amt,count,Alternative minimum tax — number of returns,nz,filers,all,20,"$10,000,000 or more",4587.0,15in14ar.xls,ED28,134,ED,28 +541,2015_tab14_busprofincome_amount_gt0_all,2015,tab14,busprofincome,amount,Business net income (profit),gt0,filers,all,1,"All returns, total",391975736000.0,15in14ar.xls,U9,21,U,9 +542,2015_tab14_busprofincome_amount_gt0_all,2015,tab14,busprofincome,amount,Business net income (profit),gt0,filers,all,2,No adjusted gross income,4057263000.0,15in14ar.xls,U10,21,U,10 +543,2015_tab14_busprofincome_amount_gt0_all,2015,tab14,busprofincome,amount,Business net income (profit),gt0,filers,all,3,"$1 under $5,000",3620847000.0,15in14ar.xls,U11,21,U,11 +544,2015_tab14_busprofincome_amount_gt0_all,2015,tab14,busprofincome,amount,Business net income (profit),gt0,filers,all,4,"$5,000 under $10,000",12895688000.0,15in14ar.xls,U12,21,U,12 +545,2015_tab14_busprofincome_amount_gt0_all,2015,tab14,busprofincome,amount,Business net income (profit),gt0,filers,all,5,"$10,000 under $15,000",24401379000.0,15in14ar.xls,U13,21,U,13 +546,2015_tab14_busprofincome_amount_gt0_all,2015,tab14,busprofincome,amount,Business net income (profit),gt0,filers,all,6,"$15,000 under $20,000",18943319000.0,15in14ar.xls,U14,21,U,14 +547,2015_tab14_busprofincome_amount_gt0_all,2015,tab14,busprofincome,amount,Business net income (profit),gt0,filers,all,7,"$20,000 under $25,000",13222482000.0,15in14ar.xls,U15,21,U,15 +548,2015_tab14_busprofincome_amount_gt0_all,2015,tab14,busprofincome,amount,Business net income (profit),gt0,filers,all,8,"$25,000 under $30,000",11435760000.0,15in14ar.xls,U16,21,U,16 +549,2015_tab14_busprofincome_amount_gt0_all,2015,tab14,busprofincome,amount,Business net income (profit),gt0,filers,all,9,"$30,000 under $40,000",21209538000.0,15in14ar.xls,U17,21,U,17 +550,2015_tab14_busprofincome_amount_gt0_all,2015,tab14,busprofincome,amount,Business net income (profit),gt0,filers,all,10,"$40,000 under $50,000",16756939000.0,15in14ar.xls,U18,21,U,18 +551,2015_tab14_busprofincome_amount_gt0_all,2015,tab14,busprofincome,amount,Business net income (profit),gt0,filers,all,11,"$50,000 under $75,000",34762519000.0,15in14ar.xls,U19,21,U,19 +552,2015_tab14_busprofincome_amount_gt0_all,2015,tab14,busprofincome,amount,Business net income (profit),gt0,filers,all,12,"$75,000 under $100,000",30010398000.0,15in14ar.xls,U20,21,U,20 +553,2015_tab14_busprofincome_amount_gt0_all,2015,tab14,busprofincome,amount,Business net income (profit),gt0,filers,all,13,"$100,000 under $200,000",75753230000.0,15in14ar.xls,U21,21,U,21 +554,2015_tab14_busprofincome_amount_gt0_all,2015,tab14,busprofincome,amount,Business net income (profit),gt0,filers,all,14,"$200,000 under $500,000",70271445000.0,15in14ar.xls,U22,21,U,22 +555,2015_tab14_busprofincome_amount_gt0_all,2015,tab14,busprofincome,amount,Business net income (profit),gt0,filers,all,15,"$500,000 under $1,000,000",25065426000.0,15in14ar.xls,U23,21,U,23 +556,2015_tab14_busprofincome_amount_gt0_all,2015,tab14,busprofincome,amount,Business net income (profit),gt0,filers,all,16,"$1,000,000 under $1,500,000",8889443000.0,15in14ar.xls,U24,21,U,24 +557,2015_tab14_busprofincome_amount_gt0_all,2015,tab14,busprofincome,amount,Business net income (profit),gt0,filers,all,17,"$1,500,000 under $2,000,000",4087303000.0,15in14ar.xls,U25,21,U,25 +558,2015_tab14_busprofincome_amount_gt0_all,2015,tab14,busprofincome,amount,Business net income (profit),gt0,filers,all,18,"$2,000,000 under $5,000,000",8304335000.0,15in14ar.xls,U26,21,U,26 +559,2015_tab14_busprofincome_amount_gt0_all,2015,tab14,busprofincome,amount,Business net income (profit),gt0,filers,all,19,"$5,000,000 under $10,000,000",3422426000.0,15in14ar.xls,U27,21,U,27 +560,2015_tab14_busprofincome_amount_gt0_all,2015,tab14,busprofincome,amount,Business net income (profit),gt0,filers,all,20,"$10,000,000 or more",4865995000.0,15in14ar.xls,U28,21,U,28 +561,2015_tab14_busprofincome_amount_lt0_all,2015,tab14,busprofincome,amount,Business net loss,lt0,filers,all,1,"All returns, total",60161435000.0,15in14ar.xls,W9,23,W,9 +562,2015_tab14_busprofincome_amount_lt0_all,2015,tab14,busprofincome,amount,Business net loss,lt0,filers,all,2,No adjusted gross income,12157756000.0,15in14ar.xls,W10,23,W,10 +563,2015_tab14_busprofincome_amount_lt0_all,2015,tab14,busprofincome,amount,Business net loss,lt0,filers,all,3,"$1 under $5,000",865618000.0,15in14ar.xls,W11,23,W,11 +564,2015_tab14_busprofincome_amount_lt0_all,2015,tab14,busprofincome,amount,Business net loss,lt0,filers,all,4,"$5,000 under $10,000",1460706000.0,15in14ar.xls,W12,23,W,12 +565,2015_tab14_busprofincome_amount_lt0_all,2015,tab14,busprofincome,amount,Business net loss,lt0,filers,all,5,"$10,000 under $15,000",2411493000.0,15in14ar.xls,W13,23,W,13 +566,2015_tab14_busprofincome_amount_lt0_all,2015,tab14,busprofincome,amount,Business net loss,lt0,filers,all,6,"$15,000 under $20,000",3467702000.0,15in14ar.xls,W14,23,W,14 +567,2015_tab14_busprofincome_amount_lt0_all,2015,tab14,busprofincome,amount,Business net loss,lt0,filers,all,7,"$20,000 under $25,000",3067186000.0,15in14ar.xls,W15,23,W,15 +568,2015_tab14_busprofincome_amount_lt0_all,2015,tab14,busprofincome,amount,Business net loss,lt0,filers,all,8,"$25,000 under $30,000",2973206000.0,15in14ar.xls,W16,23,W,16 +569,2015_tab14_busprofincome_amount_lt0_all,2015,tab14,busprofincome,amount,Business net loss,lt0,filers,all,9,"$30,000 under $40,000",3929244000.0,15in14ar.xls,W17,23,W,17 +570,2015_tab14_busprofincome_amount_lt0_all,2015,tab14,busprofincome,amount,Business net loss,lt0,filers,all,10,"$40,000 under $50,000",3386681000.0,15in14ar.xls,W18,23,W,18 +571,2015_tab14_busprofincome_amount_lt0_all,2015,tab14,busprofincome,amount,Business net loss,lt0,filers,all,11,"$50,000 under $75,000",5767819000.0,15in14ar.xls,W19,23,W,19 +572,2015_tab14_busprofincome_amount_lt0_all,2015,tab14,busprofincome,amount,Business net loss,lt0,filers,all,12,"$75,000 under $100,000",4253862000.0,15in14ar.xls,W20,23,W,20 +573,2015_tab14_busprofincome_amount_lt0_all,2015,tab14,busprofincome,amount,Business net loss,lt0,filers,all,13,"$100,000 under $200,000",7646665000.0,15in14ar.xls,W21,23,W,21 +574,2015_tab14_busprofincome_amount_lt0_all,2015,tab14,busprofincome,amount,Business net loss,lt0,filers,all,14,"$200,000 under $500,000",3726278000.0,15in14ar.xls,W22,23,W,22 +575,2015_tab14_busprofincome_amount_lt0_all,2015,tab14,busprofincome,amount,Business net loss,lt0,filers,all,15,"$500,000 under $1,000,000",1320995000.0,15in14ar.xls,W23,23,W,23 +576,2015_tab14_busprofincome_amount_lt0_all,2015,tab14,busprofincome,amount,Business net loss,lt0,filers,all,16,"$1,000,000 under $1,500,000",593080000.0,15in14ar.xls,W24,23,W,24 +577,2015_tab14_busprofincome_amount_lt0_all,2015,tab14,busprofincome,amount,Business net loss,lt0,filers,all,17,"$1,500,000 under $2,000,000",392245000.0,15in14ar.xls,W25,23,W,25 +578,2015_tab14_busprofincome_amount_lt0_all,2015,tab14,busprofincome,amount,Business net loss,lt0,filers,all,18,"$2,000,000 under $5,000,000",959470000.0,15in14ar.xls,W26,23,W,26 +579,2015_tab14_busprofincome_amount_lt0_all,2015,tab14,busprofincome,amount,Business net loss,lt0,filers,all,19,"$5,000,000 under $10,000,000",481125000.0,15in14ar.xls,W27,23,W,27 +580,2015_tab14_busprofincome_amount_lt0_all,2015,tab14,busprofincome,amount,Business net loss,lt0,filers,all,20,"$10,000,000 or more",1300305000.0,15in14ar.xls,W28,23,W,28 +581,2015_tab14_busprofincome_count_gt0_all,2015,tab14,busprofincome,count,Business income — number of returns with profit,gt0,filers,all,1,"All returns, total",18791200.0,15in14ar.xls,T9,20,T,9 +582,2015_tab14_busprofincome_count_gt0_all,2015,tab14,busprofincome,count,Business income — number of returns with profit,gt0,filers,all,2,No adjusted gross income,237120.0,15in14ar.xls,T10,20,T,10 +583,2015_tab14_busprofincome_count_gt0_all,2015,tab14,busprofincome,count,Business income — number of returns with profit,gt0,filers,all,3,"$1 under $5,000",1275335.0,15in14ar.xls,T11,20,T,11 +584,2015_tab14_busprofincome_count_gt0_all,2015,tab14,busprofincome,count,Business income — number of returns with profit,gt0,filers,all,4,"$5,000 under $10,000",1847196.0,15in14ar.xls,T12,20,T,12 +585,2015_tab14_busprofincome_count_gt0_all,2015,tab14,busprofincome,count,Business income — number of returns with profit,gt0,filers,all,5,"$10,000 under $15,000",2430904.0,15in14ar.xls,T13,20,T,13 +586,2015_tab14_busprofincome_count_gt0_all,2015,tab14,busprofincome,count,Business income — number of returns with profit,gt0,filers,all,6,"$15,000 under $20,000",1551550.0,15in14ar.xls,T14,20,T,14 +587,2015_tab14_busprofincome_count_gt0_all,2015,tab14,busprofincome,count,Business income — number of returns with profit,gt0,filers,all,7,"$20,000 under $25,000",940440.0,15in14ar.xls,T15,20,T,15 +588,2015_tab14_busprofincome_count_gt0_all,2015,tab14,busprofincome,count,Business income — number of returns with profit,gt0,filers,all,8,"$25,000 under $30,000",746527.0,15in14ar.xls,T16,20,T,16 +589,2015_tab14_busprofincome_count_gt0_all,2015,tab14,busprofincome,count,Business income — number of returns with profit,gt0,filers,all,9,"$30,000 under $40,000",1369005.0,15in14ar.xls,T17,20,T,17 +590,2015_tab14_busprofincome_count_gt0_all,2015,tab14,busprofincome,count,Business income — number of returns with profit,gt0,filers,all,10,"$40,000 under $50,000",1028493.0,15in14ar.xls,T18,20,T,18 +591,2015_tab14_busprofincome_count_gt0_all,2015,tab14,busprofincome,count,Business income — number of returns with profit,gt0,filers,all,11,"$50,000 under $75,000",2076929.0,15in14ar.xls,T19,20,T,19 +592,2015_tab14_busprofincome_count_gt0_all,2015,tab14,busprofincome,count,Business income — number of returns with profit,gt0,filers,all,12,"$75,000 under $100,000",1521248.0,15in14ar.xls,T20,20,T,20 +593,2015_tab14_busprofincome_count_gt0_all,2015,tab14,busprofincome,count,Business income — number of returns with profit,gt0,filers,all,13,"$100,000 under $200,000",2546650.0,15in14ar.xls,T21,20,T,21 +594,2015_tab14_busprofincome_count_gt0_all,2015,tab14,busprofincome,count,Business income — number of returns with profit,gt0,filers,all,14,"$200,000 under $500,000",960730.0,15in14ar.xls,T22,20,T,22 +595,2015_tab14_busprofincome_count_gt0_all,2015,tab14,busprofincome,count,Business income — number of returns with profit,gt0,filers,all,15,"$500,000 under $1,000,000",177361.0,15in14ar.xls,T23,20,T,23 +596,2015_tab14_busprofincome_count_gt0_all,2015,tab14,busprofincome,count,Business income — number of returns with profit,gt0,filers,all,16,"$1,000,000 under $1,500,000",38755.0,15in14ar.xls,T24,20,T,24 +597,2015_tab14_busprofincome_count_gt0_all,2015,tab14,busprofincome,count,Business income — number of returns with profit,gt0,filers,all,17,"$1,500,000 under $2,000,000",14068.0,15in14ar.xls,T25,20,T,25 +598,2015_tab14_busprofincome_count_gt0_all,2015,tab14,busprofincome,count,Business income — number of returns with profit,gt0,filers,all,18,"$2,000,000 under $5,000,000",20890.0,15in14ar.xls,T26,20,T,26 +599,2015_tab14_busprofincome_count_gt0_all,2015,tab14,busprofincome,count,Business income — number of returns with profit,gt0,filers,all,19,"$5,000,000 under $10,000,000",4887.0,15in14ar.xls,T27,20,T,27 +600,2015_tab14_busprofincome_count_gt0_all,2015,tab14,busprofincome,count,Business income — number of returns with profit,gt0,filers,all,20,"$10,000,000 or more",3114.0,15in14ar.xls,T28,20,T,28 +601,2015_tab14_busprofincome_count_lt0_all,2015,tab14,busprofincome,count,Business income — number of returns with loss,lt0,filers,all,1,"All returns, total",5935725.0,15in14ar.xls,V9,22,V,9 +602,2015_tab14_busprofincome_count_lt0_all,2015,tab14,busprofincome,count,Business income — number of returns with loss,lt0,filers,all,2,No adjusted gross income,426034.0,15in14ar.xls,V10,22,V,10 +603,2015_tab14_busprofincome_count_lt0_all,2015,tab14,busprofincome,count,Business income — number of returns with loss,lt0,filers,all,3,"$1 under $5,000",138269.0,15in14ar.xls,V11,22,V,11 +604,2015_tab14_busprofincome_count_lt0_all,2015,tab14,busprofincome,count,Business income — number of returns with loss,lt0,filers,all,4,"$5,000 under $10,000",185654.0,15in14ar.xls,V12,22,V,12 +605,2015_tab14_busprofincome_count_lt0_all,2015,tab14,busprofincome,count,Business income — number of returns with loss,lt0,filers,all,5,"$10,000 under $15,000",270797.0,15in14ar.xls,V13,22,V,13 +606,2015_tab14_busprofincome_count_lt0_all,2015,tab14,busprofincome,count,Business income — number of returns with loss,lt0,filers,all,6,"$15,000 under $20,000",344286.0,15in14ar.xls,V14,22,V,14 +607,2015_tab14_busprofincome_count_lt0_all,2015,tab14,busprofincome,count,Business income — number of returns with loss,lt0,filers,all,7,"$20,000 under $25,000",351371.0,15in14ar.xls,V15,22,V,15 +608,2015_tab14_busprofincome_count_lt0_all,2015,tab14,busprofincome,count,Business income — number of returns with loss,lt0,filers,all,8,"$25,000 under $30,000",316757.0,15in14ar.xls,V16,22,V,16 +609,2015_tab14_busprofincome_count_lt0_all,2015,tab14,busprofincome,count,Business income — number of returns with loss,lt0,filers,all,9,"$30,000 under $40,000",532987.0,15in14ar.xls,V17,22,V,17 +610,2015_tab14_busprofincome_count_lt0_all,2015,tab14,busprofincome,count,Business income — number of returns with loss,lt0,filers,all,10,"$40,000 under $50,000",469339.0,15in14ar.xls,V18,22,V,18 +611,2015_tab14_busprofincome_count_lt0_all,2015,tab14,busprofincome,count,Business income — number of returns with loss,lt0,filers,all,11,"$50,000 under $75,000",833699.0,15in14ar.xls,V19,22,V,19 +612,2015_tab14_busprofincome_count_lt0_all,2015,tab14,busprofincome,count,Business income — number of returns with loss,lt0,filers,all,12,"$75,000 under $100,000",626398.0,15in14ar.xls,V20,22,V,20 +613,2015_tab14_busprofincome_count_lt0_all,2015,tab14,busprofincome,count,Business income — number of returns with loss,lt0,filers,all,13,"$100,000 under $200,000",1047891.0,15in14ar.xls,V21,22,V,21 +614,2015_tab14_busprofincome_count_lt0_all,2015,tab14,busprofincome,count,Business income — number of returns with loss,lt0,filers,all,14,"$200,000 under $500,000",312389.0,15in14ar.xls,V22,22,V,22 +615,2015_tab14_busprofincome_count_lt0_all,2015,tab14,busprofincome,count,Business income — number of returns with loss,lt0,filers,all,15,"$500,000 under $1,000,000",50356.0,15in14ar.xls,V23,22,V,23 +616,2015_tab14_busprofincome_count_lt0_all,2015,tab14,busprofincome,count,Business income — number of returns with loss,lt0,filers,all,16,"$1,000,000 under $1,500,000",11619.0,15in14ar.xls,V24,22,V,24 +617,2015_tab14_busprofincome_count_lt0_all,2015,tab14,busprofincome,count,Business income — number of returns with loss,lt0,filers,all,17,"$1,500,000 under $2,000,000",5327.0,15in14ar.xls,V25,22,V,25 +618,2015_tab14_busprofincome_count_lt0_all,2015,tab14,busprofincome,count,Business income — number of returns with loss,lt0,filers,all,18,"$2,000,000 under $5,000,000",8405.0,15in14ar.xls,V26,22,V,26 +619,2015_tab14_busprofincome_count_lt0_all,2015,tab14,busprofincome,count,Business income — number of returns with loss,lt0,filers,all,19,"$5,000,000 under $10,000,000",2306.0,15in14ar.xls,V27,22,V,27 +620,2015_tab14_busprofincome_count_lt0_all,2015,tab14,busprofincome,count,Business income — number of returns with loss,lt0,filers,all,20,"$10,000,000 or more",1843.0,15in14ar.xls,V28,22,V,28 +621,2015_tab14_cgdist_amount_nz_all,2015,tab14,cgdist,amount,Capital gain distributions,nz,filers,all,1,"All returns, total",11563203000.0,15in14ar.xls,Y9,25,Y,9 +622,2015_tab14_cgdist_amount_nz_all,2015,tab14,cgdist,amount,Capital gain distributions,nz,filers,all,2,No adjusted gross income,46969000.0,15in14ar.xls,Y10,25,Y,10 +623,2015_tab14_cgdist_amount_nz_all,2015,tab14,cgdist,amount,Capital gain distributions,nz,filers,all,3,"$1 under $5,000",195181000.0,15in14ar.xls,Y11,25,Y,11 +624,2015_tab14_cgdist_amount_nz_all,2015,tab14,cgdist,amount,Capital gain distributions,nz,filers,all,4,"$5,000 under $10,000",224309000.0,15in14ar.xls,Y12,25,Y,12 +625,2015_tab14_cgdist_amount_nz_all,2015,tab14,cgdist,amount,Capital gain distributions,nz,filers,all,5,"$10,000 under $15,000",234373000.0,15in14ar.xls,Y13,25,Y,13 +626,2015_tab14_cgdist_amount_nz_all,2015,tab14,cgdist,amount,Capital gain distributions,nz,filers,all,6,"$15,000 under $20,000",251117000.0,15in14ar.xls,Y14,25,Y,14 +627,2015_tab14_cgdist_amount_nz_all,2015,tab14,cgdist,amount,Capital gain distributions,nz,filers,all,7,"$20,000 under $25,000",259026000.0,15in14ar.xls,Y15,25,Y,15 +628,2015_tab14_cgdist_amount_nz_all,2015,tab14,cgdist,amount,Capital gain distributions,nz,filers,all,8,"$25,000 under $30,000",245274000.0,15in14ar.xls,Y16,25,Y,16 +629,2015_tab14_cgdist_amount_nz_all,2015,tab14,cgdist,amount,Capital gain distributions,nz,filers,all,9,"$30,000 under $40,000",462119000.0,15in14ar.xls,Y17,25,Y,17 +630,2015_tab14_cgdist_amount_nz_all,2015,tab14,cgdist,amount,Capital gain distributions,nz,filers,all,10,"$40,000 under $50,000",479156000.0,15in14ar.xls,Y18,25,Y,18 +631,2015_tab14_cgdist_amount_nz_all,2015,tab14,cgdist,amount,Capital gain distributions,nz,filers,all,11,"$50,000 under $75,000",1542572000.0,15in14ar.xls,Y19,25,Y,19 +632,2015_tab14_cgdist_amount_nz_all,2015,tab14,cgdist,amount,Capital gain distributions,nz,filers,all,12,"$75,000 under $100,000",1370439000.0,15in14ar.xls,Y20,25,Y,20 +633,2015_tab14_cgdist_amount_nz_all,2015,tab14,cgdist,amount,Capital gain distributions,nz,filers,all,13,"$100,000 under $200,000",3639073000.0,15in14ar.xls,Y21,25,Y,21 +634,2015_tab14_cgdist_amount_nz_all,2015,tab14,cgdist,amount,Capital gain distributions,nz,filers,all,14,"$200,000 under $500,000",1989633000.0,15in14ar.xls,Y22,25,Y,22 +635,2015_tab14_cgdist_amount_nz_all,2015,tab14,cgdist,amount,Capital gain distributions,nz,filers,all,15,"$500,000 under $1,000,000",397268000.0,15in14ar.xls,Y23,25,Y,23 +636,2015_tab14_cgdist_amount_nz_all,2015,tab14,cgdist,amount,Capital gain distributions,nz,filers,all,16,"$1,000,000 under $1,500,000",82981000.0,15in14ar.xls,Y24,25,Y,24 +637,2015_tab14_cgdist_amount_nz_all,2015,tab14,cgdist,amount,Capital gain distributions,nz,filers,all,17,"$1,500,000 under $2,000,000",35912000.0,15in14ar.xls,Y25,25,Y,25 +638,2015_tab14_cgdist_amount_nz_all,2015,tab14,cgdist,amount,Capital gain distributions,nz,filers,all,18,"$2,000,000 under $5,000,000",90952000.0,15in14ar.xls,Y26,25,Y,26 +639,2015_tab14_cgdist_amount_nz_all,2015,tab14,cgdist,amount,Capital gain distributions,nz,filers,all,19,"$5,000,000 under $10,000,000",10409000.0,15in14ar.xls,Y27,25,Y,27 +640,2015_tab14_cgdist_amount_nz_all,2015,tab14,cgdist,amount,Capital gain distributions,nz,filers,all,20,"$10,000,000 or more",6438000.0,15in14ar.xls,Y28,25,Y,28 +641,2015_tab14_cgdist_count_nz_all,2015,tab14,cgdist,count,Capital gain distributions — number of returns,nz,filers,all,1,"All returns, total",4323250.0,15in14ar.xls,X9,24,X,9 +642,2015_tab14_cgdist_count_nz_all,2015,tab14,cgdist,count,Capital gain distributions — number of returns,nz,filers,all,2,No adjusted gross income,29097.0,15in14ar.xls,X10,24,X,10 +643,2015_tab14_cgdist_count_nz_all,2015,tab14,cgdist,count,Capital gain distributions — number of returns,nz,filers,all,3,"$1 under $5,000",222771.0,15in14ar.xls,X11,24,X,11 +644,2015_tab14_cgdist_count_nz_all,2015,tab14,cgdist,count,Capital gain distributions — number of returns,nz,filers,all,4,"$5,000 under $10,000",179305.0,15in14ar.xls,X12,24,X,12 +645,2015_tab14_cgdist_count_nz_all,2015,tab14,cgdist,count,Capital gain distributions — number of returns,nz,filers,all,5,"$10,000 under $15,000",159924.0,15in14ar.xls,X13,24,X,13 +646,2015_tab14_cgdist_count_nz_all,2015,tab14,cgdist,count,Capital gain distributions — number of returns,nz,filers,all,6,"$15,000 under $20,000",169070.0,15in14ar.xls,X14,24,X,14 +647,2015_tab14_cgdist_count_nz_all,2015,tab14,cgdist,count,Capital gain distributions — number of returns,nz,filers,all,7,"$20,000 under $25,000",147995.0,15in14ar.xls,X15,24,X,15 +648,2015_tab14_cgdist_count_nz_all,2015,tab14,cgdist,count,Capital gain distributions — number of returns,nz,filers,all,8,"$25,000 under $30,000",128487.0,15in14ar.xls,X16,24,X,16 +649,2015_tab14_cgdist_count_nz_all,2015,tab14,cgdist,count,Capital gain distributions — number of returns,nz,filers,all,9,"$30,000 under $40,000",287469.0,15in14ar.xls,X17,24,X,17 +650,2015_tab14_cgdist_count_nz_all,2015,tab14,cgdist,count,Capital gain distributions — number of returns,nz,filers,all,10,"$40,000 under $50,000",274422.0,15in14ar.xls,X18,24,X,18 +651,2015_tab14_cgdist_count_nz_all,2015,tab14,cgdist,count,Capital gain distributions — number of returns,nz,filers,all,11,"$50,000 under $75,000",662186.0,15in14ar.xls,X19,24,X,19 +652,2015_tab14_cgdist_count_nz_all,2015,tab14,cgdist,count,Capital gain distributions — number of returns,nz,filers,all,12,"$75,000 under $100,000",564896.0,15in14ar.xls,X20,24,X,20 +653,2015_tab14_cgdist_count_nz_all,2015,tab14,cgdist,count,Capital gain distributions — number of returns,nz,filers,all,13,"$100,000 under $200,000",1078572.0,15in14ar.xls,X21,24,X,21 +654,2015_tab14_cgdist_count_nz_all,2015,tab14,cgdist,count,Capital gain distributions — number of returns,nz,filers,all,14,"$200,000 under $500,000",369651.0,15in14ar.xls,X22,24,X,22 +655,2015_tab14_cgdist_count_nz_all,2015,tab14,cgdist,count,Capital gain distributions — number of returns,nz,filers,all,15,"$500,000 under $1,000,000",39917.0,15in14ar.xls,X23,24,X,23 +656,2015_tab14_cgdist_count_nz_all,2015,tab14,cgdist,count,Capital gain distributions — number of returns,nz,filers,all,16,"$1,000,000 under $1,500,000",5619.0,15in14ar.xls,X24,24,X,24 +657,2015_tab14_cgdist_count_nz_all,2015,tab14,cgdist,count,Capital gain distributions — number of returns,nz,filers,all,17,"$1,500,000 under $2,000,000",1759.0,15in14ar.xls,X25,24,X,25 +658,2015_tab14_cgdist_count_nz_all,2015,tab14,cgdist,count,Capital gain distributions — number of returns,nz,filers,all,18,"$2,000,000 under $5,000,000",1846.0,15in14ar.xls,X26,24,X,26 +659,2015_tab14_cgdist_count_nz_all,2015,tab14,cgdist,count,Capital gain distributions — number of returns,nz,filers,all,19,"$5,000,000 under $10,000,000",206.0,15in14ar.xls,X27,24,X,27 +660,2015_tab14_cgdist_count_nz_all,2015,tab14,cgdist,count,Capital gain distributions — number of returns,nz,filers,all,20,"$10,000,000 or more",58.0,15in14ar.xls,X28,24,X,28 +661,2015_tab14_cgtaxable_amount_gt0_all,2015,tab14,cgtaxable,amount,Net capital gain,gt0,filers,all,1,"All returns, total",713598090000.0,15in14ar.xls,AA9,27,AA,9 +662,2015_tab14_cgtaxable_amount_gt0_all,2015,tab14,cgtaxable,amount,Net capital gain,gt0,filers,all,2,No adjusted gross income,17092947000.0,15in14ar.xls,AA10,27,AA,10 +663,2015_tab14_cgtaxable_amount_gt0_all,2015,tab14,cgtaxable,amount,Net capital gain,gt0,filers,all,3,"$1 under $5,000",512882000.0,15in14ar.xls,AA11,27,AA,11 +664,2015_tab14_cgtaxable_amount_gt0_all,2015,tab14,cgtaxable,amount,Net capital gain,gt0,filers,all,4,"$5,000 under $10,000",927640000.0,15in14ar.xls,AA12,27,AA,12 +665,2015_tab14_cgtaxable_amount_gt0_all,2015,tab14,cgtaxable,amount,Net capital gain,gt0,filers,all,5,"$10,000 under $15,000",1230847000.0,15in14ar.xls,AA13,27,AA,13 +666,2015_tab14_cgtaxable_amount_gt0_all,2015,tab14,cgtaxable,amount,Net capital gain,gt0,filers,all,6,"$15,000 under $20,000",1550202000.0,15in14ar.xls,AA14,27,AA,14 +667,2015_tab14_cgtaxable_amount_gt0_all,2015,tab14,cgtaxable,amount,Net capital gain,gt0,filers,all,7,"$20,000 under $25,000",1917490000.0,15in14ar.xls,AA15,27,AA,15 +668,2015_tab14_cgtaxable_amount_gt0_all,2015,tab14,cgtaxable,amount,Net capital gain,gt0,filers,all,8,"$25,000 under $30,000",1686136000.0,15in14ar.xls,AA16,27,AA,16 +669,2015_tab14_cgtaxable_amount_gt0_all,2015,tab14,cgtaxable,amount,Net capital gain,gt0,filers,all,9,"$30,000 under $40,000",3565980000.0,15in14ar.xls,AA17,27,AA,17 +670,2015_tab14_cgtaxable_amount_gt0_all,2015,tab14,cgtaxable,amount,Net capital gain,gt0,filers,all,10,"$40,000 under $50,000",4180676000.0,15in14ar.xls,AA18,27,AA,18 +671,2015_tab14_cgtaxable_amount_gt0_all,2015,tab14,cgtaxable,amount,Net capital gain,gt0,filers,all,11,"$50,000 under $75,000",12531337000.0,15in14ar.xls,AA19,27,AA,19 +672,2015_tab14_cgtaxable_amount_gt0_all,2015,tab14,cgtaxable,amount,Net capital gain,gt0,filers,all,12,"$75,000 under $100,000",15108775000.0,15in14ar.xls,AA20,27,AA,20 +673,2015_tab14_cgtaxable_amount_gt0_all,2015,tab14,cgtaxable,amount,Net capital gain,gt0,filers,all,13,"$100,000 under $200,000",55975478000.0,15in14ar.xls,AA21,27,AA,21 +674,2015_tab14_cgtaxable_amount_gt0_all,2015,tab14,cgtaxable,amount,Net capital gain,gt0,filers,all,14,"$200,000 under $500,000",84003935000.0,15in14ar.xls,AA22,27,AA,22 +675,2015_tab14_cgtaxable_amount_gt0_all,2015,tab14,cgtaxable,amount,Net capital gain,gt0,filers,all,15,"$500,000 under $1,000,000",61321058000.0,15in14ar.xls,AA23,27,AA,23 +676,2015_tab14_cgtaxable_amount_gt0_all,2015,tab14,cgtaxable,amount,Net capital gain,gt0,filers,all,16,"$1,000,000 under $1,500,000",34034315000.0,15in14ar.xls,AA24,27,AA,24 +677,2015_tab14_cgtaxable_amount_gt0_all,2015,tab14,cgtaxable,amount,Net capital gain,gt0,filers,all,17,"$1,500,000 under $2,000,000",24162327000.0,15in14ar.xls,AA25,27,AA,25 +678,2015_tab14_cgtaxable_amount_gt0_all,2015,tab14,cgtaxable,amount,Net capital gain,gt0,filers,all,18,"$2,000,000 under $5,000,000",78275758000.0,15in14ar.xls,AA26,27,AA,26 +679,2015_tab14_cgtaxable_amount_gt0_all,2015,tab14,cgtaxable,amount,Net capital gain,gt0,filers,all,19,"$5,000,000 under $10,000,000",60482444000.0,15in14ar.xls,AA27,27,AA,27 +680,2015_tab14_cgtaxable_amount_gt0_all,2015,tab14,cgtaxable,amount,Net capital gain,gt0,filers,all,20,"$10,000,000 or more",255037864000.0,15in14ar.xls,AA28,27,AA,28 +681,2015_tab14_cgtaxable_amount_lt0_all,2015,tab14,cgtaxable,amount,Net capital loss,lt0,filers,all,1,"All returns, total",18646316000.0,15in14ar.xls,AC9,29,AC,9 +682,2015_tab14_cgtaxable_amount_lt0_all,2015,tab14,cgtaxable,amount,Net capital loss,lt0,filers,all,2,No adjusted gross income,1159884000.0,15in14ar.xls,AC10,29,AC,10 +683,2015_tab14_cgtaxable_amount_lt0_all,2015,tab14,cgtaxable,amount,Net capital loss,lt0,filers,all,3,"$1 under $5,000",599286000.0,15in14ar.xls,AC11,29,AC,11 +684,2015_tab14_cgtaxable_amount_lt0_all,2015,tab14,cgtaxable,amount,Net capital loss,lt0,filers,all,4,"$5,000 under $10,000",664177000.0,15in14ar.xls,AC12,29,AC,12 +685,2015_tab14_cgtaxable_amount_lt0_all,2015,tab14,cgtaxable,amount,Net capital loss,lt0,filers,all,5,"$10,000 under $15,000",646526000.0,15in14ar.xls,AC13,29,AC,13 +686,2015_tab14_cgtaxable_amount_lt0_all,2015,tab14,cgtaxable,amount,Net capital loss,lt0,filers,all,6,"$15,000 under $20,000",513433000.0,15in14ar.xls,AC14,29,AC,14 +687,2015_tab14_cgtaxable_amount_lt0_all,2015,tab14,cgtaxable,amount,Net capital loss,lt0,filers,all,7,"$20,000 under $25,000",493407000.0,15in14ar.xls,AC15,29,AC,15 +688,2015_tab14_cgtaxable_amount_lt0_all,2015,tab14,cgtaxable,amount,Net capital loss,lt0,filers,all,8,"$25,000 under $30,000",568206000.0,15in14ar.xls,AC16,29,AC,16 +689,2015_tab14_cgtaxable_amount_lt0_all,2015,tab14,cgtaxable,amount,Net capital loss,lt0,filers,all,9,"$30,000 under $40,000",941534000.0,15in14ar.xls,AC17,29,AC,17 +690,2015_tab14_cgtaxable_amount_lt0_all,2015,tab14,cgtaxable,amount,Net capital loss,lt0,filers,all,10,"$40,000 under $50,000",837906000.0,15in14ar.xls,AC18,29,AC,18 +691,2015_tab14_cgtaxable_amount_lt0_all,2015,tab14,cgtaxable,amount,Net capital loss,lt0,filers,all,11,"$50,000 under $75,000",2371829000.0,15in14ar.xls,AC19,29,AC,19 +692,2015_tab14_cgtaxable_amount_lt0_all,2015,tab14,cgtaxable,amount,Net capital loss,lt0,filers,all,12,"$75,000 under $100,000",2047954000.0,15in14ar.xls,AC20,29,AC,20 +693,2015_tab14_cgtaxable_amount_lt0_all,2015,tab14,cgtaxable,amount,Net capital loss,lt0,filers,all,13,"$100,000 under $200,000",4308359000.0,15in14ar.xls,AC21,29,AC,21 +694,2015_tab14_cgtaxable_amount_lt0_all,2015,tab14,cgtaxable,amount,Net capital loss,lt0,filers,all,14,"$200,000 under $500,000",2548526000.0,15in14ar.xls,AC22,29,AC,22 +695,2015_tab14_cgtaxable_amount_lt0_all,2015,tab14,cgtaxable,amount,Net capital loss,lt0,filers,all,15,"$500,000 under $1,000,000",620944000.0,15in14ar.xls,AC23,29,AC,23 +696,2015_tab14_cgtaxable_amount_lt0_all,2015,tab14,cgtaxable,amount,Net capital loss,lt0,filers,all,16,"$1,000,000 under $1,500,000",149959000.0,15in14ar.xls,AC24,29,AC,24 +697,2015_tab14_cgtaxable_amount_lt0_all,2015,tab14,cgtaxable,amount,Net capital loss,lt0,filers,all,17,"$1,500,000 under $2,000,000",61278000.0,15in14ar.xls,AC25,29,AC,25 +698,2015_tab14_cgtaxable_amount_lt0_all,2015,tab14,cgtaxable,amount,Net capital loss,lt0,filers,all,18,"$2,000,000 under $5,000,000",85195000.0,15in14ar.xls,AC26,29,AC,26 +699,2015_tab14_cgtaxable_amount_lt0_all,2015,tab14,cgtaxable,amount,Net capital loss,lt0,filers,all,19,"$5,000,000 under $10,000,000",18456000.0,15in14ar.xls,AC27,29,AC,27 +700,2015_tab14_cgtaxable_amount_lt0_all,2015,tab14,cgtaxable,amount,Net capital loss,lt0,filers,all,20,"$10,000,000 or more",9459000.0,15in14ar.xls,AC28,29,AC,28 +701,2015_tab14_cgtaxable_count_gt0_all,2015,tab14,cgtaxable,count,Capital gains — number of returns with net gain,gt0,filers,all,1,"All returns, total",11674771.0,15in14ar.xls,Z9,26,Z,9 +702,2015_tab14_cgtaxable_count_gt0_all,2015,tab14,cgtaxable,count,Capital gains — number of returns with net gain,gt0,filers,all,2,No adjusted gross income,167966.0,15in14ar.xls,Z10,26,Z,10 +703,2015_tab14_cgtaxable_count_gt0_all,2015,tab14,cgtaxable,count,Capital gains — number of returns with net gain,gt0,filers,all,3,"$1 under $5,000",260178.0,15in14ar.xls,Z11,26,Z,11 +704,2015_tab14_cgtaxable_count_gt0_all,2015,tab14,cgtaxable,count,Capital gains — number of returns with net gain,gt0,filers,all,4,"$5,000 under $10,000",302754.0,15in14ar.xls,Z12,26,Z,12 +705,2015_tab14_cgtaxable_count_gt0_all,2015,tab14,cgtaxable,count,Capital gains — number of returns with net gain,gt0,filers,all,5,"$10,000 under $15,000",290743.0,15in14ar.xls,Z13,26,Z,13 +706,2015_tab14_cgtaxable_count_gt0_all,2015,tab14,cgtaxable,count,Capital gains — number of returns with net gain,gt0,filers,all,6,"$15,000 under $20,000",295391.0,15in14ar.xls,Z14,26,Z,14 +707,2015_tab14_cgtaxable_count_gt0_all,2015,tab14,cgtaxable,count,Capital gains — number of returns with net gain,gt0,filers,all,7,"$20,000 under $25,000",301961.0,15in14ar.xls,Z15,26,Z,15 +708,2015_tab14_cgtaxable_count_gt0_all,2015,tab14,cgtaxable,count,Capital gains — number of returns with net gain,gt0,filers,all,8,"$25,000 under $30,000",269216.0,15in14ar.xls,Z16,26,Z,16 +709,2015_tab14_cgtaxable_count_gt0_all,2015,tab14,cgtaxable,count,Capital gains — number of returns with net gain,gt0,filers,all,9,"$30,000 under $40,000",564977.0,15in14ar.xls,Z17,26,Z,17 +710,2015_tab14_cgtaxable_count_gt0_all,2015,tab14,cgtaxable,count,Capital gains — number of returns with net gain,gt0,filers,all,10,"$40,000 under $50,000",583462.0,15in14ar.xls,Z18,26,Z,18 +711,2015_tab14_cgtaxable_count_gt0_all,2015,tab14,cgtaxable,count,Capital gains — number of returns with net gain,gt0,filers,all,11,"$50,000 under $75,000",1499292.0,15in14ar.xls,Z19,26,Z,19 +712,2015_tab14_cgtaxable_count_gt0_all,2015,tab14,cgtaxable,count,Capital gains — number of returns with net gain,gt0,filers,all,12,"$75,000 under $100,000",1417852.0,15in14ar.xls,Z20,26,Z,20 +713,2015_tab14_cgtaxable_count_gt0_all,2015,tab14,cgtaxable,count,Capital gains — number of returns with net gain,gt0,filers,all,13,"$100,000 under $200,000",3160989.0,15in14ar.xls,Z21,26,Z,21 +714,2015_tab14_cgtaxable_count_gt0_all,2015,tab14,cgtaxable,count,Capital gains — number of returns with net gain,gt0,filers,all,14,"$200,000 under $500,000",1841053.0,15in14ar.xls,Z22,26,Z,22 +715,2015_tab14_cgtaxable_count_gt0_all,2015,tab14,cgtaxable,count,Capital gains — number of returns with net gain,gt0,filers,all,15,"$500,000 under $1,000,000",442833.0,15in14ar.xls,Z23,26,Z,23 +716,2015_tab14_cgtaxable_count_gt0_all,2015,tab14,cgtaxable,count,Capital gains — number of returns with net gain,gt0,filers,all,16,"$1,000,000 under $1,500,000",114426.0,15in14ar.xls,Z24,26,Z,24 +717,2015_tab14_cgtaxable_count_gt0_all,2015,tab14,cgtaxable,count,Capital gains — number of returns with net gain,gt0,filers,all,17,"$1,500,000 under $2,000,000",49072.0,15in14ar.xls,Z25,26,Z,25 +718,2015_tab14_cgtaxable_count_gt0_all,2015,tab14,cgtaxable,count,Capital gains — number of returns with net gain,gt0,filers,all,18,"$2,000,000 under $5,000,000",77340.0,15in14ar.xls,Z26,26,Z,26 +719,2015_tab14_cgtaxable_count_gt0_all,2015,tab14,cgtaxable,count,Capital gains — number of returns with net gain,gt0,filers,all,19,"$5,000,000 under $10,000,000",20900.0,15in14ar.xls,Z27,26,Z,27 +720,2015_tab14_cgtaxable_count_gt0_all,2015,tab14,cgtaxable,count,Capital gains — number of returns with net gain,gt0,filers,all,20,"$10,000,000 or more",14366.0,15in14ar.xls,Z28,26,Z,28 +721,2015_tab14_cgtaxable_count_lt0_all,2015,tab14,cgtaxable,count,Capital gains — number of returns with net loss,lt0,filers,all,1,"All returns, total",8279783.0,15in14ar.xls,AB9,28,AB,9 +722,2015_tab14_cgtaxable_count_lt0_all,2015,tab14,cgtaxable,count,Capital gains — number of returns with net loss,lt0,filers,all,2,No adjusted gross income,448994.0,15in14ar.xls,AB10,28,AB,10 +723,2015_tab14_cgtaxable_count_lt0_all,2015,tab14,cgtaxable,count,Capital gains — number of returns with net loss,lt0,filers,all,3,"$1 under $5,000",309683.0,15in14ar.xls,AB11,28,AB,11 +724,2015_tab14_cgtaxable_count_lt0_all,2015,tab14,cgtaxable,count,Capital gains — number of returns with net loss,lt0,filers,all,4,"$5,000 under $10,000",297621.0,15in14ar.xls,AB12,28,AB,12 +725,2015_tab14_cgtaxable_count_lt0_all,2015,tab14,cgtaxable,count,Capital gains — number of returns with net loss,lt0,filers,all,5,"$10,000 under $15,000",288721.0,15in14ar.xls,AB13,28,AB,13 +726,2015_tab14_cgtaxable_count_lt0_all,2015,tab14,cgtaxable,count,Capital gains — number of returns with net loss,lt0,filers,all,6,"$15,000 under $20,000",232409.0,15in14ar.xls,AB14,28,AB,14 +727,2015_tab14_cgtaxable_count_lt0_all,2015,tab14,cgtaxable,count,Capital gains — number of returns with net loss,lt0,filers,all,7,"$20,000 under $25,000",227031.0,15in14ar.xls,AB15,28,AB,15 +728,2015_tab14_cgtaxable_count_lt0_all,2015,tab14,cgtaxable,count,Capital gains — number of returns with net loss,lt0,filers,all,8,"$25,000 under $30,000",256667.0,15in14ar.xls,AB16,28,AB,16 +729,2015_tab14_cgtaxable_count_lt0_all,2015,tab14,cgtaxable,count,Capital gains — number of returns with net loss,lt0,filers,all,9,"$30,000 under $40,000",456707.0,15in14ar.xls,AB17,28,AB,17 +730,2015_tab14_cgtaxable_count_lt0_all,2015,tab14,cgtaxable,count,Capital gains — number of returns with net loss,lt0,filers,all,10,"$40,000 under $50,000",383768.0,15in14ar.xls,AB18,28,AB,18 +731,2015_tab14_cgtaxable_count_lt0_all,2015,tab14,cgtaxable,count,Capital gains — number of returns with net loss,lt0,filers,all,11,"$50,000 under $75,000",1058241.0,15in14ar.xls,AB19,28,AB,19 +732,2015_tab14_cgtaxable_count_lt0_all,2015,tab14,cgtaxable,count,Capital gains — number of returns with net loss,lt0,filers,all,12,"$75,000 under $100,000",933896.0,15in14ar.xls,AB20,28,AB,20 +733,2015_tab14_cgtaxable_count_lt0_all,2015,tab14,cgtaxable,count,Capital gains — number of returns with net loss,lt0,filers,all,13,"$100,000 under $200,000",1959116.0,15in14ar.xls,AB21,28,AB,21 +734,2015_tab14_cgtaxable_count_lt0_all,2015,tab14,cgtaxable,count,Capital gains — number of returns with net loss,lt0,filers,all,14,"$200,000 under $500,000",1070458.0,15in14ar.xls,AB22,28,AB,22 +735,2015_tab14_cgtaxable_count_lt0_all,2015,tab14,cgtaxable,count,Capital gains — number of returns with net loss,lt0,filers,all,15,"$500,000 under $1,000,000",240175.0,15in14ar.xls,AB23,28,AB,23 +736,2015_tab14_cgtaxable_count_lt0_all,2015,tab14,cgtaxable,count,Capital gains — number of returns with net loss,lt0,filers,all,16,"$1,000,000 under $1,500,000",54398.0,15in14ar.xls,AB24,28,AB,24 +737,2015_tab14_cgtaxable_count_lt0_all,2015,tab14,cgtaxable,count,Capital gains — number of returns with net loss,lt0,filers,all,17,"$1,500,000 under $2,000,000",22018.0,15in14ar.xls,AB25,28,AB,25 +738,2015_tab14_cgtaxable_count_lt0_all,2015,tab14,cgtaxable,count,Capital gains — number of returns with net loss,lt0,filers,all,18,"$2,000,000 under $5,000,000",30162.0,15in14ar.xls,AB26,28,AB,26 +739,2015_tab14_cgtaxable_count_lt0_all,2015,tab14,cgtaxable,count,Capital gains — number of returns with net loss,lt0,filers,all,19,"$5,000,000 under $10,000,000",6441.0,15in14ar.xls,AB27,28,AB,27 +740,2015_tab14_cgtaxable_count_lt0_all,2015,tab14,cgtaxable,count,Capital gains — number of returns with net loss,lt0,filers,all,20,"$10,000,000 or more",3276.0,15in14ar.xls,AB28,28,AB,28 +741,2015_tab14_estateincome_amount_gt0_all,2015,tab14,estateincome,amount,Estate and trust net income,gt0,filers,all,1,"All returns, total",32453002000.0,15in14ar.xls,BI9,61,BI,9 +742,2015_tab14_estateincome_amount_gt0_all,2015,tab14,estateincome,amount,Estate and trust net income,gt0,filers,all,2,No adjusted gross income,555349000.0,15in14ar.xls,BI10,61,BI,10 +743,2015_tab14_estateincome_amount_gt0_all,2015,tab14,estateincome,amount,Estate and trust net income,gt0,filers,all,3,"$1 under $5,000",84768000.0,15in14ar.xls,BI11,61,BI,11 +744,2015_tab14_estateincome_amount_gt0_all,2015,tab14,estateincome,amount,Estate and trust net income,gt0,filers,all,4,"$5,000 under $10,000",0.0,15in14ar.xls,BI12,61,BI,12 +745,2015_tab14_estateincome_amount_gt0_all,2015,tab14,estateincome,amount,Estate and trust net income,gt0,filers,all,5,"$10,000 under $15,000",190506000.0,15in14ar.xls,BI13,61,BI,13 +746,2015_tab14_estateincome_amount_gt0_all,2015,tab14,estateincome,amount,Estate and trust net income,gt0,filers,all,6,"$15,000 under $20,000",0.0,15in14ar.xls,BI14,61,BI,14 +747,2015_tab14_estateincome_amount_gt0_all,2015,tab14,estateincome,amount,Estate and trust net income,gt0,filers,all,7,"$20,000 under $25,000",157934000.0,15in14ar.xls,BI15,61,BI,15 +748,2015_tab14_estateincome_amount_gt0_all,2015,tab14,estateincome,amount,Estate and trust net income,gt0,filers,all,8,"$25,000 under $30,000",70147000.0,15in14ar.xls,BI16,61,BI,16 +749,2015_tab14_estateincome_amount_gt0_all,2015,tab14,estateincome,amount,Estate and trust net income,gt0,filers,all,9,"$30,000 under $40,000",212077000.0,15in14ar.xls,BI17,61,BI,17 +750,2015_tab14_estateincome_amount_gt0_all,2015,tab14,estateincome,amount,Estate and trust net income,gt0,filers,all,10,"$40,000 under $50,000",323856000.0,15in14ar.xls,BI18,61,BI,18 +751,2015_tab14_estateincome_amount_gt0_all,2015,tab14,estateincome,amount,Estate and trust net income,gt0,filers,all,11,"$50,000 under $75,000",1005042000.0,15in14ar.xls,BI19,61,BI,19 +752,2015_tab14_estateincome_amount_gt0_all,2015,tab14,estateincome,amount,Estate and trust net income,gt0,filers,all,12,"$75,000 under $100,000",1208291000.0,15in14ar.xls,BI20,61,BI,20 +753,2015_tab14_estateincome_amount_gt0_all,2015,tab14,estateincome,amount,Estate and trust net income,gt0,filers,all,13,"$100,000 under $200,000",3738120000.0,15in14ar.xls,BI21,61,BI,21 +754,2015_tab14_estateincome_amount_gt0_all,2015,tab14,estateincome,amount,Estate and trust net income,gt0,filers,all,14,"$200,000 under $500,000",5145144000.0,15in14ar.xls,BI22,61,BI,22 +755,2015_tab14_estateincome_amount_gt0_all,2015,tab14,estateincome,amount,Estate and trust net income,gt0,filers,all,15,"$500,000 under $1,000,000",3109812000.0,15in14ar.xls,BI23,61,BI,23 +756,2015_tab14_estateincome_amount_gt0_all,2015,tab14,estateincome,amount,Estate and trust net income,gt0,filers,all,16,"$1,000,000 under $1,500,000",2035739000.0,15in14ar.xls,BI24,61,BI,24 +757,2015_tab14_estateincome_amount_gt0_all,2015,tab14,estateincome,amount,Estate and trust net income,gt0,filers,all,17,"$1,500,000 under $2,000,000",1379830000.0,15in14ar.xls,BI25,61,BI,25 +758,2015_tab14_estateincome_amount_gt0_all,2015,tab14,estateincome,amount,Estate and trust net income,gt0,filers,all,18,"$2,000,000 under $5,000,000",3609729000.0,15in14ar.xls,BI26,61,BI,26 +759,2015_tab14_estateincome_amount_gt0_all,2015,tab14,estateincome,amount,Estate and trust net income,gt0,filers,all,19,"$5,000,000 under $10,000,000",2796763000.0,15in14ar.xls,BI27,61,BI,27 +760,2015_tab14_estateincome_amount_gt0_all,2015,tab14,estateincome,amount,Estate and trust net income,gt0,filers,all,20,"$10,000,000 or more",6829895000.0,15in14ar.xls,BI28,61,BI,28 +761,2015_tab14_estateincome_amount_lt0_all,2015,tab14,estateincome,amount,Estate and trust net loss,lt0,filers,all,1,"All returns, total",5033199000.0,15in14ar.xls,BK9,63,BK,9 +762,2015_tab14_estateincome_amount_lt0_all,2015,tab14,estateincome,amount,Estate and trust net loss,lt0,filers,all,2,No adjusted gross income,1039656000.0,15in14ar.xls,BK10,63,BK,10 +763,2015_tab14_estateincome_amount_lt0_all,2015,tab14,estateincome,amount,Estate and trust net loss,lt0,filers,all,3,"$1 under $5,000",15155000.0,15in14ar.xls,BK11,63,BK,11 +764,2015_tab14_estateincome_amount_lt0_all,2015,tab14,estateincome,amount,Estate and trust net loss,lt0,filers,all,4,"$5,000 under $10,000",0.0,15in14ar.xls,BK12,63,BK,12 +765,2015_tab14_estateincome_amount_lt0_all,2015,tab14,estateincome,amount,Estate and trust net loss,lt0,filers,all,5,"$10,000 under $15,000",14646000.0,15in14ar.xls,BK13,63,BK,13 +766,2015_tab14_estateincome_amount_lt0_all,2015,tab14,estateincome,amount,Estate and trust net loss,lt0,filers,all,6,"$15,000 under $20,000",0.0,15in14ar.xls,BK14,63,BK,14 +767,2015_tab14_estateincome_amount_lt0_all,2015,tab14,estateincome,amount,Estate and trust net loss,lt0,filers,all,7,"$20,000 under $25,000",40026000.0,15in14ar.xls,BK15,63,BK,15 +768,2015_tab14_estateincome_amount_lt0_all,2015,tab14,estateincome,amount,Estate and trust net loss,lt0,filers,all,8,"$25,000 under $30,000",852000.0,15in14ar.xls,BK16,63,BK,16 +769,2015_tab14_estateincome_amount_lt0_all,2015,tab14,estateincome,amount,Estate and trust net loss,lt0,filers,all,9,"$30,000 under $40,000",2635000.0,15in14ar.xls,BK17,63,BK,17 +770,2015_tab14_estateincome_amount_lt0_all,2015,tab14,estateincome,amount,Estate and trust net loss,lt0,filers,all,10,"$40,000 under $50,000",4481000.0,15in14ar.xls,BK18,63,BK,18 +771,2015_tab14_estateincome_amount_lt0_all,2015,tab14,estateincome,amount,Estate and trust net loss,lt0,filers,all,11,"$50,000 under $75,000",42194000.0,15in14ar.xls,BK19,63,BK,19 +772,2015_tab14_estateincome_amount_lt0_all,2015,tab14,estateincome,amount,Estate and trust net loss,lt0,filers,all,12,"$75,000 under $100,000",110657000.0,15in14ar.xls,BK20,63,BK,20 +773,2015_tab14_estateincome_amount_lt0_all,2015,tab14,estateincome,amount,Estate and trust net loss,lt0,filers,all,13,"$100,000 under $200,000",85897000.0,15in14ar.xls,BK21,63,BK,21 +774,2015_tab14_estateincome_amount_lt0_all,2015,tab14,estateincome,amount,Estate and trust net loss,lt0,filers,all,14,"$200,000 under $500,000",269765000.0,15in14ar.xls,BK22,63,BK,22 +775,2015_tab14_estateincome_amount_lt0_all,2015,tab14,estateincome,amount,Estate and trust net loss,lt0,filers,all,15,"$500,000 under $1,000,000",115685000.0,15in14ar.xls,BK23,63,BK,23 +776,2015_tab14_estateincome_amount_lt0_all,2015,tab14,estateincome,amount,Estate and trust net loss,lt0,filers,all,16,"$1,000,000 under $1,500,000",108963000.0,15in14ar.xls,BK24,63,BK,24 +777,2015_tab14_estateincome_amount_lt0_all,2015,tab14,estateincome,amount,Estate and trust net loss,lt0,filers,all,17,"$1,500,000 under $2,000,000",80746000.0,15in14ar.xls,BK25,63,BK,25 +778,2015_tab14_estateincome_amount_lt0_all,2015,tab14,estateincome,amount,Estate and trust net loss,lt0,filers,all,18,"$2,000,000 under $5,000,000",286232000.0,15in14ar.xls,BK26,63,BK,26 +779,2015_tab14_estateincome_amount_lt0_all,2015,tab14,estateincome,amount,Estate and trust net loss,lt0,filers,all,19,"$5,000,000 under $10,000,000",178364000.0,15in14ar.xls,BK27,63,BK,27 +780,2015_tab14_estateincome_amount_lt0_all,2015,tab14,estateincome,amount,Estate and trust net loss,lt0,filers,all,20,"$10,000,000 or more",2637246000.0,15in14ar.xls,BK28,63,BK,28 +781,2015_tab14_estateincome_count_gt0_all,2015,tab14,estateincome,count,Estate/trust income — number with income,gt0,filers,all,1,"All returns, total",630256.0,15in14ar.xls,BH9,60,BH,9 +782,2015_tab14_estateincome_count_gt0_all,2015,tab14,estateincome,count,Estate/trust income — number with income,gt0,filers,all,2,No adjusted gross income,13700.0,15in14ar.xls,BH10,60,BH,10 +783,2015_tab14_estateincome_count_gt0_all,2015,tab14,estateincome,count,Estate/trust income — number with income,gt0,filers,all,3,"$1 under $5,000",20997.0,15in14ar.xls,BH11,60,BH,11 +784,2015_tab14_estateincome_count_gt0_all,2015,tab14,estateincome,count,Estate/trust income — number with income,gt0,filers,all,4,"$5,000 under $10,000",0.0,15in14ar.xls,BH12,60,BH,12 +785,2015_tab14_estateincome_count_gt0_all,2015,tab14,estateincome,count,Estate/trust income — number with income,gt0,filers,all,5,"$10,000 under $15,000",35192.0,15in14ar.xls,BH13,60,BH,13 +786,2015_tab14_estateincome_count_gt0_all,2015,tab14,estateincome,count,Estate/trust income — number with income,gt0,filers,all,6,"$15,000 under $20,000",0.0,15in14ar.xls,BH14,60,BH,14 +787,2015_tab14_estateincome_count_gt0_all,2015,tab14,estateincome,count,Estate/trust income — number with income,gt0,filers,all,7,"$20,000 under $25,000",17715.0,15in14ar.xls,BH15,60,BH,15 +788,2015_tab14_estateincome_count_gt0_all,2015,tab14,estateincome,count,Estate/trust income — number with income,gt0,filers,all,8,"$25,000 under $30,000",10077.0,15in14ar.xls,BH16,60,BH,16 +789,2015_tab14_estateincome_count_gt0_all,2015,tab14,estateincome,count,Estate/trust income — number with income,gt0,filers,all,9,"$30,000 under $40,000",23005.0,15in14ar.xls,BH17,60,BH,17 +790,2015_tab14_estateincome_count_gt0_all,2015,tab14,estateincome,count,Estate/trust income — number with income,gt0,filers,all,10,"$40,000 under $50,000",23142.0,15in14ar.xls,BH18,60,BH,18 +791,2015_tab14_estateincome_count_gt0_all,2015,tab14,estateincome,count,Estate/trust income — number with income,gt0,filers,all,11,"$50,000 under $75,000",83233.0,15in14ar.xls,BH19,60,BH,19 +792,2015_tab14_estateincome_count_gt0_all,2015,tab14,estateincome,count,Estate/trust income — number with income,gt0,filers,all,12,"$75,000 under $100,000",82692.0,15in14ar.xls,BH20,60,BH,20 +793,2015_tab14_estateincome_count_gt0_all,2015,tab14,estateincome,count,Estate/trust income — number with income,gt0,filers,all,13,"$100,000 under $200,000",167481.0,15in14ar.xls,BH21,60,BH,21 +794,2015_tab14_estateincome_count_gt0_all,2015,tab14,estateincome,count,Estate/trust income — number with income,gt0,filers,all,14,"$200,000 under $500,000",98024.0,15in14ar.xls,BH22,60,BH,22 +795,2015_tab14_estateincome_count_gt0_all,2015,tab14,estateincome,count,Estate/trust income — number with income,gt0,filers,all,15,"$500,000 under $1,000,000",27807.0,15in14ar.xls,BH23,60,BH,23 +796,2015_tab14_estateincome_count_gt0_all,2015,tab14,estateincome,count,Estate/trust income — number with income,gt0,filers,all,16,"$1,000,000 under $1,500,000",9417.0,15in14ar.xls,BH24,60,BH,24 +797,2015_tab14_estateincome_count_gt0_all,2015,tab14,estateincome,count,Estate/trust income — number with income,gt0,filers,all,17,"$1,500,000 under $2,000,000",4786.0,15in14ar.xls,BH25,60,BH,25 +798,2015_tab14_estateincome_count_gt0_all,2015,tab14,estateincome,count,Estate/trust income — number with income,gt0,filers,all,18,"$2,000,000 under $5,000,000",8203.0,15in14ar.xls,BH26,60,BH,26 +799,2015_tab14_estateincome_count_gt0_all,2015,tab14,estateincome,count,Estate/trust income — number with income,gt0,filers,all,19,"$5,000,000 under $10,000,000",2705.0,15in14ar.xls,BH27,60,BH,27 +800,2015_tab14_estateincome_count_gt0_all,2015,tab14,estateincome,count,Estate/trust income — number with income,gt0,filers,all,20,"$10,000,000 or more",2077.0,15in14ar.xls,BH28,60,BH,28 +801,2015_tab14_estateincome_count_lt0_all,2015,tab14,estateincome,count,Estate/trust income — number with loss,lt0,filers,all,1,"All returns, total",57802.0,15in14ar.xls,BJ9,62,BJ,9 +802,2015_tab14_estateincome_count_lt0_all,2015,tab14,estateincome,count,Estate/trust income — number with loss,lt0,filers,all,2,No adjusted gross income,4797.0,15in14ar.xls,BJ10,62,BJ,10 +803,2015_tab14_estateincome_count_lt0_all,2015,tab14,estateincome,count,Estate/trust income — number with loss,lt0,filers,all,3,"$1 under $5,000",1034.0,15in14ar.xls,BJ11,62,BJ,11 +804,2015_tab14_estateincome_count_lt0_all,2015,tab14,estateincome,count,Estate/trust income — number with loss,lt0,filers,all,4,"$5,000 under $10,000",0.0,15in14ar.xls,BJ12,62,BJ,12 +805,2015_tab14_estateincome_count_lt0_all,2015,tab14,estateincome,count,Estate/trust income — number with loss,lt0,filers,all,5,"$10,000 under $15,000",3116.0,15in14ar.xls,BJ13,62,BJ,13 +806,2015_tab14_estateincome_count_lt0_all,2015,tab14,estateincome,count,Estate/trust income — number with loss,lt0,filers,all,6,"$15,000 under $20,000",0.0,15in14ar.xls,BJ14,62,BJ,14 +807,2015_tab14_estateincome_count_lt0_all,2015,tab14,estateincome,count,Estate/trust income — number with loss,lt0,filers,all,7,"$20,000 under $25,000",1040.0,15in14ar.xls,BJ15,62,BJ,15 +808,2015_tab14_estateincome_count_lt0_all,2015,tab14,estateincome,count,Estate/trust income — number with loss,lt0,filers,all,8,"$25,000 under $30,000",8.0,15in14ar.xls,BJ16,62,BJ,16 +809,2015_tab14_estateincome_count_lt0_all,2015,tab14,estateincome,count,Estate/trust income — number with loss,lt0,filers,all,9,"$30,000 under $40,000",1218.0,15in14ar.xls,BJ17,62,BJ,17 +810,2015_tab14_estateincome_count_lt0_all,2015,tab14,estateincome,count,Estate/trust income — number with loss,lt0,filers,all,10,"$40,000 under $50,000",1428.0,15in14ar.xls,BJ18,62,BJ,18 +811,2015_tab14_estateincome_count_lt0_all,2015,tab14,estateincome,count,Estate/trust income — number with loss,lt0,filers,all,11,"$50,000 under $75,000",3066.0,15in14ar.xls,BJ19,62,BJ,19 +812,2015_tab14_estateincome_count_lt0_all,2015,tab14,estateincome,count,Estate/trust income — number with loss,lt0,filers,all,12,"$75,000 under $100,000",5895.0,15in14ar.xls,BJ20,62,BJ,20 +813,2015_tab14_estateincome_count_lt0_all,2015,tab14,estateincome,count,Estate/trust income — number with loss,lt0,filers,all,13,"$100,000 under $200,000",15632.0,15in14ar.xls,BJ21,62,BJ,21 +814,2015_tab14_estateincome_count_lt0_all,2015,tab14,estateincome,count,Estate/trust income — number with loss,lt0,filers,all,14,"$200,000 under $500,000",9856.0,15in14ar.xls,BJ22,62,BJ,22 +815,2015_tab14_estateincome_count_lt0_all,2015,tab14,estateincome,count,Estate/trust income — number with loss,lt0,filers,all,15,"$500,000 under $1,000,000",4063.0,15in14ar.xls,BJ23,62,BJ,23 +816,2015_tab14_estateincome_count_lt0_all,2015,tab14,estateincome,count,Estate/trust income — number with loss,lt0,filers,all,16,"$1,000,000 under $1,500,000",1615.0,15in14ar.xls,BJ24,62,BJ,24 +817,2015_tab14_estateincome_count_lt0_all,2015,tab14,estateincome,count,Estate/trust income — number with loss,lt0,filers,all,17,"$1,500,000 under $2,000,000",935.0,15in14ar.xls,BJ25,62,BJ,25 +818,2015_tab14_estateincome_count_lt0_all,2015,tab14,estateincome,count,Estate/trust income — number with loss,lt0,filers,all,18,"$2,000,000 under $5,000,000",2021.0,15in14ar.xls,BJ26,62,BJ,26 +819,2015_tab14_estateincome_count_lt0_all,2015,tab14,estateincome,count,Estate/trust income — number with loss,lt0,filers,all,19,"$5,000,000 under $10,000,000",998.0,15in14ar.xls,BJ27,62,BJ,27 +820,2015_tab14_estateincome_count_lt0_all,2015,tab14,estateincome,count,Estate/trust income — number with loss,lt0,filers,all,20,"$10,000,000 or more",1080.0,15in14ar.xls,BJ28,62,BJ,28 +821,2015_tab14_exemptint_amount_nz_all,2015,tab14,exemptint,amount,Tax-exempt interest,nz,filers,all,1,"All returns, total",61871455000.0,15in14ar.xls,K9,11,K,9 +822,2015_tab14_exemptint_amount_nz_all,2015,tab14,exemptint,amount,Tax-exempt interest,nz,filers,all,2,No adjusted gross income,2127267000.0,15in14ar.xls,K10,11,K,10 +823,2015_tab14_exemptint_amount_nz_all,2015,tab14,exemptint,amount,Tax-exempt interest,nz,filers,all,3,"$1 under $5,000",222610000.0,15in14ar.xls,K11,11,K,11 +824,2015_tab14_exemptint_amount_nz_all,2015,tab14,exemptint,amount,Tax-exempt interest,nz,filers,all,4,"$5,000 under $10,000",285516000.0,15in14ar.xls,K12,11,K,12 +825,2015_tab14_exemptint_amount_nz_all,2015,tab14,exemptint,amount,Tax-exempt interest,nz,filers,all,5,"$10,000 under $15,000",438006000.0,15in14ar.xls,K13,11,K,13 +826,2015_tab14_exemptint_amount_nz_all,2015,tab14,exemptint,amount,Tax-exempt interest,nz,filers,all,6,"$15,000 under $20,000",322515000.0,15in14ar.xls,K14,11,K,14 +827,2015_tab14_exemptint_amount_nz_all,2015,tab14,exemptint,amount,Tax-exempt interest,nz,filers,all,7,"$20,000 under $25,000",689080000.0,15in14ar.xls,K15,11,K,15 +828,2015_tab14_exemptint_amount_nz_all,2015,tab14,exemptint,amount,Tax-exempt interest,nz,filers,all,8,"$25,000 under $30,000",720058000.0,15in14ar.xls,K16,11,K,16 +829,2015_tab14_exemptint_amount_nz_all,2015,tab14,exemptint,amount,Tax-exempt interest,nz,filers,all,9,"$30,000 under $40,000",1483145000.0,15in14ar.xls,K17,11,K,17 +830,2015_tab14_exemptint_amount_nz_all,2015,tab14,exemptint,amount,Tax-exempt interest,nz,filers,all,10,"$40,000 under $50,000",1177454000.0,15in14ar.xls,K18,11,K,18 +831,2015_tab14_exemptint_amount_nz_all,2015,tab14,exemptint,amount,Tax-exempt interest,nz,filers,all,11,"$50,000 under $75,000",3326378000.0,15in14ar.xls,K19,11,K,19 +832,2015_tab14_exemptint_amount_nz_all,2015,tab14,exemptint,amount,Tax-exempt interest,nz,filers,all,12,"$75,000 under $100,000",3510870000.0,15in14ar.xls,K20,11,K,20 +833,2015_tab14_exemptint_amount_nz_all,2015,tab14,exemptint,amount,Tax-exempt interest,nz,filers,all,13,"$100,000 under $200,000",11019779000.0,15in14ar.xls,K21,11,K,21 +834,2015_tab14_exemptint_amount_nz_all,2015,tab14,exemptint,amount,Tax-exempt interest,nz,filers,all,14,"$200,000 under $500,000",12958810000.0,15in14ar.xls,K22,11,K,22 +835,2015_tab14_exemptint_amount_nz_all,2015,tab14,exemptint,amount,Tax-exempt interest,nz,filers,all,15,"$500,000 under $1,000,000",6889926000.0,15in14ar.xls,K23,11,K,23 +836,2015_tab14_exemptint_amount_nz_all,2015,tab14,exemptint,amount,Tax-exempt interest,nz,filers,all,16,"$1,000,000 under $1,500,000",3113401000.0,15in14ar.xls,K24,11,K,24 +837,2015_tab14_exemptint_amount_nz_all,2015,tab14,exemptint,amount,Tax-exempt interest,nz,filers,all,17,"$1,500,000 under $2,000,000",1942691000.0,15in14ar.xls,K25,11,K,25 +838,2015_tab14_exemptint_amount_nz_all,2015,tab14,exemptint,amount,Tax-exempt interest,nz,filers,all,18,"$2,000,000 under $5,000,000",4872127000.0,15in14ar.xls,K26,11,K,26 +839,2015_tab14_exemptint_amount_nz_all,2015,tab14,exemptint,amount,Tax-exempt interest,nz,filers,all,19,"$5,000,000 under $10,000,000",2457559000.0,15in14ar.xls,K27,11,K,27 +840,2015_tab14_exemptint_amount_nz_all,2015,tab14,exemptint,amount,Tax-exempt interest,nz,filers,all,20,"$10,000,000 or more",4314263000.0,15in14ar.xls,K28,11,K,28 +841,2015_tab14_exemptint_count_nz_all,2015,tab14,exemptint,count,Tax-exempt interest — number of returns,nz,filers,all,1,"All returns, total",5827038.0,15in14ar.xls,J9,10,J,9 +842,2015_tab14_exemptint_count_nz_all,2015,tab14,exemptint,count,Tax-exempt interest — number of returns,nz,filers,all,2,No adjusted gross income,99447.0,15in14ar.xls,J10,10,J,10 +843,2015_tab14_exemptint_count_nz_all,2015,tab14,exemptint,count,Tax-exempt interest — number of returns,nz,filers,all,3,"$1 under $5,000",90663.0,15in14ar.xls,J11,10,J,11 +844,2015_tab14_exemptint_count_nz_all,2015,tab14,exemptint,count,Tax-exempt interest — number of returns,nz,filers,all,4,"$5,000 under $10,000",107702.0,15in14ar.xls,J12,10,J,12 +845,2015_tab14_exemptint_count_nz_all,2015,tab14,exemptint,count,Tax-exempt interest — number of returns,nz,filers,all,5,"$10,000 under $15,000",124166.0,15in14ar.xls,J13,10,J,13 +846,2015_tab14_exemptint_count_nz_all,2015,tab14,exemptint,count,Tax-exempt interest — number of returns,nz,filers,all,6,"$15,000 under $20,000",119598.0,15in14ar.xls,J14,10,J,14 +847,2015_tab14_exemptint_count_nz_all,2015,tab14,exemptint,count,Tax-exempt interest — number of returns,nz,filers,all,7,"$20,000 under $25,000",115165.0,15in14ar.xls,J15,10,J,15 +848,2015_tab14_exemptint_count_nz_all,2015,tab14,exemptint,count,Tax-exempt interest — number of returns,nz,filers,all,8,"$25,000 under $30,000",122363.0,15in14ar.xls,J16,10,J,16 +849,2015_tab14_exemptint_count_nz_all,2015,tab14,exemptint,count,Tax-exempt interest — number of returns,nz,filers,all,9,"$30,000 under $40,000",261909.0,15in14ar.xls,J17,10,J,17 +850,2015_tab14_exemptint_count_nz_all,2015,tab14,exemptint,count,Tax-exempt interest — number of returns,nz,filers,all,10,"$40,000 under $50,000",239360.0,15in14ar.xls,J18,10,J,18 +851,2015_tab14_exemptint_count_nz_all,2015,tab14,exemptint,count,Tax-exempt interest — number of returns,nz,filers,all,11,"$50,000 under $75,000",704167.0,15in14ar.xls,J19,10,J,19 +852,2015_tab14_exemptint_count_nz_all,2015,tab14,exemptint,count,Tax-exempt interest — number of returns,nz,filers,all,12,"$75,000 under $100,000",668070.0,15in14ar.xls,J20,10,J,20 +853,2015_tab14_exemptint_count_nz_all,2015,tab14,exemptint,count,Tax-exempt interest — number of returns,nz,filers,all,13,"$100,000 under $200,000",1581470.0,15in14ar.xls,J21,10,J,21 +854,2015_tab14_exemptint_count_nz_all,2015,tab14,exemptint,count,Tax-exempt interest — number of returns,nz,filers,all,14,"$200,000 under $500,000",1030721.0,15in14ar.xls,J22,10,J,22 +855,2015_tab14_exemptint_count_nz_all,2015,tab14,exemptint,count,Tax-exempt interest — number of returns,nz,filers,all,15,"$500,000 under $1,000,000",323378.0,15in14ar.xls,J23,10,J,23 +856,2015_tab14_exemptint_count_nz_all,2015,tab14,exemptint,count,Tax-exempt interest — number of returns,nz,filers,all,16,"$1,000,000 under $1,500,000",93059.0,15in14ar.xls,J24,10,J,24 +857,2015_tab14_exemptint_count_nz_all,2015,tab14,exemptint,count,Tax-exempt interest — number of returns,nz,filers,all,17,"$1,500,000 under $2,000,000",42319.0,15in14ar.xls,J25,10,J,25 +858,2015_tab14_exemptint_count_nz_all,2015,tab14,exemptint,count,Tax-exempt interest — number of returns,nz,filers,all,18,"$2,000,000 under $5,000,000",69777.0,15in14ar.xls,J26,10,J,26 +859,2015_tab14_exemptint_count_nz_all,2015,tab14,exemptint,count,Tax-exempt interest — number of returns,nz,filers,all,19,"$5,000,000 under $10,000,000",19636.0,15in14ar.xls,J27,10,J,27 +860,2015_tab14_exemptint_count_nz_all,2015,tab14,exemptint,count,Tax-exempt interest — number of returns,nz,filers,all,20,"$10,000,000 or more",14069.0,15in14ar.xls,J28,10,J,28 +861,2015_tab14_exemption_amount_nz_all,2015,tab14,exemption,amount,Personal exemptions (2015 only),nz,filers,all,1,"All returns, total",1140740415000.0,15in14ar.xls,DY9,129,DY,9 +862,2015_tab14_exemption_amount_nz_all,2015,tab14,exemption,amount,Personal exemptions (2015 only),nz,filers,all,2,No adjusted gross income,12446491000.0,15in14ar.xls,DY10,129,DY,10 +863,2015_tab14_exemption_amount_nz_all,2015,tab14,exemption,amount,Personal exemptions (2015 only),nz,filers,all,3,"$1 under $5,000",31087459000.0,15in14ar.xls,DY11,129,DY,11 +864,2015_tab14_exemption_amount_nz_all,2015,tab14,exemption,amount,Personal exemptions (2015 only),nz,filers,all,4,"$5,000 under $10,000",52312323000.0,15in14ar.xls,DY12,129,DY,12 +865,2015_tab14_exemption_amount_nz_all,2015,tab14,exemption,amount,Personal exemptions (2015 only),nz,filers,all,5,"$10,000 under $15,000",78326220000.0,15in14ar.xls,DY13,129,DY,13 +866,2015_tab14_exemption_amount_nz_all,2015,tab14,exemption,amount,Personal exemptions (2015 only),nz,filers,all,6,"$15,000 under $20,000",80165929000.0,15in14ar.xls,DY14,129,DY,14 +867,2015_tab14_exemption_amount_nz_all,2015,tab14,exemption,amount,Personal exemptions (2015 only),nz,filers,all,7,"$20,000 under $25,000",72448913000.0,15in14ar.xls,DY15,129,DY,15 +868,2015_tab14_exemption_amount_nz_all,2015,tab14,exemption,amount,Personal exemptions (2015 only),nz,filers,all,8,"$25,000 under $30,000",66284851000.0,15in14ar.xls,DY16,129,DY,16 +869,2015_tab14_exemption_amount_nz_all,2015,tab14,exemption,amount,Personal exemptions (2015 only),nz,filers,all,9,"$30,000 under $40,000",115442883000.0,15in14ar.xls,DY17,129,DY,17 +870,2015_tab14_exemption_amount_nz_all,2015,tab14,exemption,amount,Personal exemptions (2015 only),nz,filers,all,10,"$40,000 under $50,000",91236099000.0,15in14ar.xls,DY18,129,DY,18 +871,2015_tab14_exemption_amount_nz_all,2015,tab14,exemption,amount,Personal exemptions (2015 only),nz,filers,all,11,"$50,000 under $75,000",169228826000.0,15in14ar.xls,DY19,129,DY,19 +872,2015_tab14_exemption_amount_nz_all,2015,tab14,exemption,amount,Personal exemptions (2015 only),nz,filers,all,12,"$75,000 under $100,000",122634902000.0,15in14ar.xls,DY20,129,DY,20 +873,2015_tab14_exemption_amount_nz_all,2015,tab14,exemption,amount,Personal exemptions (2015 only),nz,filers,all,13,"$100,000 under $200,000",198173870000.0,15in14ar.xls,DY21,129,DY,21 +874,2015_tab14_exemption_amount_nz_all,2015,tab14,exemption,amount,Personal exemptions (2015 only),nz,filers,all,14,"$200,000 under $500,000",50951651000.0,15in14ar.xls,DY22,129,DY,22 +875,2015_tab14_exemption_amount_nz_all,2015,tab14,exemption,amount,Personal exemptions (2015 only),nz,filers,all,15,"$500,000 under $1,000,000",0.0,15in14ar.xls,DY23,129,DY,23 +876,2015_tab14_exemption_amount_nz_all,2015,tab14,exemption,amount,Personal exemptions (2015 only),nz,filers,all,16,"$1,000,000 under $1,500,000",0.0,15in14ar.xls,DY24,129,DY,24 +877,2015_tab14_exemption_amount_nz_all,2015,tab14,exemption,amount,Personal exemptions (2015 only),nz,filers,all,17,"$1,500,000 under $2,000,000",0.0,15in14ar.xls,DY25,129,DY,25 +878,2015_tab14_exemption_amount_nz_all,2015,tab14,exemption,amount,Personal exemptions (2015 only),nz,filers,all,18,"$2,000,000 under $5,000,000",0.0,15in14ar.xls,DY26,129,DY,26 +879,2015_tab14_exemption_amount_nz_all,2015,tab14,exemption,amount,Personal exemptions (2015 only),nz,filers,all,19,"$5,000,000 under $10,000,000",0.0,15in14ar.xls,DY27,129,DY,27 +880,2015_tab14_exemption_amount_nz_all,2015,tab14,exemption,amount,Personal exemptions (2015 only),nz,filers,all,20,"$10,000,000 or more",0.0,15in14ar.xls,DY28,129,DY,28 +881,2015_tab14_exemptions_n_number_nz_all,2015,tab14,exemptions_n,number,Number of exemptions (2015 only),nz,filers,all,1,"All returns, total",291938777.0,15in14ar.xls,DX9,128,DX,9 +882,2015_tab14_exemptions_n_number_nz_all,2015,tab14,exemptions_n,number,Number of exemptions (2015 only),nz,filers,all,2,No adjusted gross income,3117150.0,15in14ar.xls,DX10,128,DX,10 +883,2015_tab14_exemptions_n_number_nz_all,2015,tab14,exemptions_n,number,Number of exemptions (2015 only),nz,filers,all,3,"$1 under $5,000",7781604.0,15in14ar.xls,DX11,128,DX,11 +884,2015_tab14_exemptions_n_number_nz_all,2015,tab14,exemptions_n,number,Number of exemptions (2015 only),nz,filers,all,4,"$5,000 under $10,000",13087264.0,15in14ar.xls,DX12,128,DX,12 +885,2015_tab14_exemptions_n_number_nz_all,2015,tab14,exemptions_n,number,Number of exemptions (2015 only),nz,filers,all,5,"$10,000 under $15,000",19593638.0,15in14ar.xls,DX13,128,DX,13 +886,2015_tab14_exemptions_n_number_nz_all,2015,tab14,exemptions_n,number,Number of exemptions (2015 only),nz,filers,all,6,"$15,000 under $20,000",20051079.0,15in14ar.xls,DX14,128,DX,14 +887,2015_tab14_exemptions_n_number_nz_all,2015,tab14,exemptions_n,number,Number of exemptions (2015 only),nz,filers,all,7,"$20,000 under $25,000",18120763.0,15in14ar.xls,DX15,128,DX,15 +888,2015_tab14_exemptions_n_number_nz_all,2015,tab14,exemptions_n,number,Number of exemptions (2015 only),nz,filers,all,8,"$25,000 under $30,000",16579665.0,15in14ar.xls,DX16,128,DX,16 +889,2015_tab14_exemptions_n_number_nz_all,2015,tab14,exemptions_n,number,Number of exemptions (2015 only),nz,filers,all,9,"$30,000 under $40,000",28873650.0,15in14ar.xls,DX17,128,DX,17 +890,2015_tab14_exemptions_n_number_nz_all,2015,tab14,exemptions_n,number,Number of exemptions (2015 only),nz,filers,all,10,"$40,000 under $50,000",22819923.0,15in14ar.xls,DX18,128,DX,18 +891,2015_tab14_exemptions_n_number_nz_all,2015,tab14,exemptions_n,number,Number of exemptions (2015 only),nz,filers,all,11,"$50,000 under $75,000",42326102.0,15in14ar.xls,DX19,128,DX,19 +892,2015_tab14_exemptions_n_number_nz_all,2015,tab14,exemptions_n,number,Number of exemptions (2015 only),nz,filers,all,12,"$75,000 under $100,000",30669581.0,15in14ar.xls,DX20,128,DX,20 +893,2015_tab14_exemptions_n_number_nz_all,2015,tab14,exemptions_n,number,Number of exemptions (2015 only),nz,filers,all,13,"$100,000 under $200,000",49572105.0,15in14ar.xls,DX21,128,DX,21 +894,2015_tab14_exemptions_n_number_nz_all,2015,tab14,exemptions_n,number,Number of exemptions (2015 only),nz,filers,all,14,"$200,000 under $500,000",15480744.0,15in14ar.xls,DX22,128,DX,22 +895,2015_tab14_exemptions_n_number_nz_all,2015,tab14,exemptions_n,number,Number of exemptions (2015 only),nz,filers,all,15,"$500,000 under $1,000,000",2597527.0,15in14ar.xls,DX23,128,DX,23 +896,2015_tab14_exemptions_n_number_nz_all,2015,tab14,exemptions_n,number,Number of exemptions (2015 only),nz,filers,all,16,"$1,000,000 under $1,500,000",568476.0,15in14ar.xls,DX24,128,DX,24 +897,2015_tab14_exemptions_n_number_nz_all,2015,tab14,exemptions_n,number,Number of exemptions (2015 only),nz,filers,all,17,"$1,500,000 under $2,000,000",231052.0,15in14ar.xls,DX25,128,DX,25 +898,2015_tab14_exemptions_n_number_nz_all,2015,tab14,exemptions_n,number,Number of exemptions (2015 only),nz,filers,all,18,"$2,000,000 under $5,000,000",335819.0,15in14ar.xls,DX26,128,DX,26 +899,2015_tab14_exemptions_n_number_nz_all,2015,tab14,exemptions_n,number,Number of exemptions (2015 only),nz,filers,all,19,"$5,000,000 under $10,000,000",81601.0,15in14ar.xls,DX27,128,DX,27 +900,2015_tab14_exemptions_n_number_nz_all,2015,tab14,exemptions_n,number,Number of exemptions (2015 only),nz,filers,all,20,"$10,000,000 or more",51036.0,15in14ar.xls,DX28,128,DX,28 +901,2015_tab14_iradist_amount_nz_all,2015,tab14,iradist,amount,IRA distributions,nz,filers,all,1,"All returns, total",253213041000.0,15in14ar.xls,AI9,35,AI,9 +902,2015_tab14_iradist_amount_nz_all,2015,tab14,iradist,amount,IRA distributions,nz,filers,all,2,No adjusted gross income,2064540000.0,15in14ar.xls,AI10,35,AI,10 +903,2015_tab14_iradist_amount_nz_all,2015,tab14,iradist,amount,IRA distributions,nz,filers,all,3,"$1 under $5,000",1141198000.0,15in14ar.xls,AI11,35,AI,11 +904,2015_tab14_iradist_amount_nz_all,2015,tab14,iradist,amount,IRA distributions,nz,filers,all,4,"$5,000 under $10,000",2781145000.0,15in14ar.xls,AI12,35,AI,12 +905,2015_tab14_iradist_amount_nz_all,2015,tab14,iradist,amount,IRA distributions,nz,filers,all,5,"$10,000 under $15,000",4470039000.0,15in14ar.xls,AI13,35,AI,13 +906,2015_tab14_iradist_amount_nz_all,2015,tab14,iradist,amount,IRA distributions,nz,filers,all,6,"$15,000 under $20,000",4835309000.0,15in14ar.xls,AI14,35,AI,14 +907,2015_tab14_iradist_amount_nz_all,2015,tab14,iradist,amount,IRA distributions,nz,filers,all,7,"$20,000 under $25,000",5104234000.0,15in14ar.xls,AI15,35,AI,15 +908,2015_tab14_iradist_amount_nz_all,2015,tab14,iradist,amount,IRA distributions,nz,filers,all,8,"$25,000 under $30,000",4905412000.0,15in14ar.xls,AI16,35,AI,16 +909,2015_tab14_iradist_amount_nz_all,2015,tab14,iradist,amount,IRA distributions,nz,filers,all,9,"$30,000 under $40,000",10670749000.0,15in14ar.xls,AI17,35,AI,17 +910,2015_tab14_iradist_amount_nz_all,2015,tab14,iradist,amount,IRA distributions,nz,filers,all,10,"$40,000 under $50,000",10855178000.0,15in14ar.xls,AI18,35,AI,18 +911,2015_tab14_iradist_amount_nz_all,2015,tab14,iradist,amount,IRA distributions,nz,filers,all,11,"$50,000 under $75,000",32261073000.0,15in14ar.xls,AI19,35,AI,19 +912,2015_tab14_iradist_amount_nz_all,2015,tab14,iradist,amount,IRA distributions,nz,filers,all,12,"$75,000 under $100,000",36089085000.0,15in14ar.xls,AI20,35,AI,20 +913,2015_tab14_iradist_amount_nz_all,2015,tab14,iradist,amount,IRA distributions,nz,filers,all,13,"$100,000 under $200,000",79751792000.0,15in14ar.xls,AI21,35,AI,21 +914,2015_tab14_iradist_amount_nz_all,2015,tab14,iradist,amount,IRA distributions,nz,filers,all,14,"$200,000 under $500,000",44053588000.0,15in14ar.xls,AI22,35,AI,22 +915,2015_tab14_iradist_amount_nz_all,2015,tab14,iradist,amount,IRA distributions,nz,filers,all,15,"$500,000 under $1,000,000",9379854000.0,15in14ar.xls,AI23,35,AI,23 +916,2015_tab14_iradist_amount_nz_all,2015,tab14,iradist,amount,IRA distributions,nz,filers,all,16,"$1,000,000 under $1,500,000",1851835000.0,15in14ar.xls,AI24,35,AI,24 +917,2015_tab14_iradist_amount_nz_all,2015,tab14,iradist,amount,IRA distributions,nz,filers,all,17,"$1,500,000 under $2,000,000",763721000.0,15in14ar.xls,AI25,35,AI,25 +918,2015_tab14_iradist_amount_nz_all,2015,tab14,iradist,amount,IRA distributions,nz,filers,all,18,"$2,000,000 under $5,000,000",1295739000.0,15in14ar.xls,AI26,35,AI,26 +919,2015_tab14_iradist_amount_nz_all,2015,tab14,iradist,amount,IRA distributions,nz,filers,all,19,"$5,000,000 under $10,000,000",465381000.0,15in14ar.xls,AI27,35,AI,27 +920,2015_tab14_iradist_amount_nz_all,2015,tab14,iradist,amount,IRA distributions,nz,filers,all,20,"$10,000,000 or more",473170000.0,15in14ar.xls,AI28,35,AI,28 +921,2015_tab14_iradist_count_nz_all,2015,tab14,iradist,count,IRA distributions — number of returns,nz,filers,all,1,"All returns, total",14159018.0,15in14ar.xls,AH9,34,AH,9 +922,2015_tab14_iradist_count_nz_all,2015,tab14,iradist,count,IRA distributions — number of returns,nz,filers,all,2,No adjusted gross income,137120.0,15in14ar.xls,AH10,34,AH,10 +923,2015_tab14_iradist_count_nz_all,2015,tab14,iradist,count,IRA distributions — number of returns,nz,filers,all,3,"$1 under $5,000",341198.0,15in14ar.xls,AH11,34,AH,11 +924,2015_tab14_iradist_count_nz_all,2015,tab14,iradist,count,IRA distributions — number of returns,nz,filers,all,4,"$5,000 under $10,000",590259.0,15in14ar.xls,AH12,34,AH,12 +925,2015_tab14_iradist_count_nz_all,2015,tab14,iradist,count,IRA distributions — number of returns,nz,filers,all,5,"$10,000 under $15,000",724858.0,15in14ar.xls,AH13,34,AH,13 +926,2015_tab14_iradist_count_nz_all,2015,tab14,iradist,count,IRA distributions — number of returns,nz,filers,all,6,"$15,000 under $20,000",666843.0,15in14ar.xls,AH14,34,AH,14 +927,2015_tab14_iradist_count_nz_all,2015,tab14,iradist,count,IRA distributions — number of returns,nz,filers,all,7,"$20,000 under $25,000",636239.0,15in14ar.xls,AH15,34,AH,15 +928,2015_tab14_iradist_count_nz_all,2015,tab14,iradist,count,IRA distributions — number of returns,nz,filers,all,8,"$25,000 under $30,000",552767.0,15in14ar.xls,AH16,34,AH,16 +929,2015_tab14_iradist_count_nz_all,2015,tab14,iradist,count,IRA distributions — number of returns,nz,filers,all,9,"$30,000 under $40,000",1078333.0,15in14ar.xls,AH17,34,AH,17 +930,2015_tab14_iradist_count_nz_all,2015,tab14,iradist,count,IRA distributions — number of returns,nz,filers,all,10,"$40,000 under $50,000",991898.0,15in14ar.xls,AH18,34,AH,18 +931,2015_tab14_iradist_count_nz_all,2015,tab14,iradist,count,IRA distributions — number of returns,nz,filers,all,11,"$50,000 under $75,000",2370301.0,15in14ar.xls,AH19,34,AH,19 +932,2015_tab14_iradist_count_nz_all,2015,tab14,iradist,count,IRA distributions — number of returns,nz,filers,all,12,"$75,000 under $100,000",1933400.0,15in14ar.xls,AH20,34,AH,20 +933,2015_tab14_iradist_count_nz_all,2015,tab14,iradist,count,IRA distributions — number of returns,nz,filers,all,13,"$100,000 under $200,000",2997506.0,15in14ar.xls,AH21,34,AH,21 +934,2015_tab14_iradist_count_nz_all,2015,tab14,iradist,count,IRA distributions — number of returns,nz,filers,all,14,"$200,000 under $500,000",938904.0,15in14ar.xls,AH22,34,AH,22 +935,2015_tab14_iradist_count_nz_all,2015,tab14,iradist,count,IRA distributions — number of returns,nz,filers,all,15,"$500,000 under $1,000,000",135662.0,15in14ar.xls,AH23,34,AH,23 +936,2015_tab14_iradist_count_nz_all,2015,tab14,iradist,count,IRA distributions — number of returns,nz,filers,all,16,"$1,000,000 under $1,500,000",29577.0,15in14ar.xls,AH24,34,AH,24 +937,2015_tab14_iradist_count_nz_all,2015,tab14,iradist,count,IRA distributions — number of returns,nz,filers,all,17,"$1,500,000 under $2,000,000",11523.0,15in14ar.xls,AH25,34,AH,25 +938,2015_tab14_iradist_count_nz_all,2015,tab14,iradist,count,IRA distributions — number of returns,nz,filers,all,18,"$2,000,000 under $5,000,000",16389.0,15in14ar.xls,AH26,34,AH,26 +939,2015_tab14_iradist_count_nz_all,2015,tab14,iradist,count,IRA distributions — number of returns,nz,filers,all,19,"$5,000,000 under $10,000,000",3940.0,15in14ar.xls,AH27,34,AH,27 +940,2015_tab14_iradist_count_nz_all,2015,tab14,iradist,count,IRA distributions — number of returns,nz,filers,all,20,"$10,000,000 or more",2303.0,15in14ar.xls,AH28,34,AH,28 +941,2015_tab14_itemded_amount_nz_all,2015,tab14,itemded,amount,Total itemized deductions,nz,filers,all,1,"All returns, total",1257437010000.0,15in14ar.xls,DW9,127,DW,9 +942,2015_tab14_itemded_amount_nz_all,2015,tab14,itemded,amount,Total itemized deductions,nz,filers,all,2,No adjusted gross income,0.0,15in14ar.xls,DW10,127,DW,10 +943,2015_tab14_itemded_amount_nz_all,2015,tab14,itemded,amount,Total itemized deductions,nz,filers,all,3,"$1 under $5,000",5062303000.0,15in14ar.xls,DW11,127,DW,11 +944,2015_tab14_itemded_amount_nz_all,2015,tab14,itemded,amount,Total itemized deductions,nz,filers,all,4,"$5,000 under $10,000",6390443000.0,15in14ar.xls,DW12,127,DW,12 +945,2015_tab14_itemded_amount_nz_all,2015,tab14,itemded,amount,Total itemized deductions,nz,filers,all,5,"$10,000 under $15,000",9962058000.0,15in14ar.xls,DW13,127,DW,13 +946,2015_tab14_itemded_amount_nz_all,2015,tab14,itemded,amount,Total itemized deductions,nz,filers,all,6,"$15,000 under $20,000",12524176000.0,15in14ar.xls,DW14,127,DW,14 +947,2015_tab14_itemded_amount_nz_all,2015,tab14,itemded,amount,Total itemized deductions,nz,filers,all,7,"$20,000 under $25,000",14912176000.0,15in14ar.xls,DW15,127,DW,15 +948,2015_tab14_itemded_amount_nz_all,2015,tab14,itemded,amount,Total itemized deductions,nz,filers,all,8,"$25,000 under $30,000",17588605000.0,15in14ar.xls,DW16,127,DW,16 +949,2015_tab14_itemded_amount_nz_all,2015,tab14,itemded,amount,Total itemized deductions,nz,filers,all,9,"$30,000 under $40,000",40798529000.0,15in14ar.xls,DW17,127,DW,17 +950,2015_tab14_itemded_amount_nz_all,2015,tab14,itemded,amount,Total itemized deductions,nz,filers,all,10,"$40,000 under $50,000",48716667000.0,15in14ar.xls,DW18,127,DW,18 +951,2015_tab14_itemded_amount_nz_all,2015,tab14,itemded,amount,Total itemized deductions,nz,filers,all,11,"$50,000 under $75,000",134805158000.0,15in14ar.xls,DW19,127,DW,19 +952,2015_tab14_itemded_amount_nz_all,2015,tab14,itemded,amount,Total itemized deductions,nz,filers,all,12,"$75,000 under $100,000",143109518000.0,15in14ar.xls,DW20,127,DW,20 +953,2015_tab14_itemded_amount_nz_all,2015,tab14,itemded,amount,Total itemized deductions,nz,filers,all,13,"$100,000 under $200,000",358208357000.0,15in14ar.xls,DW21,127,DW,21 +954,2015_tab14_itemded_amount_nz_all,2015,tab14,itemded,amount,Total itemized deductions,nz,filers,all,14,"$200,000 under $500,000",220760559000.0,15in14ar.xls,DW22,127,DW,22 +955,2015_tab14_itemded_amount_nz_all,2015,tab14,itemded,amount,Total itemized deductions,nz,filers,all,15,"$500,000 under $1,000,000",69703881000.0,15in14ar.xls,DW23,127,DW,23 +956,2015_tab14_itemded_amount_nz_all,2015,tab14,itemded,amount,Total itemized deductions,nz,filers,all,16,"$1,000,000 under $1,500,000",26437560000.0,15in14ar.xls,DW24,127,DW,24 +957,2015_tab14_itemded_amount_nz_all,2015,tab14,itemded,amount,Total itemized deductions,nz,filers,all,17,"$1,500,000 under $2,000,000",14954416000.0,15in14ar.xls,DW25,127,DW,25 +958,2015_tab14_itemded_amount_nz_all,2015,tab14,itemded,amount,Total itemized deductions,nz,filers,all,18,"$2,000,000 under $5,000,000",38021038000.0,15in14ar.xls,DW26,127,DW,26 +959,2015_tab14_itemded_amount_nz_all,2015,tab14,itemded,amount,Total itemized deductions,nz,filers,all,19,"$5,000,000 under $10,000,000",21753953000.0,15in14ar.xls,DW27,127,DW,27 +960,2015_tab14_itemded_amount_nz_all,2015,tab14,itemded,amount,Total itemized deductions,nz,filers,all,20,"$10,000,000 or more",73727614000.0,15in14ar.xls,DW28,127,DW,28 +961,2015_tab14_itemded_count_nz_all,2015,tab14,itemded,count,Itemized deductions — number of returns,nz,filers,all,1,"All returns, total",44567263.0,15in14ar.xls,DV9,126,DV,9 +962,2015_tab14_itemded_count_nz_all,2015,tab14,itemded,count,Itemized deductions — number of returns,nz,filers,all,2,No adjusted gross income,0.0,15in14ar.xls,DV10,126,DV,10 +963,2015_tab14_itemded_count_nz_all,2015,tab14,itemded,count,Itemized deductions — number of returns,nz,filers,all,3,"$1 under $5,000",317443.0,15in14ar.xls,DV11,126,DV,11 +964,2015_tab14_itemded_count_nz_all,2015,tab14,itemded,count,Itemized deductions — number of returns,nz,filers,all,4,"$5,000 under $10,000",384355.0,15in14ar.xls,DV12,126,DV,12 +965,2015_tab14_itemded_count_nz_all,2015,tab14,itemded,count,Itemized deductions — number of returns,nz,filers,all,5,"$10,000 under $15,000",662599.0,15in14ar.xls,DV13,126,DV,13 +966,2015_tab14_itemded_count_nz_all,2015,tab14,itemded,count,Itemized deductions — number of returns,nz,filers,all,6,"$15,000 under $20,000",811728.0,15in14ar.xls,DV14,126,DV,14 +967,2015_tab14_itemded_count_nz_all,2015,tab14,itemded,count,Itemized deductions — number of returns,nz,filers,all,7,"$20,000 under $25,000",941085.0,15in14ar.xls,DV15,126,DV,15 +968,2015_tab14_itemded_count_nz_all,2015,tab14,itemded,count,Itemized deductions — number of returns,nz,filers,all,8,"$25,000 under $30,000",1081500.0,15in14ar.xls,DV16,126,DV,16 +969,2015_tab14_itemded_count_nz_all,2015,tab14,itemded,count,Itemized deductions — number of returns,nz,filers,all,9,"$30,000 under $40,000",2565311.0,15in14ar.xls,DV17,126,DV,17 +970,2015_tab14_itemded_count_nz_all,2015,tab14,itemded,count,Itemized deductions — number of returns,nz,filers,all,10,"$40,000 under $50,000",2983529.0,15in14ar.xls,DV18,126,DV,18 +971,2015_tab14_itemded_count_nz_all,2015,tab14,itemded,count,Itemized deductions — number of returns,nz,filers,all,11,"$50,000 under $75,000",7518141.0,15in14ar.xls,DV19,126,DV,19 +972,2015_tab14_itemded_count_nz_all,2015,tab14,itemded,count,Itemized deductions — number of returns,nz,filers,all,12,"$75,000 under $100,000",6957567.0,15in14ar.xls,DV20,126,DV,20 +973,2015_tab14_itemded_count_nz_all,2015,tab14,itemded,count,Itemized deductions — number of returns,nz,filers,all,13,"$100,000 under $200,000",14038259.0,15in14ar.xls,DV21,126,DV,21 +974,2015_tab14_itemded_count_nz_all,2015,tab14,itemded,count,Itemized deductions — number of returns,nz,filers,all,14,"$200,000 under $500,000",5083499.0,15in14ar.xls,DV22,126,DV,22 +975,2015_tab14_itemded_count_nz_all,2015,tab14,itemded,count,Itemized deductions — number of returns,nz,filers,all,15,"$500,000 under $1,000,000",821784.0,15in14ar.xls,DV23,126,DV,23 +976,2015_tab14_itemded_count_nz_all,2015,tab14,itemded,count,Itemized deductions — number of returns,nz,filers,all,16,"$1,000,000 under $1,500,000",177407.0,15in14ar.xls,DV24,126,DV,24 +977,2015_tab14_itemded_count_nz_all,2015,tab14,itemded,count,Itemized deductions — number of returns,nz,filers,all,17,"$1,500,000 under $2,000,000",71685.0,15in14ar.xls,DV25,126,DV,25 +978,2015_tab14_itemded_count_nz_all,2015,tab14,itemded,count,Itemized deductions — number of returns,nz,filers,all,18,"$2,000,000 under $5,000,000",106755.0,15in14ar.xls,DV26,126,DV,26 +979,2015_tab14_itemded_count_nz_all,2015,tab14,itemded,count,Itemized deductions — number of returns,nz,filers,all,19,"$5,000,000 under $10,000,000",27125.0,15in14ar.xls,DV27,126,DV,27 +980,2015_tab14_itemded_count_nz_all,2015,tab14,itemded,count,Itemized deductions — number of returns,nz,filers,all,20,"$10,000,000 or more",17490.0,15in14ar.xls,DV28,126,DV,28 +981,2015_tab14_orddiv_amount_nz_all,2015,tab14,orddiv,amount,Ordinary dividends,nz,filers,all,1,"All returns, total",260252720000.0,15in14ar.xls,M9,13,M,9 +982,2015_tab14_orddiv_amount_nz_all,2015,tab14,orddiv,amount,Ordinary dividends,nz,filers,all,2,No adjusted gross income,5031112000.0,15in14ar.xls,M10,13,M,10 +983,2015_tab14_orddiv_amount_nz_all,2015,tab14,orddiv,amount,Ordinary dividends,nz,filers,all,3,"$1 under $5,000",891234000.0,15in14ar.xls,M11,13,M,11 +984,2015_tab14_orddiv_amount_nz_all,2015,tab14,orddiv,amount,Ordinary dividends,nz,filers,all,4,"$5,000 under $10,000",1434663000.0,15in14ar.xls,M12,13,M,12 +985,2015_tab14_orddiv_amount_nz_all,2015,tab14,orddiv,amount,Ordinary dividends,nz,filers,all,5,"$10,000 under $15,000",1924846000.0,15in14ar.xls,M13,13,M,13 +986,2015_tab14_orddiv_amount_nz_all,2015,tab14,orddiv,amount,Ordinary dividends,nz,filers,all,6,"$15,000 under $20,000",1911854000.0,15in14ar.xls,M14,13,M,14 +987,2015_tab14_orddiv_amount_nz_all,2015,tab14,orddiv,amount,Ordinary dividends,nz,filers,all,7,"$20,000 under $25,000",1967324000.0,15in14ar.xls,M15,13,M,15 +988,2015_tab14_orddiv_amount_nz_all,2015,tab14,orddiv,amount,Ordinary dividends,nz,filers,all,8,"$25,000 under $30,000",2129499000.0,15in14ar.xls,M16,13,M,16 +989,2015_tab14_orddiv_amount_nz_all,2015,tab14,orddiv,amount,Ordinary dividends,nz,filers,all,9,"$30,000 under $40,000",4356423000.0,15in14ar.xls,M17,13,M,17 +990,2015_tab14_orddiv_amount_nz_all,2015,tab14,orddiv,amount,Ordinary dividends,nz,filers,all,10,"$40,000 under $50,000",4083422000.0,15in14ar.xls,M18,13,M,18 +991,2015_tab14_orddiv_amount_nz_all,2015,tab14,orddiv,amount,Ordinary dividends,nz,filers,all,11,"$50,000 under $75,000",13570392000.0,15in14ar.xls,M19,13,M,19 +992,2015_tab14_orddiv_amount_nz_all,2015,tab14,orddiv,amount,Ordinary dividends,nz,filers,all,12,"$75,000 under $100,000",13679218000.0,15in14ar.xls,M20,13,M,20 +993,2015_tab14_orddiv_amount_nz_all,2015,tab14,orddiv,amount,Ordinary dividends,nz,filers,all,13,"$100,000 under $200,000",43684842000.0,15in14ar.xls,M21,13,M,21 +994,2015_tab14_orddiv_amount_nz_all,2015,tab14,orddiv,amount,Ordinary dividends,nz,filers,all,14,"$200,000 under $500,000",45283033000.0,15in14ar.xls,M22,13,M,22 +995,2015_tab14_orddiv_amount_nz_all,2015,tab14,orddiv,amount,Ordinary dividends,nz,filers,all,15,"$500,000 under $1,000,000",24854824000.0,15in14ar.xls,M23,13,M,23 +996,2015_tab14_orddiv_amount_nz_all,2015,tab14,orddiv,amount,Ordinary dividends,nz,filers,all,16,"$1,000,000 under $1,500,000",11605051000.0,15in14ar.xls,M24,13,M,24 +997,2015_tab14_orddiv_amount_nz_all,2015,tab14,orddiv,amount,Ordinary dividends,nz,filers,all,17,"$1,500,000 under $2,000,000",6994679000.0,15in14ar.xls,M25,13,M,25 +998,2015_tab14_orddiv_amount_nz_all,2015,tab14,orddiv,amount,Ordinary dividends,nz,filers,all,18,"$2,000,000 under $5,000,000",19650375000.0,15in14ar.xls,M26,13,M,26 +999,2015_tab14_orddiv_amount_nz_all,2015,tab14,orddiv,amount,Ordinary dividends,nz,filers,all,19,"$5,000,000 under $10,000,000",11752780000.0,15in14ar.xls,M27,13,M,27 +1000,2015_tab14_orddiv_amount_nz_all,2015,tab14,orddiv,amount,Ordinary dividends,nz,filers,all,20,"$10,000,000 or more",45447147000.0,15in14ar.xls,M28,13,M,28 +1001,2015_tab14_orddiv_count_nz_all,2015,tab14,orddiv,count,Ordinary dividends — number of returns,nz,filers,all,1,"All returns, total",27607044.0,15in14ar.xls,L9,12,L,9 +1002,2015_tab14_orddiv_count_nz_all,2015,tab14,orddiv,count,Ordinary dividends — number of returns,nz,filers,all,2,No adjusted gross income,468764.0,15in14ar.xls,L10,12,L,10 +1003,2015_tab14_orddiv_count_nz_all,2015,tab14,orddiv,count,Ordinary dividends — number of returns,nz,filers,all,3,"$1 under $5,000",933634.0,15in14ar.xls,L11,12,L,11 +1004,2015_tab14_orddiv_count_nz_all,2015,tab14,orddiv,count,Ordinary dividends — number of returns,nz,filers,all,4,"$5,000 under $10,000",857987.0,15in14ar.xls,L12,12,L,12 +1005,2015_tab14_orddiv_count_nz_all,2015,tab14,orddiv,count,Ordinary dividends — number of returns,nz,filers,all,5,"$10,000 under $15,000",875080.0,15in14ar.xls,L13,12,L,13 +1006,2015_tab14_orddiv_count_nz_all,2015,tab14,orddiv,count,Ordinary dividends — number of returns,nz,filers,all,6,"$15,000 under $20,000",878063.0,15in14ar.xls,L14,12,L,14 +1007,2015_tab14_orddiv_count_nz_all,2015,tab14,orddiv,count,Ordinary dividends — number of returns,nz,filers,all,7,"$20,000 under $25,000",810499.0,15in14ar.xls,L15,12,L,15 +1008,2015_tab14_orddiv_count_nz_all,2015,tab14,orddiv,count,Ordinary dividends — number of returns,nz,filers,all,8,"$25,000 under $30,000",778412.0,15in14ar.xls,L16,12,L,16 +1009,2015_tab14_orddiv_count_nz_all,2015,tab14,orddiv,count,Ordinary dividends — number of returns,nz,filers,all,9,"$30,000 under $40,000",1576139.0,15in14ar.xls,L17,12,L,17 +1010,2015_tab14_orddiv_count_nz_all,2015,tab14,orddiv,count,Ordinary dividends — number of returns,nz,filers,all,10,"$40,000 under $50,000",1514544.0,15in14ar.xls,L18,12,L,18 +1011,2015_tab14_orddiv_count_nz_all,2015,tab14,orddiv,count,Ordinary dividends — number of returns,nz,filers,all,11,"$50,000 under $75,000",3896386.0,15in14ar.xls,L19,12,L,19 +1012,2015_tab14_orddiv_count_nz_all,2015,tab14,orddiv,count,Ordinary dividends — number of returns,nz,filers,all,12,"$75,000 under $100,000",3468135.0,15in14ar.xls,L20,12,L,20 +1013,2015_tab14_orddiv_count_nz_all,2015,tab14,orddiv,count,Ordinary dividends — number of returns,nz,filers,all,13,"$100,000 under $200,000",7062743.0,15in14ar.xls,L21,12,L,21 +1014,2015_tab14_orddiv_count_nz_all,2015,tab14,orddiv,count,Ordinary dividends — number of returns,nz,filers,all,14,"$200,000 under $500,000",3391442.0,15in14ar.xls,L22,12,L,22 +1015,2015_tab14_orddiv_count_nz_all,2015,tab14,orddiv,count,Ordinary dividends — number of returns,nz,filers,all,15,"$500,000 under $1,000,000",708986.0,15in14ar.xls,L23,12,L,23 +1016,2015_tab14_orddiv_count_nz_all,2015,tab14,orddiv,count,Ordinary dividends — number of returns,nz,filers,all,16,"$1,000,000 under $1,500,000",167209.0,15in14ar.xls,L24,12,L,24 +1017,2015_tab14_orddiv_count_nz_all,2015,tab14,orddiv,count,Ordinary dividends — number of returns,nz,filers,all,17,"$1,500,000 under $2,000,000",70134.0,15in14ar.xls,L25,12,L,25 +1018,2015_tab14_orddiv_count_nz_all,2015,tab14,orddiv,count,Ordinary dividends — number of returns,nz,filers,all,18,"$2,000,000 under $5,000,000",104973.0,15in14ar.xls,L26,12,L,26 +1019,2015_tab14_orddiv_count_nz_all,2015,tab14,orddiv,count,Ordinary dividends — number of returns,nz,filers,all,19,"$5,000,000 under $10,000,000",26596.0,15in14ar.xls,L27,12,L,27 +1020,2015_tab14_orddiv_count_nz_all,2015,tab14,orddiv,count,Ordinary dividends — number of returns,nz,filers,all,20,"$10,000,000 or more",17317.0,15in14ar.xls,L28,12,L,28 +1021,2015_tab14_partnerscorpincome_amount_gt0_all,2015,tab14,partnerscorpincome,amount,"Partnership and S-corp net income (2015 only, combined)",gt0,filers,all,1,"All returns, total",755622761000.0,15in14ar.xls,BE9,57,BE,9 +1022,2015_tab14_partnerscorpincome_amount_gt0_all,2015,tab14,partnerscorpincome,amount,"Partnership and S-corp net income (2015 only, combined)",gt0,filers,all,2,No adjusted gross income,6548669000.0,15in14ar.xls,BE10,57,BE,10 +1023,2015_tab14_partnerscorpincome_amount_gt0_all,2015,tab14,partnerscorpincome,amount,"Partnership and S-corp net income (2015 only, combined)",gt0,filers,all,3,"$1 under $5,000",354028000.0,15in14ar.xls,BE11,57,BE,11 +1024,2015_tab14_partnerscorpincome_amount_gt0_all,2015,tab14,partnerscorpincome,amount,"Partnership and S-corp net income (2015 only, combined)",gt0,filers,all,4,"$5,000 under $10,000",720111000.0,15in14ar.xls,BE12,57,BE,12 +1025,2015_tab14_partnerscorpincome_amount_gt0_all,2015,tab14,partnerscorpincome,amount,"Partnership and S-corp net income (2015 only, combined)",gt0,filers,all,5,"$10,000 under $15,000",1058534000.0,15in14ar.xls,BE13,57,BE,13 +1026,2015_tab14_partnerscorpincome_amount_gt0_all,2015,tab14,partnerscorpincome,amount,"Partnership and S-corp net income (2015 only, combined)",gt0,filers,all,6,"$15,000 under $20,000",1448351000.0,15in14ar.xls,BE14,57,BE,14 +1027,2015_tab14_partnerscorpincome_amount_gt0_all,2015,tab14,partnerscorpincome,amount,"Partnership and S-corp net income (2015 only, combined)",gt0,filers,all,7,"$20,000 under $25,000",1449194000.0,15in14ar.xls,BE15,57,BE,15 +1028,2015_tab14_partnerscorpincome_amount_gt0_all,2015,tab14,partnerscorpincome,amount,"Partnership and S-corp net income (2015 only, combined)",gt0,filers,all,8,"$25,000 under $30,000",1835799000.0,15in14ar.xls,BE16,57,BE,16 +1029,2015_tab14_partnerscorpincome_amount_gt0_all,2015,tab14,partnerscorpincome,amount,"Partnership and S-corp net income (2015 only, combined)",gt0,filers,all,9,"$30,000 under $40,000",4021340000.0,15in14ar.xls,BE17,57,BE,17 +1030,2015_tab14_partnerscorpincome_amount_gt0_all,2015,tab14,partnerscorpincome,amount,"Partnership and S-corp net income (2015 only, combined)",gt0,filers,all,10,"$40,000 under $50,000",4772241000.0,15in14ar.xls,BE18,57,BE,18 +1031,2015_tab14_partnerscorpincome_amount_gt0_all,2015,tab14,partnerscorpincome,amount,"Partnership and S-corp net income (2015 only, combined)",gt0,filers,all,11,"$50,000 under $75,000",14201601000.0,15in14ar.xls,BE19,57,BE,19 +1032,2015_tab14_partnerscorpincome_amount_gt0_all,2015,tab14,partnerscorpincome,amount,"Partnership and S-corp net income (2015 only, combined)",gt0,filers,all,12,"$75,000 under $100,000",16254478000.0,15in14ar.xls,BE20,57,BE,20 +1033,2015_tab14_partnerscorpincome_amount_gt0_all,2015,tab14,partnerscorpincome,amount,"Partnership and S-corp net income (2015 only, combined)",gt0,filers,all,13,"$100,000 under $200,000",67887613000.0,15in14ar.xls,BE21,57,BE,21 +1034,2015_tab14_partnerscorpincome_amount_gt0_all,2015,tab14,partnerscorpincome,amount,"Partnership and S-corp net income (2015 only, combined)",gt0,filers,all,14,"$200,000 under $500,000",142299712000.0,15in14ar.xls,BE22,57,BE,22 +1035,2015_tab14_partnerscorpincome_amount_gt0_all,2015,tab14,partnerscorpincome,amount,"Partnership and S-corp net income (2015 only, combined)",gt0,filers,all,15,"$500,000 under $1,000,000",119801813000.0,15in14ar.xls,BE23,57,BE,23 +1036,2015_tab14_partnerscorpincome_amount_gt0_all,2015,tab14,partnerscorpincome,amount,"Partnership and S-corp net income (2015 only, combined)",gt0,filers,all,16,"$1,000,000 under $1,500,000",62221699000.0,15in14ar.xls,BE24,57,BE,24 +1037,2015_tab14_partnerscorpincome_amount_gt0_all,2015,tab14,partnerscorpincome,amount,"Partnership and S-corp net income (2015 only, combined)",gt0,filers,all,17,"$1,500,000 under $2,000,000",40614845000.0,15in14ar.xls,BE25,57,BE,25 +1038,2015_tab14_partnerscorpincome_amount_gt0_all,2015,tab14,partnerscorpincome,amount,"Partnership and S-corp net income (2015 only, combined)",gt0,filers,all,18,"$2,000,000 under $5,000,000",103229764000.0,15in14ar.xls,BE26,57,BE,26 +1039,2015_tab14_partnerscorpincome_amount_gt0_all,2015,tab14,partnerscorpincome,amount,"Partnership and S-corp net income (2015 only, combined)",gt0,filers,all,19,"$5,000,000 under $10,000,000",52736560000.0,15in14ar.xls,BE27,57,BE,27 +1040,2015_tab14_partnerscorpincome_amount_gt0_all,2015,tab14,partnerscorpincome,amount,"Partnership and S-corp net income (2015 only, combined)",gt0,filers,all,20,"$10,000,000 or more",114166407000.0,15in14ar.xls,BE28,57,BE,28 +1041,2015_tab14_partnerscorpincome_amount_lt0_all,2015,tab14,partnerscorpincome,amount,"Partnership and S-corp net loss (2015 only, combined)",lt0,filers,all,1,"All returns, total",126618186000.0,15in14ar.xls,BG9,59,BG,9 +1042,2015_tab14_partnerscorpincome_amount_lt0_all,2015,tab14,partnerscorpincome,amount,"Partnership and S-corp net loss (2015 only, combined)",lt0,filers,all,2,No adjusted gross income,50096035000.0,15in14ar.xls,BG10,59,BG,10 +1043,2015_tab14_partnerscorpincome_amount_lt0_all,2015,tab14,partnerscorpincome,amount,"Partnership and S-corp net loss (2015 only, combined)",lt0,filers,all,3,"$1 under $5,000",870335000.0,15in14ar.xls,BG11,59,BG,11 +1044,2015_tab14_partnerscorpincome_amount_lt0_all,2015,tab14,partnerscorpincome,amount,"Partnership and S-corp net loss (2015 only, combined)",lt0,filers,all,4,"$5,000 under $10,000",533252000.0,15in14ar.xls,BG12,59,BG,12 +1045,2015_tab14_partnerscorpincome_amount_lt0_all,2015,tab14,partnerscorpincome,amount,"Partnership and S-corp net loss (2015 only, combined)",lt0,filers,all,5,"$10,000 under $15,000",688625000.0,15in14ar.xls,BG13,59,BG,13 +1046,2015_tab14_partnerscorpincome_amount_lt0_all,2015,tab14,partnerscorpincome,amount,"Partnership and S-corp net loss (2015 only, combined)",lt0,filers,all,6,"$15,000 under $20,000",1035999000.0,15in14ar.xls,BG14,59,BG,14 +1047,2015_tab14_partnerscorpincome_amount_lt0_all,2015,tab14,partnerscorpincome,amount,"Partnership and S-corp net loss (2015 only, combined)",lt0,filers,all,7,"$20,000 under $25,000",1111283000.0,15in14ar.xls,BG15,59,BG,15 +1048,2015_tab14_partnerscorpincome_amount_lt0_all,2015,tab14,partnerscorpincome,amount,"Partnership and S-corp net loss (2015 only, combined)",lt0,filers,all,8,"$25,000 under $30,000",844699000.0,15in14ar.xls,BG16,59,BG,16 +1049,2015_tab14_partnerscorpincome_amount_lt0_all,2015,tab14,partnerscorpincome,amount,"Partnership and S-corp net loss (2015 only, combined)",lt0,filers,all,9,"$30,000 under $40,000",1696781000.0,15in14ar.xls,BG17,59,BG,17 +1050,2015_tab14_partnerscorpincome_amount_lt0_all,2015,tab14,partnerscorpincome,amount,"Partnership and S-corp net loss (2015 only, combined)",lt0,filers,all,10,"$40,000 under $50,000",1518190000.0,15in14ar.xls,BG18,59,BG,18 +1051,2015_tab14_partnerscorpincome_amount_lt0_all,2015,tab14,partnerscorpincome,amount,"Partnership and S-corp net loss (2015 only, combined)",lt0,filers,all,11,"$50,000 under $75,000",3826000000.0,15in14ar.xls,BG19,59,BG,19 +1052,2015_tab14_partnerscorpincome_amount_lt0_all,2015,tab14,partnerscorpincome,amount,"Partnership and S-corp net loss (2015 only, combined)",lt0,filers,all,12,"$75,000 under $100,000",3003805000.0,15in14ar.xls,BG20,59,BG,20 +1053,2015_tab14_partnerscorpincome_amount_lt0_all,2015,tab14,partnerscorpincome,amount,"Partnership and S-corp net loss (2015 only, combined)",lt0,filers,all,13,"$100,000 under $200,000",8663474000.0,15in14ar.xls,BG21,59,BG,21 +1054,2015_tab14_partnerscorpincome_amount_lt0_all,2015,tab14,partnerscorpincome,amount,"Partnership and S-corp net loss (2015 only, combined)",lt0,filers,all,14,"$200,000 under $500,000",10221016000.0,15in14ar.xls,BG22,59,BG,22 +1055,2015_tab14_partnerscorpincome_amount_lt0_all,2015,tab14,partnerscorpincome,amount,"Partnership and S-corp net loss (2015 only, combined)",lt0,filers,all,15,"$500,000 under $1,000,000",5967617000.0,15in14ar.xls,BG23,59,BG,23 +1056,2015_tab14_partnerscorpincome_amount_lt0_all,2015,tab14,partnerscorpincome,amount,"Partnership and S-corp net loss (2015 only, combined)",lt0,filers,all,16,"$1,000,000 under $1,500,000",3082586000.0,15in14ar.xls,BG24,59,BG,24 +1057,2015_tab14_partnerscorpincome_amount_lt0_all,2015,tab14,partnerscorpincome,amount,"Partnership and S-corp net loss (2015 only, combined)",lt0,filers,all,17,"$1,500,000 under $2,000,000",2190098000.0,15in14ar.xls,BG25,59,BG,25 +1058,2015_tab14_partnerscorpincome_amount_lt0_all,2015,tab14,partnerscorpincome,amount,"Partnership and S-corp net loss (2015 only, combined)",lt0,filers,all,18,"$2,000,000 under $5,000,000",7179642000.0,15in14ar.xls,BG26,59,BG,26 +1059,2015_tab14_partnerscorpincome_amount_lt0_all,2015,tab14,partnerscorpincome,amount,"Partnership and S-corp net loss (2015 only, combined)",lt0,filers,all,19,"$5,000,000 under $10,000,000",4248736000.0,15in14ar.xls,BG27,59,BG,27 +1060,2015_tab14_partnerscorpincome_amount_lt0_all,2015,tab14,partnerscorpincome,amount,"Partnership and S-corp net loss (2015 only, combined)",lt0,filers,all,20,"$10,000,000 or more",19840013000.0,15in14ar.xls,BG28,59,BG,28 +1061,2015_tab14_partnerscorpincome_count_gt0_all,2015,tab14,partnerscorpincome,count,"Partnership+S-corp income (2015 only, combined)",gt0,filers,all,1,"All returns, total",6044409.0,15in14ar.xls,BD9,56,BD,9 +1062,2015_tab14_partnerscorpincome_count_gt0_all,2015,tab14,partnerscorpincome,count,"Partnership+S-corp income (2015 only, combined)",gt0,filers,all,2,No adjusted gross income,103383.0,15in14ar.xls,BD10,56,BD,10 +1063,2015_tab14_partnerscorpincome_count_gt0_all,2015,tab14,partnerscorpincome,count,"Partnership+S-corp income (2015 only, combined)",gt0,filers,all,3,"$1 under $5,000",59110.0,15in14ar.xls,BD11,56,BD,11 +1064,2015_tab14_partnerscorpincome_count_gt0_all,2015,tab14,partnerscorpincome,count,"Partnership+S-corp income (2015 only, combined)",gt0,filers,all,4,"$5,000 under $10,000",95076.0,15in14ar.xls,BD12,56,BD,12 +1065,2015_tab14_partnerscorpincome_count_gt0_all,2015,tab14,partnerscorpincome,count,"Partnership+S-corp income (2015 only, combined)",gt0,filers,all,5,"$10,000 under $15,000",99991.0,15in14ar.xls,BD13,56,BD,13 +1066,2015_tab14_partnerscorpincome_count_gt0_all,2015,tab14,partnerscorpincome,count,"Partnership+S-corp income (2015 only, combined)",gt0,filers,all,6,"$15,000 under $20,000",141254.0,15in14ar.xls,BD14,56,BD,14 +1067,2015_tab14_partnerscorpincome_count_gt0_all,2015,tab14,partnerscorpincome,count,"Partnership+S-corp income (2015 only, combined)",gt0,filers,all,7,"$20,000 under $25,000",111274.0,15in14ar.xls,BD15,56,BD,15 +1068,2015_tab14_partnerscorpincome_count_gt0_all,2015,tab14,partnerscorpincome,count,"Partnership+S-corp income (2015 only, combined)",gt0,filers,all,8,"$25,000 under $30,000",145162.0,15in14ar.xls,BD16,56,BD,16 +1069,2015_tab14_partnerscorpincome_count_gt0_all,2015,tab14,partnerscorpincome,count,"Partnership+S-corp income (2015 only, combined)",gt0,filers,all,9,"$30,000 under $40,000",252120.0,15in14ar.xls,BD17,56,BD,17 +1070,2015_tab14_partnerscorpincome_count_gt0_all,2015,tab14,partnerscorpincome,count,"Partnership+S-corp income (2015 only, combined)",gt0,filers,all,10,"$40,000 under $50,000",259365.0,15in14ar.xls,BD18,56,BD,18 +1071,2015_tab14_partnerscorpincome_count_gt0_all,2015,tab14,partnerscorpincome,count,"Partnership+S-corp income (2015 only, combined)",gt0,filers,all,11,"$50,000 under $75,000",625054.0,15in14ar.xls,BD19,56,BD,19 +1072,2015_tab14_partnerscorpincome_count_gt0_all,2015,tab14,partnerscorpincome,count,"Partnership+S-corp income (2015 only, combined)",gt0,filers,all,12,"$75,000 under $100,000",620308.0,15in14ar.xls,BD20,56,BD,20 +1073,2015_tab14_partnerscorpincome_count_gt0_all,2015,tab14,partnerscorpincome,count,"Partnership+S-corp income (2015 only, combined)",gt0,filers,all,13,"$100,000 under $200,000",1614680.0,15in14ar.xls,BD21,56,BD,21 +1074,2015_tab14_partnerscorpincome_count_gt0_all,2015,tab14,partnerscorpincome,count,"Partnership+S-corp income (2015 only, combined)",gt0,filers,all,14,"$200,000 under $500,000",1259135.0,15in14ar.xls,BD22,56,BD,22 +1075,2015_tab14_partnerscorpincome_count_gt0_all,2015,tab14,partnerscorpincome,count,"Partnership+S-corp income (2015 only, combined)",gt0,filers,all,15,"$500,000 under $1,000,000",403560.0,15in14ar.xls,BD23,56,BD,23 +1076,2015_tab14_partnerscorpincome_count_gt0_all,2015,tab14,partnerscorpincome,count,"Partnership+S-corp income (2015 only, combined)",gt0,filers,all,16,"$1,000,000 under $1,500,000",109248.0,15in14ar.xls,BD24,56,BD,24 +1077,2015_tab14_partnerscorpincome_count_gt0_all,2015,tab14,partnerscorpincome,count,"Partnership+S-corp income (2015 only, combined)",gt0,filers,all,17,"$1,500,000 under $2,000,000",46786.0,15in14ar.xls,BD25,56,BD,25 +1078,2015_tab14_partnerscorpincome_count_gt0_all,2015,tab14,partnerscorpincome,count,"Partnership+S-corp income (2015 only, combined)",gt0,filers,all,18,"$2,000,000 under $5,000,000",70487.0,15in14ar.xls,BD26,56,BD,26 +1079,2015_tab14_partnerscorpincome_count_gt0_all,2015,tab14,partnerscorpincome,count,"Partnership+S-corp income (2015 only, combined)",gt0,filers,all,19,"$5,000,000 under $10,000,000",17412.0,15in14ar.xls,BD27,56,BD,27 +1080,2015_tab14_partnerscorpincome_count_gt0_all,2015,tab14,partnerscorpincome,count,"Partnership+S-corp income (2015 only, combined)",gt0,filers,all,20,"$10,000,000 or more",11004.0,15in14ar.xls,BD28,56,BD,28 +1081,2015_tab14_partnerscorpincome_count_lt0_all,2015,tab14,partnerscorpincome,count,"Partnership+S-corp loss (2015 only, combined)",lt0,filers,all,1,"All returns, total",2699817.0,15in14ar.xls,BF9,58,BF,9 +1082,2015_tab14_partnerscorpincome_count_lt0_all,2015,tab14,partnerscorpincome,count,"Partnership+S-corp loss (2015 only, combined)",lt0,filers,all,2,No adjusted gross income,303549.0,15in14ar.xls,BF10,58,BF,10 +1083,2015_tab14_partnerscorpincome_count_lt0_all,2015,tab14,partnerscorpincome,count,"Partnership+S-corp loss (2015 only, combined)",lt0,filers,all,3,"$1 under $5,000",43820.0,15in14ar.xls,BF11,58,BF,11 +1084,2015_tab14_partnerscorpincome_count_lt0_all,2015,tab14,partnerscorpincome,count,"Partnership+S-corp loss (2015 only, combined)",lt0,filers,all,4,"$5,000 under $10,000",51701.0,15in14ar.xls,BF12,58,BF,12 +1085,2015_tab14_partnerscorpincome_count_lt0_all,2015,tab14,partnerscorpincome,count,"Partnership+S-corp loss (2015 only, combined)",lt0,filers,all,5,"$10,000 under $15,000",65337.0,15in14ar.xls,BF13,58,BF,13 +1086,2015_tab14_partnerscorpincome_count_lt0_all,2015,tab14,partnerscorpincome,count,"Partnership+S-corp loss (2015 only, combined)",lt0,filers,all,6,"$15,000 under $20,000",69076.0,15in14ar.xls,BF14,58,BF,14 +1087,2015_tab14_partnerscorpincome_count_lt0_all,2015,tab14,partnerscorpincome,count,"Partnership+S-corp loss (2015 only, combined)",lt0,filers,all,7,"$20,000 under $25,000",68713.0,15in14ar.xls,BF15,58,BF,15 +1088,2015_tab14_partnerscorpincome_count_lt0_all,2015,tab14,partnerscorpincome,count,"Partnership+S-corp loss (2015 only, combined)",lt0,filers,all,8,"$25,000 under $30,000",60331.0,15in14ar.xls,BF16,58,BF,16 +1089,2015_tab14_partnerscorpincome_count_lt0_all,2015,tab14,partnerscorpincome,count,"Partnership+S-corp loss (2015 only, combined)",lt0,filers,all,9,"$30,000 under $40,000",132665.0,15in14ar.xls,BF17,58,BF,17 +1090,2015_tab14_partnerscorpincome_count_lt0_all,2015,tab14,partnerscorpincome,count,"Partnership+S-corp loss (2015 only, combined)",lt0,filers,all,10,"$40,000 under $50,000",118326.0,15in14ar.xls,BF18,58,BF,18 +1091,2015_tab14_partnerscorpincome_count_lt0_all,2015,tab14,partnerscorpincome,count,"Partnership+S-corp loss (2015 only, combined)",lt0,filers,all,11,"$50,000 under $75,000",317031.0,15in14ar.xls,BF19,58,BF,19 +1092,2015_tab14_partnerscorpincome_count_lt0_all,2015,tab14,partnerscorpincome,count,"Partnership+S-corp loss (2015 only, combined)",lt0,filers,all,12,"$75,000 under $100,000",276952.0,15in14ar.xls,BF20,58,BF,20 +1093,2015_tab14_partnerscorpincome_count_lt0_all,2015,tab14,partnerscorpincome,count,"Partnership+S-corp loss (2015 only, combined)",lt0,filers,all,13,"$100,000 under $200,000",655397.0,15in14ar.xls,BF21,58,BF,21 +1094,2015_tab14_partnerscorpincome_count_lt0_all,2015,tab14,partnerscorpincome,count,"Partnership+S-corp loss (2015 only, combined)",lt0,filers,all,14,"$200,000 under $500,000",361082.0,15in14ar.xls,BF22,58,BF,22 +1095,2015_tab14_partnerscorpincome_count_lt0_all,2015,tab14,partnerscorpincome,count,"Partnership+S-corp loss (2015 only, combined)",lt0,filers,all,15,"$500,000 under $1,000,000",101888.0,15in14ar.xls,BF23,58,BF,23 +1096,2015_tab14_partnerscorpincome_count_lt0_all,2015,tab14,partnerscorpincome,count,"Partnership+S-corp loss (2015 only, combined)",lt0,filers,all,16,"$1,000,000 under $1,500,000",26711.0,15in14ar.xls,BF24,58,BF,24 +1097,2015_tab14_partnerscorpincome_count_lt0_all,2015,tab14,partnerscorpincome,count,"Partnership+S-corp loss (2015 only, combined)",lt0,filers,all,17,"$1,500,000 under $2,000,000",12565.0,15in14ar.xls,BF25,58,BF,25 +1098,2015_tab14_partnerscorpincome_count_lt0_all,2015,tab14,partnerscorpincome,count,"Partnership+S-corp loss (2015 only, combined)",lt0,filers,all,18,"$2,000,000 under $5,000,000",22584.0,15in14ar.xls,BF26,58,BF,26 +1099,2015_tab14_partnerscorpincome_count_lt0_all,2015,tab14,partnerscorpincome,count,"Partnership+S-corp loss (2015 only, combined)",lt0,filers,all,19,"$5,000,000 under $10,000,000",6831.0,15in14ar.xls,BF27,58,BF,27 +1100,2015_tab14_partnerscorpincome_count_lt0_all,2015,tab14,partnerscorpincome,count,"Partnership+S-corp loss (2015 only, combined)",lt0,filers,all,20,"$10,000,000 or more",5257.0,15in14ar.xls,BF28,58,BF,28 +1101,2015_tab14_pensions_amount_nz_all,2015,tab14,pensions,amount,Pensions and annuities (total),nz,filers,all,1,"All returns, total",1169067148000.0,15in14ar.xls,AK9,37,AK,9 +1102,2015_tab14_pensions_amount_nz_all,2015,tab14,pensions,amount,Pensions and annuities (total),nz,filers,all,2,No adjusted gross income,7687787000.0,15in14ar.xls,AK10,37,AK,10 +1103,2015_tab14_pensions_amount_nz_all,2015,tab14,pensions,amount,Pensions and annuities (total),nz,filers,all,3,"$1 under $5,000",5148239000.0,15in14ar.xls,AK11,37,AK,11 +1104,2015_tab14_pensions_amount_nz_all,2015,tab14,pensions,amount,Pensions and annuities (total),nz,filers,all,4,"$5,000 under $10,000",10187637000.0,15in14ar.xls,AK12,37,AK,12 +1105,2015_tab14_pensions_amount_nz_all,2015,tab14,pensions,amount,Pensions and annuities (total),nz,filers,all,5,"$10,000 under $15,000",20894458000.0,15in14ar.xls,AK13,37,AK,13 +1106,2015_tab14_pensions_amount_nz_all,2015,tab14,pensions,amount,Pensions and annuities (total),nz,filers,all,6,"$15,000 under $20,000",25706689000.0,15in14ar.xls,AK14,37,AK,14 +1107,2015_tab14_pensions_amount_nz_all,2015,tab14,pensions,amount,Pensions and annuities (total),nz,filers,all,7,"$20,000 under $25,000",24128687000.0,15in14ar.xls,AK15,37,AK,15 +1108,2015_tab14_pensions_amount_nz_all,2015,tab14,pensions,amount,Pensions and annuities (total),nz,filers,all,8,"$25,000 under $30,000",24639911000.0,15in14ar.xls,AK16,37,AK,16 +1109,2015_tab14_pensions_amount_nz_all,2015,tab14,pensions,amount,Pensions and annuities (total),nz,filers,all,9,"$30,000 under $40,000",56413216000.0,15in14ar.xls,AK17,37,AK,17 +1110,2015_tab14_pensions_amount_nz_all,2015,tab14,pensions,amount,Pensions and annuities (total),nz,filers,all,10,"$40,000 under $50,000",57820520000.0,15in14ar.xls,AK18,37,AK,18 +1111,2015_tab14_pensions_amount_nz_all,2015,tab14,pensions,amount,Pensions and annuities (total),nz,filers,all,11,"$50,000 under $75,000",160899524000.0,15in14ar.xls,AK19,37,AK,19 +1112,2015_tab14_pensions_amount_nz_all,2015,tab14,pensions,amount,Pensions and annuities (total),nz,filers,all,12,"$75,000 under $100,000",163857153000.0,15in14ar.xls,AK20,37,AK,20 +1113,2015_tab14_pensions_amount_nz_all,2015,tab14,pensions,amount,Pensions and annuities (total),nz,filers,all,13,"$100,000 under $200,000",378312328000.0,15in14ar.xls,AK21,37,AK,21 +1114,2015_tab14_pensions_amount_nz_all,2015,tab14,pensions,amount,Pensions and annuities (total),nz,filers,all,14,"$200,000 under $500,000",176275803000.0,15in14ar.xls,AK22,37,AK,22 +1115,2015_tab14_pensions_amount_nz_all,2015,tab14,pensions,amount,Pensions and annuities (total),nz,filers,all,15,"$500,000 under $1,000,000",33682369000.0,15in14ar.xls,AK23,37,AK,23 +1116,2015_tab14_pensions_amount_nz_all,2015,tab14,pensions,amount,Pensions and annuities (total),nz,filers,all,16,"$1,000,000 under $1,500,000",9298366000.0,15in14ar.xls,AK24,37,AK,24 +1117,2015_tab14_pensions_amount_nz_all,2015,tab14,pensions,amount,Pensions and annuities (total),nz,filers,all,17,"$1,500,000 under $2,000,000",4182940000.0,15in14ar.xls,AK25,37,AK,25 +1118,2015_tab14_pensions_amount_nz_all,2015,tab14,pensions,amount,Pensions and annuities (total),nz,filers,all,18,"$2,000,000 under $5,000,000",6469958000.0,15in14ar.xls,AK26,37,AK,26 +1119,2015_tab14_pensions_amount_nz_all,2015,tab14,pensions,amount,Pensions and annuities (total),nz,filers,all,19,"$5,000,000 under $10,000,000",1930420000.0,15in14ar.xls,AK27,37,AK,27 +1120,2015_tab14_pensions_amount_nz_all,2015,tab14,pensions,amount,Pensions and annuities (total),nz,filers,all,20,"$10,000,000 or more",1531145000.0,15in14ar.xls,AK28,37,AK,28 +1121,2015_tab14_pensions_count_nz_all,2015,tab14,pensions,count,Pensions and annuities — number of returns,nz,filers,all,1,"All returns, total",30754854.0,15in14ar.xls,AJ9,36,AJ,9 +1122,2015_tab14_pensions_count_nz_all,2015,tab14,pensions,count,Pensions and annuities — number of returns,nz,filers,all,2,No adjusted gross income,295876.0,15in14ar.xls,AJ10,36,AJ,10 +1123,2015_tab14_pensions_count_nz_all,2015,tab14,pensions,count,Pensions and annuities — number of returns,nz,filers,all,3,"$1 under $5,000",780085.0,15in14ar.xls,AJ11,36,AJ,11 +1124,2015_tab14_pensions_count_nz_all,2015,tab14,pensions,count,Pensions and annuities — number of returns,nz,filers,all,4,"$5,000 under $10,000",1184278.0,15in14ar.xls,AJ12,36,AJ,12 +1125,2015_tab14_pensions_count_nz_all,2015,tab14,pensions,count,Pensions and annuities — number of returns,nz,filers,all,5,"$10,000 under $15,000",1774742.0,15in14ar.xls,AJ13,36,AJ,13 +1126,2015_tab14_pensions_count_nz_all,2015,tab14,pensions,count,Pensions and annuities — number of returns,nz,filers,all,6,"$15,000 under $20,000",1678316.0,15in14ar.xls,AJ14,36,AJ,14 +1127,2015_tab14_pensions_count_nz_all,2015,tab14,pensions,count,Pensions and annuities — number of returns,nz,filers,all,7,"$20,000 under $25,000",1502390.0,15in14ar.xls,AJ15,36,AJ,15 +1128,2015_tab14_pensions_count_nz_all,2015,tab14,pensions,count,Pensions and annuities — number of returns,nz,filers,all,8,"$25,000 under $30,000",1392254.0,15in14ar.xls,AJ16,36,AJ,16 +1129,2015_tab14_pensions_count_nz_all,2015,tab14,pensions,count,Pensions and annuities — number of returns,nz,filers,all,9,"$30,000 under $40,000",2593950.0,15in14ar.xls,AJ17,36,AJ,17 +1130,2015_tab14_pensions_count_nz_all,2015,tab14,pensions,count,Pensions and annuities — number of returns,nz,filers,all,10,"$40,000 under $50,000",2352393.0,15in14ar.xls,AJ18,36,AJ,18 +1131,2015_tab14_pensions_count_nz_all,2015,tab14,pensions,count,Pensions and annuities — number of returns,nz,filers,all,11,"$50,000 under $75,000",5145456.0,15in14ar.xls,AJ19,36,AJ,19 +1132,2015_tab14_pensions_count_nz_all,2015,tab14,pensions,count,Pensions and annuities — number of returns,nz,filers,all,12,"$75,000 under $100,000",3958703.0,15in14ar.xls,AJ20,36,AJ,20 +1133,2015_tab14_pensions_count_nz_all,2015,tab14,pensions,count,Pensions and annuities — number of returns,nz,filers,all,13,"$100,000 under $200,000",6106990.0,15in14ar.xls,AJ21,36,AJ,21 +1134,2015_tab14_pensions_count_nz_all,2015,tab14,pensions,count,Pensions and annuities — number of returns,nz,filers,all,14,"$200,000 under $500,000",1658908.0,15in14ar.xls,AJ22,36,AJ,22 +1135,2015_tab14_pensions_count_nz_all,2015,tab14,pensions,count,Pensions and annuities — number of returns,nz,filers,all,15,"$500,000 under $1,000,000",221493.0,15in14ar.xls,AJ23,36,AJ,23 +1136,2015_tab14_pensions_count_nz_all,2015,tab14,pensions,count,Pensions and annuities — number of returns,nz,filers,all,16,"$1,000,000 under $1,500,000",49598.0,15in14ar.xls,AJ24,36,AJ,24 +1137,2015_tab14_pensions_count_nz_all,2015,tab14,pensions,count,Pensions and annuities — number of returns,nz,filers,all,17,"$1,500,000 under $2,000,000",19809.0,15in14ar.xls,AJ25,36,AJ,25 +1138,2015_tab14_pensions_count_nz_all,2015,tab14,pensions,count,Pensions and annuities — number of returns,nz,filers,all,18,"$2,000,000 under $5,000,000",28130.0,15in14ar.xls,AJ26,36,AJ,26 +1139,2015_tab14_pensions_count_nz_all,2015,tab14,pensions,count,Pensions and annuities — number of returns,nz,filers,all,19,"$5,000,000 under $10,000,000",6893.0,15in14ar.xls,AJ27,36,AJ,27 +1140,2015_tab14_pensions_count_nz_all,2015,tab14,pensions,count,Pensions and annuities — number of returns,nz,filers,all,20,"$10,000,000 or more",4588.0,15in14ar.xls,AJ28,36,AJ,28 +1141,2015_tab14_pensions_taxable_amount_nz_all,2015,tab14,pensions_taxable,amount,Pensions and annuities (taxable),nz,filers,all,1,"All returns, total",689991999000.0,15in14ar.xls,AM9,39,AM,9 +1142,2015_tab14_pensions_taxable_amount_nz_all,2015,tab14,pensions_taxable,amount,Pensions and annuities (taxable),nz,filers,all,2,No adjusted gross income,2945570000.0,15in14ar.xls,AM10,39,AM,10 +1143,2015_tab14_pensions_taxable_amount_nz_all,2015,tab14,pensions_taxable,amount,Pensions and annuities (taxable),nz,filers,all,3,"$1 under $5,000",2178118000.0,15in14ar.xls,AM11,39,AM,11 +1144,2015_tab14_pensions_taxable_amount_nz_all,2015,tab14,pensions_taxable,amount,Pensions and annuities (taxable),nz,filers,all,4,"$5,000 under $10,000",6291022000.0,15in14ar.xls,AM12,39,AM,12 +1145,2015_tab14_pensions_taxable_amount_nz_all,2015,tab14,pensions_taxable,amount,Pensions and annuities (taxable),nz,filers,all,5,"$10,000 under $15,000",15061276000.0,15in14ar.xls,AM13,39,AM,13 +1146,2015_tab14_pensions_taxable_amount_nz_all,2015,tab14,pensions_taxable,amount,Pensions and annuities (taxable),nz,filers,all,6,"$15,000 under $20,000",18313815000.0,15in14ar.xls,AM14,39,AM,14 +1147,2015_tab14_pensions_taxable_amount_nz_all,2015,tab14,pensions_taxable,amount,Pensions and annuities (taxable),nz,filers,all,7,"$20,000 under $25,000",18470507000.0,15in14ar.xls,AM15,39,AM,15 +1148,2015_tab14_pensions_taxable_amount_nz_all,2015,tab14,pensions_taxable,amount,Pensions and annuities (taxable),nz,filers,all,8,"$25,000 under $30,000",18858034000.0,15in14ar.xls,AM16,39,AM,16 +1149,2015_tab14_pensions_taxable_amount_nz_all,2015,tab14,pensions_taxable,amount,Pensions and annuities (taxable),nz,filers,all,9,"$30,000 under $40,000",40025378000.0,15in14ar.xls,AM17,39,AM,17 +1150,2015_tab14_pensions_taxable_amount_nz_all,2015,tab14,pensions_taxable,amount,Pensions and annuities (taxable),nz,filers,all,10,"$40,000 under $50,000",42423815000.0,15in14ar.xls,AM18,39,AM,18 +1151,2015_tab14_pensions_taxable_amount_nz_all,2015,tab14,pensions_taxable,amount,Pensions and annuities (taxable),nz,filers,all,11,"$50,000 under $75,000",114723085000.0,15in14ar.xls,AM19,39,AM,19 +1152,2015_tab14_pensions_taxable_amount_nz_all,2015,tab14,pensions_taxable,amount,Pensions and annuities (taxable),nz,filers,all,12,"$75,000 under $100,000",109640293000.0,15in14ar.xls,AM20,39,AM,20 +1153,2015_tab14_pensions_taxable_amount_nz_all,2015,tab14,pensions_taxable,amount,Pensions and annuities (taxable),nz,filers,all,13,"$100,000 under $200,000",216352535000.0,15in14ar.xls,AM21,39,AM,21 +1154,2015_tab14_pensions_taxable_amount_nz_all,2015,tab14,pensions_taxable,amount,Pensions and annuities (taxable),nz,filers,all,14,"$200,000 under $500,000",71287369000.0,15in14ar.xls,AM22,39,AM,22 +1155,2015_tab14_pensions_taxable_amount_nz_all,2015,tab14,pensions_taxable,amount,Pensions and annuities (taxable),nz,filers,all,15,"$500,000 under $1,000,000",8552399000.0,15in14ar.xls,AM23,39,AM,23 +1156,2015_tab14_pensions_taxable_amount_nz_all,2015,tab14,pensions_taxable,amount,Pensions and annuities (taxable),nz,filers,all,16,"$1,000,000 under $1,500,000",1899631000.0,15in14ar.xls,AM24,39,AM,24 +1157,2015_tab14_pensions_taxable_amount_nz_all,2015,tab14,pensions_taxable,amount,Pensions and annuities (taxable),nz,filers,all,17,"$1,500,000 under $2,000,000",845671000.0,15in14ar.xls,AM25,39,AM,25 +1158,2015_tab14_pensions_taxable_amount_nz_all,2015,tab14,pensions_taxable,amount,Pensions and annuities (taxable),nz,filers,all,18,"$2,000,000 under $5,000,000",1261502000.0,15in14ar.xls,AM26,39,AM,26 +1159,2015_tab14_pensions_taxable_amount_nz_all,2015,tab14,pensions_taxable,amount,Pensions and annuities (taxable),nz,filers,all,19,"$5,000,000 under $10,000,000",463280000.0,15in14ar.xls,AM27,39,AM,27 +1160,2015_tab14_pensions_taxable_amount_nz_all,2015,tab14,pensions_taxable,amount,Pensions and annuities (taxable),nz,filers,all,20,"$10,000,000 or more",398698000.0,15in14ar.xls,AM28,39,AM,28 +1161,2015_tab14_pensions_taxable_count_nz_all,2015,tab14,pensions_taxable,count,Pensions and annuities (taxable) — number of returns,nz,filers,all,1,"All returns, total",28199160.0,15in14ar.xls,AL9,38,AL,9 +1162,2015_tab14_pensions_taxable_count_nz_all,2015,tab14,pensions_taxable,count,Pensions and annuities (taxable) — number of returns,nz,filers,all,2,No adjusted gross income,231166.0,15in14ar.xls,AL10,38,AL,10 +1163,2015_tab14_pensions_taxable_count_nz_all,2015,tab14,pensions_taxable,count,Pensions and annuities (taxable) — number of returns,nz,filers,all,3,"$1 under $5,000",729226.0,15in14ar.xls,AL11,38,AL,11 +1164,2015_tab14_pensions_taxable_count_nz_all,2015,tab14,pensions_taxable,count,Pensions and annuities (taxable) — number of returns,nz,filers,all,4,"$5,000 under $10,000",1139203.0,15in14ar.xls,AL12,38,AL,12 +1165,2015_tab14_pensions_taxable_count_nz_all,2015,tab14,pensions_taxable,count,Pensions and annuities (taxable) — number of returns,nz,filers,all,5,"$10,000 under $15,000",1727011.0,15in14ar.xls,AL13,38,AL,13 +1166,2015_tab14_pensions_taxable_count_nz_all,2015,tab14,pensions_taxable,count,Pensions and annuities (taxable) — number of returns,nz,filers,all,6,"$15,000 under $20,000",1604960.0,15in14ar.xls,AL14,38,AL,14 +1167,2015_tab14_pensions_taxable_count_nz_all,2015,tab14,pensions_taxable,count,Pensions and annuities (taxable) — number of returns,nz,filers,all,7,"$20,000 under $25,000",1438998.0,15in14ar.xls,AL15,38,AL,15 +1168,2015_tab14_pensions_taxable_count_nz_all,2015,tab14,pensions_taxable,count,Pensions and annuities (taxable) — number of returns,nz,filers,all,8,"$25,000 under $30,000",1323185.0,15in14ar.xls,AL16,38,AL,16 +1169,2015_tab14_pensions_taxable_count_nz_all,2015,tab14,pensions_taxable,count,Pensions and annuities (taxable) — number of returns,nz,filers,all,9,"$30,000 under $40,000",2453670.0,15in14ar.xls,AL17,38,AL,17 +1170,2015_tab14_pensions_taxable_count_nz_all,2015,tab14,pensions_taxable,count,Pensions and annuities (taxable) — number of returns,nz,filers,all,10,"$40,000 under $50,000",2197229.0,15in14ar.xls,AL18,38,AL,18 +1171,2015_tab14_pensions_taxable_count_nz_all,2015,tab14,pensions_taxable,count,Pensions and annuities (taxable) — number of returns,nz,filers,all,11,"$50,000 under $75,000",4794838.0,15in14ar.xls,AL19,38,AL,19 +1172,2015_tab14_pensions_taxable_count_nz_all,2015,tab14,pensions_taxable,count,Pensions and annuities (taxable) — number of returns,nz,filers,all,12,"$75,000 under $100,000",3613164.0,15in14ar.xls,AL20,38,AL,20 +1173,2015_tab14_pensions_taxable_count_nz_all,2015,tab14,pensions_taxable,count,Pensions and annuities (taxable) — number of returns,nz,filers,all,13,"$100,000 under $200,000",5391242.0,15in14ar.xls,AL21,38,AL,21 +1174,2015_tab14_pensions_taxable_count_nz_all,2015,tab14,pensions_taxable,count,Pensions and annuities (taxable) — number of returns,nz,filers,all,14,"$200,000 under $500,000",1320681.0,15in14ar.xls,AL22,38,AL,22 +1175,2015_tab14_pensions_taxable_count_nz_all,2015,tab14,pensions_taxable,count,Pensions and annuities (taxable) — number of returns,nz,filers,all,15,"$500,000 under $1,000,000",158716.0,15in14ar.xls,AL23,38,AL,23 +1176,2015_tab14_pensions_taxable_count_nz_all,2015,tab14,pensions_taxable,count,Pensions and annuities (taxable) — number of returns,nz,filers,all,16,"$1,000,000 under $1,500,000",34329.0,15in14ar.xls,AL24,38,AL,24 +1177,2015_tab14_pensions_taxable_count_nz_all,2015,tab14,pensions_taxable,count,Pensions and annuities (taxable) — number of returns,nz,filers,all,17,"$1,500,000 under $2,000,000",13703.0,15in14ar.xls,AL25,38,AL,25 +1178,2015_tab14_pensions_taxable_count_nz_all,2015,tab14,pensions_taxable,count,Pensions and annuities (taxable) — number of returns,nz,filers,all,18,"$2,000,000 under $5,000,000",19744.0,15in14ar.xls,AL26,38,AL,26 +1179,2015_tab14_pensions_taxable_count_nz_all,2015,tab14,pensions_taxable,count,Pensions and annuities (taxable) — number of returns,nz,filers,all,19,"$5,000,000 under $10,000,000",4815.0,15in14ar.xls,AL27,38,AL,27 +1180,2015_tab14_pensions_taxable_count_nz_all,2015,tab14,pensions_taxable,count,Pensions and annuities (taxable) — number of returns,nz,filers,all,20,"$10,000,000 or more",3279.0,15in14ar.xls,AL28,38,AL,28 +1181,2015_tab14_qualdiv_amount_nz_all,2015,tab14,qualdiv,amount,Qualified dividends,nz,filers,all,1,"All returns, total",203187788000.0,15in14ar.xls,O9,15,O,9 +1182,2015_tab14_qualdiv_amount_nz_all,2015,tab14,qualdiv,amount,Qualified dividends,nz,filers,all,2,No adjusted gross income,3452820000.0,15in14ar.xls,O10,15,O,10 +1183,2015_tab14_qualdiv_amount_nz_all,2015,tab14,qualdiv,amount,Qualified dividends,nz,filers,all,3,"$1 under $5,000",539192000.0,15in14ar.xls,O11,15,O,11 +1184,2015_tab14_qualdiv_amount_nz_all,2015,tab14,qualdiv,amount,Qualified dividends,nz,filers,all,4,"$5,000 under $10,000",847872000.0,15in14ar.xls,O12,15,O,12 +1185,2015_tab14_qualdiv_amount_nz_all,2015,tab14,qualdiv,amount,Qualified dividends,nz,filers,all,5,"$10,000 under $15,000",1236652000.0,15in14ar.xls,O13,15,O,13 +1186,2015_tab14_qualdiv_amount_nz_all,2015,tab14,qualdiv,amount,Qualified dividends,nz,filers,all,6,"$15,000 under $20,000",1223553000.0,15in14ar.xls,O14,15,O,14 +1187,2015_tab14_qualdiv_amount_nz_all,2015,tab14,qualdiv,amount,Qualified dividends,nz,filers,all,7,"$20,000 under $25,000",1326078000.0,15in14ar.xls,O15,15,O,15 +1188,2015_tab14_qualdiv_amount_nz_all,2015,tab14,qualdiv,amount,Qualified dividends,nz,filers,all,8,"$25,000 under $30,000",1265438000.0,15in14ar.xls,O16,15,O,16 +1189,2015_tab14_qualdiv_amount_nz_all,2015,tab14,qualdiv,amount,Qualified dividends,nz,filers,all,9,"$30,000 under $40,000",3001477000.0,15in14ar.xls,O17,15,O,17 +1190,2015_tab14_qualdiv_amount_nz_all,2015,tab14,qualdiv,amount,Qualified dividends,nz,filers,all,10,"$40,000 under $50,000",2826332000.0,15in14ar.xls,O18,15,O,18 +1191,2015_tab14_qualdiv_amount_nz_all,2015,tab14,qualdiv,amount,Qualified dividends,nz,filers,all,11,"$50,000 under $75,000",9668810000.0,15in14ar.xls,O19,15,O,19 +1192,2015_tab14_qualdiv_amount_nz_all,2015,tab14,qualdiv,amount,Qualified dividends,nz,filers,all,12,"$75,000 under $100,000",9950326000.0,15in14ar.xls,O20,15,O,20 +1193,2015_tab14_qualdiv_amount_nz_all,2015,tab14,qualdiv,amount,Qualified dividends,nz,filers,all,13,"$100,000 under $200,000",33501662000.0,15in14ar.xls,O21,15,O,21 +1194,2015_tab14_qualdiv_amount_nz_all,2015,tab14,qualdiv,amount,Qualified dividends,nz,filers,all,14,"$200,000 under $500,000",36267006000.0,15in14ar.xls,O22,15,O,22 +1195,2015_tab14_qualdiv_amount_nz_all,2015,tab14,qualdiv,amount,Qualified dividends,nz,filers,all,15,"$500,000 under $1,000,000",20014498000.0,15in14ar.xls,O23,15,O,23 +1196,2015_tab14_qualdiv_amount_nz_all,2015,tab14,qualdiv,amount,Qualified dividends,nz,filers,all,16,"$1,000,000 under $1,500,000",9328800000.0,15in14ar.xls,O24,15,O,24 +1197,2015_tab14_qualdiv_amount_nz_all,2015,tab14,qualdiv,amount,Qualified dividends,nz,filers,all,17,"$1,500,000 under $2,000,000",5485472000.0,15in14ar.xls,O25,15,O,25 +1198,2015_tab14_qualdiv_amount_nz_all,2015,tab14,qualdiv,amount,Qualified dividends,nz,filers,all,18,"$2,000,000 under $5,000,000",15679937000.0,15in14ar.xls,O26,15,O,26 +1199,2015_tab14_qualdiv_amount_nz_all,2015,tab14,qualdiv,amount,Qualified dividends,nz,filers,all,19,"$5,000,000 under $10,000,000",9423445000.0,15in14ar.xls,O27,15,O,27 +1200,2015_tab14_qualdiv_amount_nz_all,2015,tab14,qualdiv,amount,Qualified dividends,nz,filers,all,20,"$10,000,000 or more",38148418000.0,15in14ar.xls,O28,15,O,28 +1201,2015_tab14_qualdiv_count_nz_all,2015,tab14,qualdiv,count,Qualified dividends — number of returns,nz,filers,all,1,"All returns, total",25755976.0,15in14ar.xls,N9,14,N,9 +1202,2015_tab14_qualdiv_count_nz_all,2015,tab14,qualdiv,count,Qualified dividends — number of returns,nz,filers,all,2,No adjusted gross income,431502.0,15in14ar.xls,N10,14,N,10 +1203,2015_tab14_qualdiv_count_nz_all,2015,tab14,qualdiv,count,Qualified dividends — number of returns,nz,filers,all,3,"$1 under $5,000",846481.0,15in14ar.xls,N11,14,N,11 +1204,2015_tab14_qualdiv_count_nz_all,2015,tab14,qualdiv,count,Qualified dividends — number of returns,nz,filers,all,4,"$5,000 under $10,000",792431.0,15in14ar.xls,N12,14,N,12 +1205,2015_tab14_qualdiv_count_nz_all,2015,tab14,qualdiv,count,Qualified dividends — number of returns,nz,filers,all,5,"$10,000 under $15,000",781678.0,15in14ar.xls,N13,14,N,13 +1206,2015_tab14_qualdiv_count_nz_all,2015,tab14,qualdiv,count,Qualified dividends — number of returns,nz,filers,all,6,"$15,000 under $20,000",801164.0,15in14ar.xls,N14,14,N,14 +1207,2015_tab14_qualdiv_count_nz_all,2015,tab14,qualdiv,count,Qualified dividends — number of returns,nz,filers,all,7,"$20,000 under $25,000",746510.0,15in14ar.xls,N15,14,N,15 +1208,2015_tab14_qualdiv_count_nz_all,2015,tab14,qualdiv,count,Qualified dividends — number of returns,nz,filers,all,8,"$25,000 under $30,000",694987.0,15in14ar.xls,N16,14,N,16 +1209,2015_tab14_qualdiv_count_nz_all,2015,tab14,qualdiv,count,Qualified dividends — number of returns,nz,filers,all,9,"$30,000 under $40,000",1440362.0,15in14ar.xls,N17,14,N,17 +1210,2015_tab14_qualdiv_count_nz_all,2015,tab14,qualdiv,count,Qualified dividends — number of returns,nz,filers,all,10,"$40,000 under $50,000",1389336.0,15in14ar.xls,N18,14,N,18 +1211,2015_tab14_qualdiv_count_nz_all,2015,tab14,qualdiv,count,Qualified dividends — number of returns,nz,filers,all,11,"$50,000 under $75,000",3586978.0,15in14ar.xls,N19,14,N,19 +1212,2015_tab14_qualdiv_count_nz_all,2015,tab14,qualdiv,count,Qualified dividends — number of returns,nz,filers,all,12,"$75,000 under $100,000",3253110.0,15in14ar.xls,N20,14,N,20 +1213,2015_tab14_qualdiv_count_nz_all,2015,tab14,qualdiv,count,Qualified dividends — number of returns,nz,filers,all,13,"$100,000 under $200,000",6651049.0,15in14ar.xls,N21,14,N,21 +1214,2015_tab14_qualdiv_count_nz_all,2015,tab14,qualdiv,count,Qualified dividends — number of returns,nz,filers,all,14,"$200,000 under $500,000",3272768.0,15in14ar.xls,N22,14,N,22 +1215,2015_tab14_qualdiv_count_nz_all,2015,tab14,qualdiv,count,Qualified dividends — number of returns,nz,filers,all,15,"$500,000 under $1,000,000",690017.0,15in14ar.xls,N23,14,N,23 +1216,2015_tab14_qualdiv_count_nz_all,2015,tab14,qualdiv,count,Qualified dividends — number of returns,nz,filers,all,16,"$1,000,000 under $1,500,000",163261.0,15in14ar.xls,N24,14,N,24 +1217,2015_tab14_qualdiv_count_nz_all,2015,tab14,qualdiv,count,Qualified dividends — number of returns,nz,filers,all,17,"$1,500,000 under $2,000,000",68480.0,15in14ar.xls,N25,14,N,25 +1218,2015_tab14_qualdiv_count_nz_all,2015,tab14,qualdiv,count,Qualified dividends — number of returns,nz,filers,all,18,"$2,000,000 under $5,000,000",102750.0,15in14ar.xls,N26,14,N,26 +1219,2015_tab14_qualdiv_count_nz_all,2015,tab14,qualdiv,count,Qualified dividends — number of returns,nz,filers,all,19,"$5,000,000 under $10,000,000",26053.0,15in14ar.xls,N27,14,N,27 +1220,2015_tab14_qualdiv_count_nz_all,2015,tab14,qualdiv,count,Qualified dividends — number of returns,nz,filers,all,20,"$10,000,000 or more",17059.0,15in14ar.xls,N28,14,N,28 +1221,2015_tab14_rentroyalty_amount_gt0_all,2015,tab14,rentroyalty,amount,Rent and royalty net income,gt0,filers,all,1,"All returns, total",103058883000.0,15in14ar.xls,BA9,53,BA,9 +1222,2015_tab14_rentroyalty_amount_gt0_all,2015,tab14,rentroyalty,amount,Rent and royalty net income,gt0,filers,all,2,No adjusted gross income,2810017000.0,15in14ar.xls,BA10,53,BA,10 +1223,2015_tab14_rentroyalty_amount_gt0_all,2015,tab14,rentroyalty,amount,Rent and royalty net income,gt0,filers,all,3,"$1 under $5,000",550278000.0,15in14ar.xls,BA11,53,BA,11 +1224,2015_tab14_rentroyalty_amount_gt0_all,2015,tab14,rentroyalty,amount,Rent and royalty net income,gt0,filers,all,4,"$5,000 under $10,000",960758000.0,15in14ar.xls,BA12,53,BA,12 +1225,2015_tab14_rentroyalty_amount_gt0_all,2015,tab14,rentroyalty,amount,Rent and royalty net income,gt0,filers,all,5,"$10,000 under $15,000",1443449000.0,15in14ar.xls,BA13,53,BA,13 +1226,2015_tab14_rentroyalty_amount_gt0_all,2015,tab14,rentroyalty,amount,Rent and royalty net income,gt0,filers,all,6,"$15,000 under $20,000",1530758000.0,15in14ar.xls,BA14,53,BA,14 +1227,2015_tab14_rentroyalty_amount_gt0_all,2015,tab14,rentroyalty,amount,Rent and royalty net income,gt0,filers,all,7,"$20,000 under $25,000",1594658000.0,15in14ar.xls,BA15,53,BA,15 +1228,2015_tab14_rentroyalty_amount_gt0_all,2015,tab14,rentroyalty,amount,Rent and royalty net income,gt0,filers,all,8,"$25,000 under $30,000",1604665000.0,15in14ar.xls,BA16,53,BA,16 +1229,2015_tab14_rentroyalty_amount_gt0_all,2015,tab14,rentroyalty,amount,Rent and royalty net income,gt0,filers,all,9,"$30,000 under $40,000",2691722000.0,15in14ar.xls,BA17,53,BA,17 +1230,2015_tab14_rentroyalty_amount_gt0_all,2015,tab14,rentroyalty,amount,Rent and royalty net income,gt0,filers,all,10,"$40,000 under $50,000",3049824000.0,15in14ar.xls,BA18,53,BA,18 +1231,2015_tab14_rentroyalty_amount_gt0_all,2015,tab14,rentroyalty,amount,Rent and royalty net income,gt0,filers,all,11,"$50,000 under $75,000",7756628000.0,15in14ar.xls,BA19,53,BA,19 +1232,2015_tab14_rentroyalty_amount_gt0_all,2015,tab14,rentroyalty,amount,Rent and royalty net income,gt0,filers,all,12,"$75,000 under $100,000",7990607000.0,15in14ar.xls,BA20,53,BA,20 +1233,2015_tab14_rentroyalty_amount_gt0_all,2015,tab14,rentroyalty,amount,Rent and royalty net income,gt0,filers,all,13,"$100,000 under $200,000",22286270000.0,15in14ar.xls,BA21,53,BA,21 +1234,2015_tab14_rentroyalty_amount_gt0_all,2015,tab14,rentroyalty,amount,Rent and royalty net income,gt0,filers,all,14,"$200,000 under $500,000",20783283000.0,15in14ar.xls,BA22,53,BA,22 +1235,2015_tab14_rentroyalty_amount_gt0_all,2015,tab14,rentroyalty,amount,Rent and royalty net income,gt0,filers,all,15,"$500,000 under $1,000,000",10292595000.0,15in14ar.xls,BA23,53,BA,23 +1236,2015_tab14_rentroyalty_amount_gt0_all,2015,tab14,rentroyalty,amount,Rent and royalty net income,gt0,filers,all,16,"$1,000,000 under $1,500,000",4351297000.0,15in14ar.xls,BA24,53,BA,24 +1237,2015_tab14_rentroyalty_amount_gt0_all,2015,tab14,rentroyalty,amount,Rent and royalty net income,gt0,filers,all,17,"$1,500,000 under $2,000,000",2162529000.0,15in14ar.xls,BA25,53,BA,25 +1238,2015_tab14_rentroyalty_amount_gt0_all,2015,tab14,rentroyalty,amount,Rent and royalty net income,gt0,filers,all,18,"$2,000,000 under $5,000,000",5056616000.0,15in14ar.xls,BA26,53,BA,26 +1239,2015_tab14_rentroyalty_amount_gt0_all,2015,tab14,rentroyalty,amount,Rent and royalty net income,gt0,filers,all,19,"$5,000,000 under $10,000,000",2418718000.0,15in14ar.xls,BA27,53,BA,27 +1240,2015_tab14_rentroyalty_amount_gt0_all,2015,tab14,rentroyalty,amount,Rent and royalty net income,gt0,filers,all,20,"$10,000,000 or more",3724211000.0,15in14ar.xls,BA28,53,BA,28 +1241,2015_tab14_rentroyalty_amount_lt0_all,2015,tab14,rentroyalty,amount,Rent and royalty net loss,lt0,filers,all,1,"All returns, total",46245560000.0,15in14ar.xls,BC9,55,BC,9 +1242,2015_tab14_rentroyalty_amount_lt0_all,2015,tab14,rentroyalty,amount,Rent and royalty net loss,lt0,filers,all,2,No adjusted gross income,6061375000.0,15in14ar.xls,BC10,55,BC,10 +1243,2015_tab14_rentroyalty_amount_lt0_all,2015,tab14,rentroyalty,amount,Rent and royalty net loss,lt0,filers,all,3,"$1 under $5,000",444446000.0,15in14ar.xls,BC11,55,BC,11 +1244,2015_tab14_rentroyalty_amount_lt0_all,2015,tab14,rentroyalty,amount,Rent and royalty net loss,lt0,filers,all,4,"$5,000 under $10,000",653822000.0,15in14ar.xls,BC12,55,BC,12 +1245,2015_tab14_rentroyalty_amount_lt0_all,2015,tab14,rentroyalty,amount,Rent and royalty net loss,lt0,filers,all,5,"$10,000 under $15,000",1110992000.0,15in14ar.xls,BC13,55,BC,13 +1246,2015_tab14_rentroyalty_amount_lt0_all,2015,tab14,rentroyalty,amount,Rent and royalty net loss,lt0,filers,all,6,"$15,000 under $20,000",991953000.0,15in14ar.xls,BC14,55,BC,14 +1247,2015_tab14_rentroyalty_amount_lt0_all,2015,tab14,rentroyalty,amount,Rent and royalty net loss,lt0,filers,all,7,"$20,000 under $25,000",1204536000.0,15in14ar.xls,BC15,55,BC,15 +1248,2015_tab14_rentroyalty_amount_lt0_all,2015,tab14,rentroyalty,amount,Rent and royalty net loss,lt0,filers,all,8,"$25,000 under $30,000",1061144000.0,15in14ar.xls,BC16,55,BC,16 +1249,2015_tab14_rentroyalty_amount_lt0_all,2015,tab14,rentroyalty,amount,Rent and royalty net loss,lt0,filers,all,9,"$30,000 under $40,000",2737329000.0,15in14ar.xls,BC17,55,BC,17 +1250,2015_tab14_rentroyalty_amount_lt0_all,2015,tab14,rentroyalty,amount,Rent and royalty net loss,lt0,filers,all,10,"$40,000 under $50,000",2384944000.0,15in14ar.xls,BC18,55,BC,18 +1251,2015_tab14_rentroyalty_amount_lt0_all,2015,tab14,rentroyalty,amount,Rent and royalty net loss,lt0,filers,all,11,"$50,000 under $75,000",6069198000.0,15in14ar.xls,BC19,55,BC,19 +1252,2015_tab14_rentroyalty_amount_lt0_all,2015,tab14,rentroyalty,amount,Rent and royalty net loss,lt0,filers,all,12,"$75,000 under $100,000",5876752000.0,15in14ar.xls,BC20,55,BC,20 +1253,2015_tab14_rentroyalty_amount_lt0_all,2015,tab14,rentroyalty,amount,Rent and royalty net loss,lt0,filers,all,13,"$100,000 under $200,000",8530522000.0,15in14ar.xls,BC21,55,BC,21 +1254,2015_tab14_rentroyalty_amount_lt0_all,2015,tab14,rentroyalty,amount,Rent and royalty net loss,lt0,filers,all,14,"$200,000 under $500,000",4792737000.0,15in14ar.xls,BC22,55,BC,22 +1255,2015_tab14_rentroyalty_amount_lt0_all,2015,tab14,rentroyalty,amount,Rent and royalty net loss,lt0,filers,all,15,"$500,000 under $1,000,000",1784427000.0,15in14ar.xls,BC23,55,BC,23 +1256,2015_tab14_rentroyalty_amount_lt0_all,2015,tab14,rentroyalty,amount,Rent and royalty net loss,lt0,filers,all,16,"$1,000,000 under $1,500,000",745208000.0,15in14ar.xls,BC24,55,BC,24 +1257,2015_tab14_rentroyalty_amount_lt0_all,2015,tab14,rentroyalty,amount,Rent and royalty net loss,lt0,filers,all,17,"$1,500,000 under $2,000,000",343964000.0,15in14ar.xls,BC25,55,BC,25 +1258,2015_tab14_rentroyalty_amount_lt0_all,2015,tab14,rentroyalty,amount,Rent and royalty net loss,lt0,filers,all,18,"$2,000,000 under $5,000,000",739361000.0,15in14ar.xls,BC26,55,BC,26 +1259,2015_tab14_rentroyalty_amount_lt0_all,2015,tab14,rentroyalty,amount,Rent and royalty net loss,lt0,filers,all,19,"$5,000,000 under $10,000,000",293341000.0,15in14ar.xls,BC27,55,BC,27 +1260,2015_tab14_rentroyalty_amount_lt0_all,2015,tab14,rentroyalty,amount,Rent and royalty net loss,lt0,filers,all,20,"$10,000,000 or more",419507000.0,15in14ar.xls,BC28,55,BC,28 +1261,2015_tab14_rentroyalty_count_gt0_all,2015,tab14,rentroyalty,count,Rent/royalty — number of returns with income,gt0,filers,all,1,"All returns, total",6768234.0,15in14ar.xls,AZ9,52,AZ,9 +1262,2015_tab14_rentroyalty_count_gt0_all,2015,tab14,rentroyalty,count,Rent/royalty — number of returns with income,gt0,filers,all,2,No adjusted gross income,158721.0,15in14ar.xls,AZ10,52,AZ,10 +1263,2015_tab14_rentroyalty_count_gt0_all,2015,tab14,rentroyalty,count,Rent/royalty — number of returns with income,gt0,filers,all,3,"$1 under $5,000",191411.0,15in14ar.xls,AZ11,52,AZ,11 +1264,2015_tab14_rentroyalty_count_gt0_all,2015,tab14,rentroyalty,count,Rent/royalty — number of returns with income,gt0,filers,all,4,"$5,000 under $10,000",225477.0,15in14ar.xls,AZ12,52,AZ,12 +1265,2015_tab14_rentroyalty_count_gt0_all,2015,tab14,rentroyalty,count,Rent/royalty — number of returns with income,gt0,filers,all,5,"$10,000 under $15,000",257700.0,15in14ar.xls,AZ13,52,AZ,13 +1266,2015_tab14_rentroyalty_count_gt0_all,2015,tab14,rentroyalty,count,Rent/royalty — number of returns with income,gt0,filers,all,6,"$15,000 under $20,000",256116.0,15in14ar.xls,AZ14,52,AZ,14 +1267,2015_tab14_rentroyalty_count_gt0_all,2015,tab14,rentroyalty,count,Rent/royalty — number of returns with income,gt0,filers,all,7,"$20,000 under $25,000",234703.0,15in14ar.xls,AZ15,52,AZ,15 +1268,2015_tab14_rentroyalty_count_gt0_all,2015,tab14,rentroyalty,count,Rent/royalty — number of returns with income,gt0,filers,all,8,"$25,000 under $30,000",224961.0,15in14ar.xls,AZ16,52,AZ,16 +1269,2015_tab14_rentroyalty_count_gt0_all,2015,tab14,rentroyalty,count,Rent/royalty — number of returns with income,gt0,filers,all,9,"$30,000 under $40,000",360815.0,15in14ar.xls,AZ17,52,AZ,17 +1270,2015_tab14_rentroyalty_count_gt0_all,2015,tab14,rentroyalty,count,Rent/royalty — number of returns with income,gt0,filers,all,10,"$40,000 under $50,000",389458.0,15in14ar.xls,AZ18,52,AZ,18 +1271,2015_tab14_rentroyalty_count_gt0_all,2015,tab14,rentroyalty,count,Rent/royalty — number of returns with income,gt0,filers,all,11,"$50,000 under $75,000",927723.0,15in14ar.xls,AZ19,52,AZ,19 +1272,2015_tab14_rentroyalty_count_gt0_all,2015,tab14,rentroyalty,count,Rent/royalty — number of returns with income,gt0,filers,all,12,"$75,000 under $100,000",801435.0,15in14ar.xls,AZ20,52,AZ,20 +1273,2015_tab14_rentroyalty_count_gt0_all,2015,tab14,rentroyalty,count,Rent/royalty — number of returns with income,gt0,filers,all,13,"$100,000 under $200,000",1666542.0,15in14ar.xls,AZ21,52,AZ,21 +1274,2015_tab14_rentroyalty_count_gt0_all,2015,tab14,rentroyalty,count,Rent/royalty — number of returns with income,gt0,filers,all,14,"$200,000 under $500,000",746946.0,15in14ar.xls,AZ22,52,AZ,22 +1275,2015_tab14_rentroyalty_count_gt0_all,2015,tab14,rentroyalty,count,Rent/royalty — number of returns with income,gt0,filers,all,15,"$500,000 under $1,000,000",189624.0,15in14ar.xls,AZ23,52,AZ,23 +1276,2015_tab14_rentroyalty_count_gt0_all,2015,tab14,rentroyalty,count,Rent/royalty — number of returns with income,gt0,filers,all,16,"$1,000,000 under $1,500,000",52337.0,15in14ar.xls,AZ24,52,AZ,24 +1277,2015_tab14_rentroyalty_count_gt0_all,2015,tab14,rentroyalty,count,Rent/royalty — number of returns with income,gt0,filers,all,17,"$1,500,000 under $2,000,000",23762.0,15in14ar.xls,AZ25,52,AZ,25 +1278,2015_tab14_rentroyalty_count_gt0_all,2015,tab14,rentroyalty,count,Rent/royalty — number of returns with income,gt0,filers,all,18,"$2,000,000 under $5,000,000",40190.0,15in14ar.xls,AZ26,52,AZ,26 +1279,2015_tab14_rentroyalty_count_gt0_all,2015,tab14,rentroyalty,count,Rent/royalty — number of returns with income,gt0,filers,all,19,"$5,000,000 under $10,000,000",11658.0,15in14ar.xls,AZ27,52,AZ,27 +1280,2015_tab14_rentroyalty_count_gt0_all,2015,tab14,rentroyalty,count,Rent/royalty — number of returns with income,gt0,filers,all,20,"$10,000,000 or more",8655.0,15in14ar.xls,AZ28,52,AZ,28 +1281,2015_tab14_rentroyalty_count_lt0_all,2015,tab14,rentroyalty,count,Rent/royalty — number of returns with loss,lt0,filers,all,1,"All returns, total",4531666.0,15in14ar.xls,BB9,54,BB,9 +1282,2015_tab14_rentroyalty_count_lt0_all,2015,tab14,rentroyalty,count,Rent/royalty — number of returns with loss,lt0,filers,all,2,No adjusted gross income,262688.0,15in14ar.xls,BB10,54,BB,10 +1283,2015_tab14_rentroyalty_count_lt0_all,2015,tab14,rentroyalty,count,Rent/royalty — number of returns with loss,lt0,filers,all,3,"$1 under $5,000",67699.0,15in14ar.xls,BB11,54,BB,11 +1284,2015_tab14_rentroyalty_count_lt0_all,2015,tab14,rentroyalty,count,Rent/royalty — number of returns with loss,lt0,filers,all,4,"$5,000 under $10,000",95906.0,15in14ar.xls,BB12,54,BB,12 +1285,2015_tab14_rentroyalty_count_lt0_all,2015,tab14,rentroyalty,count,Rent/royalty — number of returns with loss,lt0,filers,all,5,"$10,000 under $15,000",123523.0,15in14ar.xls,BB13,54,BB,13 +1286,2015_tab14_rentroyalty_count_lt0_all,2015,tab14,rentroyalty,count,Rent/royalty — number of returns with loss,lt0,filers,all,6,"$15,000 under $20,000",141801.0,15in14ar.xls,BB14,54,BB,14 +1287,2015_tab14_rentroyalty_count_lt0_all,2015,tab14,rentroyalty,count,Rent/royalty — number of returns with loss,lt0,filers,all,7,"$20,000 under $25,000",148541.0,15in14ar.xls,BB15,54,BB,15 +1288,2015_tab14_rentroyalty_count_lt0_all,2015,tab14,rentroyalty,count,Rent/royalty — number of returns with loss,lt0,filers,all,8,"$25,000 under $30,000",152200.0,15in14ar.xls,BB16,54,BB,16 +1289,2015_tab14_rentroyalty_count_lt0_all,2015,tab14,rentroyalty,count,Rent/royalty — number of returns with loss,lt0,filers,all,9,"$30,000 under $40,000",320136.0,15in14ar.xls,BB17,54,BB,17 +1290,2015_tab14_rentroyalty_count_lt0_all,2015,tab14,rentroyalty,count,Rent/royalty — number of returns with loss,lt0,filers,all,10,"$40,000 under $50,000",311887.0,15in14ar.xls,BB18,54,BB,18 +1291,2015_tab14_rentroyalty_count_lt0_all,2015,tab14,rentroyalty,count,Rent/royalty — number of returns with loss,lt0,filers,all,11,"$50,000 under $75,000",768581.0,15in14ar.xls,BB19,54,BB,19 +1292,2015_tab14_rentroyalty_count_lt0_all,2015,tab14,rentroyalty,count,Rent/royalty — number of returns with loss,lt0,filers,all,12,"$75,000 under $100,000",738546.0,15in14ar.xls,BB20,54,BB,20 +1293,2015_tab14_rentroyalty_count_lt0_all,2015,tab14,rentroyalty,count,Rent/royalty — number of returns with loss,lt0,filers,all,13,"$100,000 under $200,000",1051247.0,15in14ar.xls,BB21,54,BB,21 +1294,2015_tab14_rentroyalty_count_lt0_all,2015,tab14,rentroyalty,count,Rent/royalty — number of returns with loss,lt0,filers,all,14,"$200,000 under $500,000",237953.0,15in14ar.xls,BB22,54,BB,22 +1295,2015_tab14_rentroyalty_count_lt0_all,2015,tab14,rentroyalty,count,Rent/royalty — number of returns with loss,lt0,filers,all,15,"$500,000 under $1,000,000",63040.0,15in14ar.xls,BB23,54,BB,23 +1296,2015_tab14_rentroyalty_count_lt0_all,2015,tab14,rentroyalty,count,Rent/royalty — number of returns with loss,lt0,filers,all,16,"$1,000,000 under $1,500,000",19059.0,15in14ar.xls,BB24,54,BB,24 +1297,2015_tab14_rentroyalty_count_lt0_all,2015,tab14,rentroyalty,count,Rent/royalty — number of returns with loss,lt0,filers,all,17,"$1,500,000 under $2,000,000",8378.0,15in14ar.xls,BB25,54,BB,25 +1298,2015_tab14_rentroyalty_count_lt0_all,2015,tab14,rentroyalty,count,Rent/royalty — number of returns with loss,lt0,filers,all,18,"$2,000,000 under $5,000,000",13763.0,15in14ar.xls,BB26,54,BB,26 +1299,2015_tab14_rentroyalty_count_lt0_all,2015,tab14,rentroyalty,count,Rent/royalty — number of returns with loss,lt0,filers,all,19,"$5,000,000 under $10,000,000",3917.0,15in14ar.xls,BB27,54,BB,27 +1300,2015_tab14_rentroyalty_count_lt0_all,2015,tab14,rentroyalty,count,Rent/royalty — number of returns with loss,lt0,filers,all,20,"$10,000,000 or more",2800.0,15in14ar.xls,BB28,54,BB,28 +1301,2015_tab14_socsectaxable_amount_nz_all,2015,tab14,socsectaxable,amount,Social security benefits (taxable),nz,filers,all,1,"All returns, total",277411075000.0,15in14ar.xls,BU9,73,BU,9 +1302,2015_tab14_socsectaxable_amount_nz_all,2015,tab14,socsectaxable,amount,Social security benefits (taxable),nz,filers,all,2,No adjusted gross income,11443000.0,15in14ar.xls,BU10,73,BU,10 +1303,2015_tab14_socsectaxable_amount_nz_all,2015,tab14,socsectaxable,amount,Social security benefits (taxable),nz,filers,all,3,"$1 under $5,000",51974000.0,15in14ar.xls,BU11,73,BU,11 +1304,2015_tab14_socsectaxable_amount_nz_all,2015,tab14,socsectaxable,amount,Social security benefits (taxable),nz,filers,all,4,"$5,000 under $10,000",191427000.0,15in14ar.xls,BU12,73,BU,12 +1305,2015_tab14_socsectaxable_amount_nz_all,2015,tab14,socsectaxable,amount,Social security benefits (taxable),nz,filers,all,5,"$10,000 under $15,000",306013000.0,15in14ar.xls,BU13,73,BU,13 +1306,2015_tab14_socsectaxable_amount_nz_all,2015,tab14,socsectaxable,amount,Social security benefits (taxable),nz,filers,all,6,"$15,000 under $20,000",976124000.0,15in14ar.xls,BU14,73,BU,14 +1307,2015_tab14_socsectaxable_amount_nz_all,2015,tab14,socsectaxable,amount,Social security benefits (taxable),nz,filers,all,7,"$20,000 under $25,000",2722534000.0,15in14ar.xls,BU15,73,BU,15 +1308,2015_tab14_socsectaxable_amount_nz_all,2015,tab14,socsectaxable,amount,Social security benefits (taxable),nz,filers,all,8,"$25,000 under $30,000",4409525000.0,15in14ar.xls,BU16,73,BU,16 +1309,2015_tab14_socsectaxable_amount_nz_all,2015,tab14,socsectaxable,amount,Social security benefits (taxable),nz,filers,all,9,"$30,000 under $40,000",13187212000.0,15in14ar.xls,BU17,73,BU,17 +1310,2015_tab14_socsectaxable_amount_nz_all,2015,tab14,socsectaxable,amount,Social security benefits (taxable),nz,filers,all,10,"$40,000 under $50,000",18003861000.0,15in14ar.xls,BU18,73,BU,18 +1311,2015_tab14_socsectaxable_amount_nz_all,2015,tab14,socsectaxable,amount,Social security benefits (taxable),nz,filers,all,11,"$50,000 under $75,000",61729360000.0,15in14ar.xls,BU19,73,BU,19 +1312,2015_tab14_socsectaxable_amount_nz_all,2015,tab14,socsectaxable,amount,Social security benefits (taxable),nz,filers,all,12,"$75,000 under $100,000",57871398000.0,15in14ar.xls,BU20,73,BU,20 +1313,2015_tab14_socsectaxable_amount_nz_all,2015,tab14,socsectaxable,amount,Social security benefits (taxable),nz,filers,all,13,"$100,000 under $200,000",86214692000.0,15in14ar.xls,BU21,73,BU,21 +1314,2015_tab14_socsectaxable_amount_nz_all,2015,tab14,socsectaxable,amount,Social security benefits (taxable),nz,filers,all,14,"$200,000 under $500,000",25321729000.0,15in14ar.xls,BU22,73,BU,22 +1315,2015_tab14_socsectaxable_amount_nz_all,2015,tab14,socsectaxable,amount,Social security benefits (taxable),nz,filers,all,15,"$500,000 under $1,000,000",4111568000.0,15in14ar.xls,BU23,73,BU,23 +1316,2015_tab14_socsectaxable_amount_nz_all,2015,tab14,socsectaxable,amount,Social security benefits (taxable),nz,filers,all,16,"$1,000,000 under $1,500,000",991360000.0,15in14ar.xls,BU24,73,BU,24 +1317,2015_tab14_socsectaxable_amount_nz_all,2015,tab14,socsectaxable,amount,Social security benefits (taxable),nz,filers,all,17,"$1,500,000 under $2,000,000",417740000.0,15in14ar.xls,BU25,73,BU,25 +1318,2015_tab14_socsectaxable_amount_nz_all,2015,tab14,socsectaxable,amount,Social security benefits (taxable),nz,filers,all,18,"$2,000,000 under $5,000,000",619869000.0,15in14ar.xls,BU26,73,BU,26 +1319,2015_tab14_socsectaxable_amount_nz_all,2015,tab14,socsectaxable,amount,Social security benefits (taxable),nz,filers,all,19,"$5,000,000 under $10,000,000",165281000.0,15in14ar.xls,BU27,73,BU,27 +1320,2015_tab14_socsectaxable_amount_nz_all,2015,tab14,socsectaxable,amount,Social security benefits (taxable),nz,filers,all,20,"$10,000,000 or more",107963000.0,15in14ar.xls,BU28,73,BU,28 +1321,2015_tab14_socsectaxable_count_nz_all,2015,tab14,socsectaxable,count,Social security benefits (taxable) — number of returns,nz,filers,all,1,"All returns, total",19661104.0,15in14ar.xls,BT9,72,BT,9 +1322,2015_tab14_socsectaxable_count_nz_all,2015,tab14,socsectaxable,count,Social security benefits (taxable) — number of returns,nz,filers,all,2,No adjusted gross income,1092.0,15in14ar.xls,BT10,72,BT,10 +1323,2015_tab14_socsectaxable_count_nz_all,2015,tab14,socsectaxable,count,Social security benefits (taxable) — number of returns,nz,filers,all,3,"$1 under $5,000",15592.0,15in14ar.xls,BT11,72,BT,11 +1324,2015_tab14_socsectaxable_count_nz_all,2015,tab14,socsectaxable,count,Social security benefits (taxable) — number of returns,nz,filers,all,4,"$5,000 under $10,000",39948.0,15in14ar.xls,BT12,72,BT,12 +1325,2015_tab14_socsectaxable_count_nz_all,2015,tab14,socsectaxable,count,Social security benefits (taxable) — number of returns,nz,filers,all,5,"$10,000 under $15,000",153032.0,15in14ar.xls,BT13,72,BT,13 +1326,2015_tab14_socsectaxable_count_nz_all,2015,tab14,socsectaxable,count,Social security benefits (taxable) — number of returns,nz,filers,all,6,"$15,000 under $20,000",862286.0,15in14ar.xls,BT14,72,BT,14 +1327,2015_tab14_socsectaxable_count_nz_all,2015,tab14,socsectaxable,count,Social security benefits (taxable) — number of returns,nz,filers,all,7,"$20,000 under $25,000",1293573.0,15in14ar.xls,BT15,72,BT,15 +1328,2015_tab14_socsectaxable_count_nz_all,2015,tab14,socsectaxable,count,Social security benefits (taxable) — number of returns,nz,filers,all,8,"$25,000 under $30,000",1245729.0,15in14ar.xls,BT16,72,BT,16 +1329,2015_tab14_socsectaxable_count_nz_all,2015,tab14,socsectaxable,count,Social security benefits (taxable) — number of returns,nz,filers,all,9,"$30,000 under $40,000",2188504.0,15in14ar.xls,BT17,72,BT,17 +1330,2015_tab14_socsectaxable_count_nz_all,2015,tab14,socsectaxable,count,Social security benefits (taxable) — number of returns,nz,filers,all,10,"$40,000 under $50,000",1846896.0,15in14ar.xls,BT18,72,BT,18 +1331,2015_tab14_socsectaxable_count_nz_all,2015,tab14,socsectaxable,count,Social security benefits (taxable) — number of returns,nz,filers,all,11,"$50,000 under $75,000",4138890.0,15in14ar.xls,BT19,72,BT,19 +1332,2015_tab14_socsectaxable_count_nz_all,2015,tab14,socsectaxable,count,Social security benefits (taxable) — number of returns,nz,filers,all,12,"$75,000 under $100,000",2935392.0,15in14ar.xls,BT20,72,BT,20 +1333,2015_tab14_socsectaxable_count_nz_all,2015,tab14,socsectaxable,count,Social security benefits (taxable) — number of returns,nz,filers,all,13,"$100,000 under $200,000",3751578.0,15in14ar.xls,BT21,72,BT,21 +1334,2015_tab14_socsectaxable_count_nz_all,2015,tab14,socsectaxable,count,Social security benefits (taxable) — number of returns,nz,filers,all,14,"$200,000 under $500,000",961000.0,15in14ar.xls,BT22,72,BT,22 +1335,2015_tab14_socsectaxable_count_nz_all,2015,tab14,socsectaxable,count,Social security benefits (taxable) — number of returns,nz,filers,all,15,"$500,000 under $1,000,000",148824.0,15in14ar.xls,BT23,72,BT,23 +1336,2015_tab14_socsectaxable_count_nz_all,2015,tab14,socsectaxable,count,Social security benefits (taxable) — number of returns,nz,filers,all,16,"$1,000,000 under $1,500,000",35055.0,15in14ar.xls,BT24,72,BT,24 +1337,2015_tab14_socsectaxable_count_nz_all,2015,tab14,socsectaxable,count,Social security benefits (taxable) — number of returns,nz,filers,all,17,"$1,500,000 under $2,000,000",14133.0,15in14ar.xls,BT25,72,BT,25 +1338,2015_tab14_socsectaxable_count_nz_all,2015,tab14,socsectaxable,count,Social security benefits (taxable) — number of returns,nz,filers,all,18,"$2,000,000 under $5,000,000",20918.0,15in14ar.xls,BT26,72,BT,26 +1339,2015_tab14_socsectaxable_count_nz_all,2015,tab14,socsectaxable,count,Social security benefits (taxable) — number of returns,nz,filers,all,19,"$5,000,000 under $10,000,000",5307.0,15in14ar.xls,BT27,72,BT,27 +1340,2015_tab14_socsectaxable_count_nz_all,2015,tab14,socsectaxable,count,Social security benefits (taxable) — number of returns,nz,filers,all,20,"$10,000,000 or more",3355.0,15in14ar.xls,BT28,72,BT,28 +1341,2015_tab14_socsectot_amount_nz_all,2015,tab14,socsectot,amount,Social security benefits (total),nz,filers,all,1,"All returns, total",605152093000.0,15in14ar.xls,BS9,71,BS,9 +1342,2015_tab14_socsectot_amount_nz_all,2015,tab14,socsectot,amount,Social security benefits (total),nz,filers,all,2,No adjusted gross income,17452268000.0,15in14ar.xls,BS10,71,BS,10 +1343,2015_tab14_socsectot_amount_nz_all,2015,tab14,socsectot,amount,Social security benefits (total),nz,filers,all,3,"$1 under $5,000",32721934000.0,15in14ar.xls,BS11,71,BS,11 +1344,2015_tab14_socsectot_amount_nz_all,2015,tab14,socsectot,amount,Social security benefits (total),nz,filers,all,4,"$5,000 under $10,000",36055882000.0,15in14ar.xls,BS12,71,BS,12 +1345,2015_tab14_socsectot_amount_nz_all,2015,tab14,socsectot,amount,Social security benefits (total),nz,filers,all,5,"$10,000 under $15,000",43794038000.0,15in14ar.xls,BS13,71,BS,13 +1346,2015_tab14_socsectot_amount_nz_all,2015,tab14,socsectot,amount,Social security benefits (total),nz,filers,all,6,"$15,000 under $20,000",37323814000.0,15in14ar.xls,BS14,71,BS,14 +1347,2015_tab14_socsectot_amount_nz_all,2015,tab14,socsectot,amount,Social security benefits (total),nz,filers,all,7,"$20,000 under $25,000",32034479000.0,15in14ar.xls,BS15,71,BS,15 +1348,2015_tab14_socsectot_amount_nz_all,2015,tab14,socsectot,amount,Social security benefits (total),nz,filers,all,8,"$25,000 under $30,000",27085903000.0,15in14ar.xls,BS16,71,BS,16 +1349,2015_tab14_socsectot_amount_nz_all,2015,tab14,socsectot,amount,Social security benefits (total),nz,filers,all,9,"$30,000 under $40,000",45862459000.0,15in14ar.xls,BS17,71,BS,17 +1350,2015_tab14_socsectot_amount_nz_all,2015,tab14,socsectot,amount,Social security benefits (total),nz,filers,all,10,"$40,000 under $50,000",37692182000.0,15in14ar.xls,BS18,71,BS,18 +1351,2015_tab14_socsectot_amount_nz_all,2015,tab14,socsectot,amount,Social security benefits (total),nz,filers,all,11,"$50,000 under $75,000",86766286000.0,15in14ar.xls,BS19,71,BS,19 +1352,2015_tab14_socsectot_amount_nz_all,2015,tab14,socsectot,amount,Social security benefits (total),nz,filers,all,12,"$75,000 under $100,000",69506791000.0,15in14ar.xls,BS20,71,BS,20 +1353,2015_tab14_socsectot_amount_nz_all,2015,tab14,socsectot,amount,Social security benefits (total),nz,filers,all,13,"$100,000 under $200,000",101513861000.0,15in14ar.xls,BS21,71,BS,21 +1354,2015_tab14_socsectot_amount_nz_all,2015,tab14,socsectot,amount,Social security benefits (total),nz,filers,all,14,"$200,000 under $500,000",29790900000.0,15in14ar.xls,BS22,71,BS,22 +1355,2015_tab14_socsectot_amount_nz_all,2015,tab14,socsectot,amount,Social security benefits (total),nz,filers,all,15,"$500,000 under $1,000,000",4837200000.0,15in14ar.xls,BS23,71,BS,23 +1356,2015_tab14_socsectot_amount_nz_all,2015,tab14,socsectot,amount,Social security benefits (total),nz,filers,all,16,"$1,000,000 under $1,500,000",1169114000.0,15in14ar.xls,BS24,71,BS,24 +1357,2015_tab14_socsectot_amount_nz_all,2015,tab14,socsectot,amount,Social security benefits (total),nz,filers,all,17,"$1,500,000 under $2,000,000",494040000.0,15in14ar.xls,BS25,71,BS,25 +1358,2015_tab14_socsectot_amount_nz_all,2015,tab14,socsectot,amount,Social security benefits (total),nz,filers,all,18,"$2,000,000 under $5,000,000",729459000.0,15in14ar.xls,BS26,71,BS,26 +1359,2015_tab14_socsectot_amount_nz_all,2015,tab14,socsectot,amount,Social security benefits (total),nz,filers,all,19,"$5,000,000 under $10,000,000",194448000.0,15in14ar.xls,BS27,71,BS,27 +1360,2015_tab14_socsectot_amount_nz_all,2015,tab14,socsectot,amount,Social security benefits (total),nz,filers,all,20,"$10,000,000 or more",127035000.0,15in14ar.xls,BS28,71,BS,28 +1361,2015_tab14_socsectot_count_nz_all,2015,tab14,socsectot,count,Social security benefits (total) — number of returns,nz,filers,all,1,"All returns, total",28087514.0,15in14ar.xls,BR9,70,BR,9 +1362,2015_tab14_socsectot_count_nz_all,2015,tab14,socsectot,count,Social security benefits (total) — number of returns,nz,filers,all,2,No adjusted gross income,892768.0,15in14ar.xls,BR10,70,BR,10 +1363,2015_tab14_socsectot_count_nz_all,2015,tab14,socsectot,count,Social security benefits (total) — number of returns,nz,filers,all,3,"$1 under $5,000",1927027.0,15in14ar.xls,BR11,70,BR,11 +1364,2015_tab14_socsectot_count_nz_all,2015,tab14,socsectot,count,Social security benefits (total) — number of returns,nz,filers,all,4,"$5,000 under $10,000",2002601.0,15in14ar.xls,BR12,70,BR,12 +1365,2015_tab14_socsectot_count_nz_all,2015,tab14,socsectot,count,Social security benefits (total) — number of returns,nz,filers,all,5,"$10,000 under $15,000",2349570.0,15in14ar.xls,BR13,70,BR,13 +1366,2015_tab14_socsectot_count_nz_all,2015,tab14,socsectot,count,Social security benefits (total) — number of returns,nz,filers,all,6,"$15,000 under $20,000",1959197.0,15in14ar.xls,BR14,70,BR,14 +1367,2015_tab14_socsectot_count_nz_all,2015,tab14,socsectot,count,Social security benefits (total) — number of returns,nz,filers,all,7,"$20,000 under $25,000",1581873.0,15in14ar.xls,BR15,70,BR,15 +1368,2015_tab14_socsectot_count_nz_all,2015,tab14,socsectot,count,Social security benefits (total) — number of returns,nz,filers,all,8,"$25,000 under $30,000",1319452.0,15in14ar.xls,BR16,70,BR,16 +1369,2015_tab14_socsectot_count_nz_all,2015,tab14,socsectot,count,Social security benefits (total) — number of returns,nz,filers,all,9,"$30,000 under $40,000",2190498.0,15in14ar.xls,BR17,70,BR,17 +1370,2015_tab14_socsectot_count_nz_all,2015,tab14,socsectot,count,Social security benefits (total) — number of returns,nz,filers,all,10,"$40,000 under $50,000",1848962.0,15in14ar.xls,BR18,70,BR,18 +1371,2015_tab14_socsectot_count_nz_all,2015,tab14,socsectot,count,Social security benefits (total) — number of returns,nz,filers,all,11,"$50,000 under $75,000",4139897.0,15in14ar.xls,BR19,70,BR,19 +1372,2015_tab14_socsectot_count_nz_all,2015,tab14,socsectot,count,Social security benefits (total) — number of returns,nz,filers,all,12,"$75,000 under $100,000",2935395.0,15in14ar.xls,BR20,70,BR,20 +1373,2015_tab14_socsectot_count_nz_all,2015,tab14,socsectot,count,Social security benefits (total) — number of returns,nz,filers,all,13,"$100,000 under $200,000",3751605.0,15in14ar.xls,BR21,70,BR,21 +1374,2015_tab14_socsectot_count_nz_all,2015,tab14,socsectot,count,Social security benefits (total) — number of returns,nz,filers,all,14,"$200,000 under $500,000",961029.0,15in14ar.xls,BR22,70,BR,22 +1375,2015_tab14_socsectot_count_nz_all,2015,tab14,socsectot,count,Social security benefits (total) — number of returns,nz,filers,all,15,"$500,000 under $1,000,000",148836.0,15in14ar.xls,BR23,70,BR,23 +1376,2015_tab14_socsectot_count_nz_all,2015,tab14,socsectot,count,Social security benefits (total) — number of returns,nz,filers,all,16,"$1,000,000 under $1,500,000",35055.0,15in14ar.xls,BR24,70,BR,24 +1377,2015_tab14_socsectot_count_nz_all,2015,tab14,socsectot,count,Social security benefits (total) — number of returns,nz,filers,all,17,"$1,500,000 under $2,000,000",14165.0,15in14ar.xls,BR25,70,BR,25 +1378,2015_tab14_socsectot_count_nz_all,2015,tab14,socsectot,count,Social security benefits (total) — number of returns,nz,filers,all,18,"$2,000,000 under $5,000,000",20924.0,15in14ar.xls,BR26,70,BR,26 +1379,2015_tab14_socsectot_count_nz_all,2015,tab14,socsectot,count,Social security benefits (total) — number of returns,nz,filers,all,19,"$5,000,000 under $10,000,000",5307.0,15in14ar.xls,BR27,70,BR,27 +1380,2015_tab14_socsectot_count_nz_all,2015,tab14,socsectot,count,Social security benefits (total) — number of returns,nz,filers,all,20,"$10,000,000 or more",3356.0,15in14ar.xls,BR28,70,BR,28 +1381,2015_tab14_taxbc_amount_nz_all,2015,tab14,taxbc,amount,Income tax before credits,nz,filers,all,1,"All returns, total",1516165675000.0,15in14ar.xls,EI9,139,EI,9 +1382,2015_tab14_taxbc_amount_nz_all,2015,tab14,taxbc,amount,Income tax before credits,nz,filers,all,2,No adjusted gross income,276447000.0,15in14ar.xls,EI10,139,EI,10 +1383,2015_tab14_taxbc_amount_nz_all,2015,tab14,taxbc,amount,Income tax before credits,nz,filers,all,3,"$1 under $5,000",63583000.0,15in14ar.xls,EI11,139,EI,11 +1384,2015_tab14_taxbc_amount_nz_all,2015,tab14,taxbc,amount,Income tax before credits,nz,filers,all,4,"$5,000 under $10,000",412244000.0,15in14ar.xls,EI12,139,EI,12 +1385,2015_tab14_taxbc_amount_nz_all,2015,tab14,taxbc,amount,Income tax before credits,nz,filers,all,5,"$10,000 under $15,000",1802382000.0,15in14ar.xls,EI13,139,EI,13 +1386,2015_tab14_taxbc_amount_nz_all,2015,tab14,taxbc,amount,Income tax before credits,nz,filers,all,6,"$15,000 under $20,000",4400309000.0,15in14ar.xls,EI14,139,EI,14 +1387,2015_tab14_taxbc_amount_nz_all,2015,tab14,taxbc,amount,Income tax before credits,nz,filers,all,7,"$20,000 under $25,000",7889130000.0,15in14ar.xls,EI15,139,EI,15 +1388,2015_tab14_taxbc_amount_nz_all,2015,tab14,taxbc,amount,Income tax before credits,nz,filers,all,8,"$25,000 under $30,000",11452784000.0,15in14ar.xls,EI16,139,EI,16 +1389,2015_tab14_taxbc_amount_nz_all,2015,tab14,taxbc,amount,Income tax before credits,nz,filers,all,9,"$30,000 under $40,000",31571224000.0,15in14ar.xls,EI17,139,EI,17 +1390,2015_tab14_taxbc_amount_nz_all,2015,tab14,taxbc,amount,Income tax before credits,nz,filers,all,10,"$40,000 under $50,000",38429463000.0,15in14ar.xls,EI18,139,EI,18 +1391,2015_tab14_taxbc_amount_nz_all,2015,tab14,taxbc,amount,Income tax before credits,nz,filers,all,11,"$50,000 under $75,000",112834149000.0,15in14ar.xls,EI19,139,EI,19 +1392,2015_tab14_taxbc_amount_nz_all,2015,tab14,taxbc,amount,Income tax before credits,nz,filers,all,12,"$75,000 under $100,000",116165597000.0,15in14ar.xls,EI20,139,EI,20 +1393,2015_tab14_taxbc_amount_nz_all,2015,tab14,taxbc,amount,Income tax before credits,nz,filers,all,13,"$100,000 under $200,000",330069452000.0,15in14ar.xls,EI21,139,EI,21 +1394,2015_tab14_taxbc_amount_nz_all,2015,tab14,taxbc,amount,Income tax before credits,nz,filers,all,14,"$200,000 under $500,000",302060350000.0,15in14ar.xls,EI22,139,EI,22 +1395,2015_tab14_taxbc_amount_nz_all,2015,tab14,taxbc,amount,Income tax before credits,nz,filers,all,15,"$500,000 under $1,000,000",155670713000.0,15in14ar.xls,EI23,139,EI,23 +1396,2015_tab14_taxbc_amount_nz_all,2015,tab14,taxbc,amount,Income tax before credits,nz,filers,all,16,"$1,000,000 under $1,500,000",67038640000.0,15in14ar.xls,EI24,139,EI,24 +1397,2015_tab14_taxbc_amount_nz_all,2015,tab14,taxbc,amount,Income tax before credits,nz,filers,all,17,"$1,500,000 under $2,000,000",40191435000.0,15in14ar.xls,EI25,139,EI,25 +1398,2015_tab14_taxbc_amount_nz_all,2015,tab14,taxbc,amount,Income tax before credits,nz,filers,all,18,"$2,000,000 under $5,000,000",102164371000.0,15in14ar.xls,EI26,139,EI,26 +1399,2015_tab14_taxbc_amount_nz_all,2015,tab14,taxbc,amount,Income tax before credits,nz,filers,all,19,"$5,000,000 under $10,000,000",56313454000.0,15in14ar.xls,EI27,139,EI,27 +1400,2015_tab14_taxbc_amount_nz_all,2015,tab14,taxbc,amount,Income tax before credits,nz,filers,all,20,"$10,000,000 or more",137359950000.0,15in14ar.xls,EI28,139,EI,28 +1401,2015_tab14_taxbc_count_nz_all,2015,tab14,taxbc,count,Income tax before credits — number of returns,nz,filers,all,1,"All returns, total",114482785.0,15in14ar.xls,EH9,138,EH,9 +1402,2015_tab14_taxbc_count_nz_all,2015,tab14,taxbc,count,Income tax before credits — number of returns,nz,filers,all,2,No adjusted gross income,52934.0,15in14ar.xls,EH10,138,EH,10 +1403,2015_tab14_taxbc_count_nz_all,2015,tab14,taxbc,count,Income tax before credits — number of returns,nz,filers,all,3,"$1 under $5,000",277180.0,15in14ar.xls,EH11,138,EH,11 +1404,2015_tab14_taxbc_count_nz_all,2015,tab14,taxbc,count,Income tax before credits — number of returns,nz,filers,all,4,"$5,000 under $10,000",2025070.0,15in14ar.xls,EH12,138,EH,12 +1405,2015_tab14_taxbc_count_nz_all,2015,tab14,taxbc,count,Income tax before credits — number of returns,nz,filers,all,5,"$10,000 under $15,000",6033815.0,15in14ar.xls,EH13,138,EH,13 +1406,2015_tab14_taxbc_count_nz_all,2015,tab14,taxbc,count,Income tax before credits — number of returns,nz,filers,all,6,"$15,000 under $20,000",6874181.0,15in14ar.xls,EH14,138,EH,14 +1407,2015_tab14_taxbc_count_nz_all,2015,tab14,taxbc,count,Income tax before credits — number of returns,nz,filers,all,7,"$20,000 under $25,000",7797618.0,15in14ar.xls,EH15,138,EH,15 +1408,2015_tab14_taxbc_count_nz_all,2015,tab14,taxbc,count,Income tax before credits — number of returns,nz,filers,all,8,"$25,000 under $30,000",7927284.0,15in14ar.xls,EH16,138,EH,16 +1409,2015_tab14_taxbc_count_nz_all,2015,tab14,taxbc,count,Income tax before credits — number of returns,nz,filers,all,9,"$30,000 under $40,000",14274348.0,15in14ar.xls,EH17,138,EH,17 +1410,2015_tab14_taxbc_count_nz_all,2015,tab14,taxbc,count,Income tax before credits — number of returns,nz,filers,all,10,"$40,000 under $50,000",11449438.0,15in14ar.xls,EH18,138,EH,18 +1411,2015_tab14_taxbc_count_nz_all,2015,tab14,taxbc,count,Income tax before credits — number of returns,nz,filers,all,11,"$50,000 under $75,000",19806008.0,15in14ar.xls,EH19,138,EH,19 +1412,2015_tab14_taxbc_count_nz_all,2015,tab14,taxbc,count,Income tax before credits — number of returns,nz,filers,all,12,"$75,000 under $100,000",12736353.0,15in14ar.xls,EH20,138,EH,20 +1413,2015_tab14_taxbc_count_nz_all,2015,tab14,taxbc,count,Income tax before credits — number of returns,nz,filers,all,13,"$100,000 under $200,000",18483267.0,15in14ar.xls,EH21,138,EH,21 +1414,2015_tab14_taxbc_count_nz_all,2015,tab14,taxbc,count,Income tax before credits — number of returns,nz,filers,all,14,"$200,000 under $500,000",5422360.0,15in14ar.xls,EH22,138,EH,22 +1415,2015_tab14_taxbc_count_nz_all,2015,tab14,taxbc,count,Income tax before credits — number of returns,nz,filers,all,15,"$500,000 under $1,000,000",883896.0,15in14ar.xls,EH23,138,EH,23 +1416,2015_tab14_taxbc_count_nz_all,2015,tab14,taxbc,count,Income tax before credits — number of returns,nz,filers,all,16,"$1,000,000 under $1,500,000",195769.0,15in14ar.xls,EH24,138,EH,24 +1417,2015_tab14_taxbc_count_nz_all,2015,tab14,taxbc,count,Income tax before credits — number of returns,nz,filers,all,17,"$1,500,000 under $2,000,000",79933.0,15in14ar.xls,EH25,138,EH,25 +1418,2015_tab14_taxbc_count_nz_all,2015,tab14,taxbc,count,Income tax before credits — number of returns,nz,filers,all,18,"$2,000,000 under $5,000,000",116618.0,15in14ar.xls,EH26,138,EH,26 +1419,2015_tab14_taxbc_count_nz_all,2015,tab14,taxbc,count,Income tax before credits — number of returns,nz,filers,all,19,"$5,000,000 under $10,000,000",28660.0,15in14ar.xls,EH27,138,EH,27 +1420,2015_tab14_taxbc_count_nz_all,2015,tab14,taxbc,count,Income tax before credits — number of returns,nz,filers,all,20,"$10,000,000 or more",18051.0,15in14ar.xls,EH28,138,EH,28 +1421,2015_tab14_taxint_amount_nz_all,2015,tab14,taxint,amount,Taxable interest,nz,filers,all,1,"All returns, total",95881223000.0,15in14ar.xls,I9,9,I,9 +1422,2015_tab14_taxint_amount_nz_all,2015,tab14,taxint,amount,Taxable interest,nz,filers,all,2,No adjusted gross income,4706956000.0,15in14ar.xls,I10,9,I,10 +1423,2015_tab14_taxint_amount_nz_all,2015,tab14,taxint,amount,Taxable interest,nz,filers,all,3,"$1 under $5,000",606099000.0,15in14ar.xls,I11,9,I,11 +1424,2015_tab14_taxint_amount_nz_all,2015,tab14,taxint,amount,Taxable interest,nz,filers,all,4,"$5,000 under $10,000",666442000.0,15in14ar.xls,I12,9,I,12 +1425,2015_tab14_taxint_amount_nz_all,2015,tab14,taxint,amount,Taxable interest,nz,filers,all,5,"$10,000 under $15,000",1053897000.0,15in14ar.xls,I13,9,I,13 +1426,2015_tab14_taxint_amount_nz_all,2015,tab14,taxint,amount,Taxable interest,nz,filers,all,6,"$15,000 under $20,000",1041566000.0,15in14ar.xls,I14,9,I,14 +1427,2015_tab14_taxint_amount_nz_all,2015,tab14,taxint,amount,Taxable interest,nz,filers,all,7,"$20,000 under $25,000",1068287000.0,15in14ar.xls,I15,9,I,15 +1428,2015_tab14_taxint_amount_nz_all,2015,tab14,taxint,amount,Taxable interest,nz,filers,all,8,"$25,000 under $30,000",1061273000.0,15in14ar.xls,I16,9,I,16 +1429,2015_tab14_taxint_amount_nz_all,2015,tab14,taxint,amount,Taxable interest,nz,filers,all,9,"$30,000 under $40,000",2080661000.0,15in14ar.xls,I17,9,I,17 +1430,2015_tab14_taxint_amount_nz_all,2015,tab14,taxint,amount,Taxable interest,nz,filers,all,10,"$40,000 under $50,000",1991377000.0,15in14ar.xls,I18,9,I,18 +1431,2015_tab14_taxint_amount_nz_all,2015,tab14,taxint,amount,Taxable interest,nz,filers,all,11,"$50,000 under $75,000",5759010000.0,15in14ar.xls,I19,9,I,19 +1432,2015_tab14_taxint_amount_nz_all,2015,tab14,taxint,amount,Taxable interest,nz,filers,all,12,"$75,000 under $100,000",5351418000.0,15in14ar.xls,I20,9,I,20 +1433,2015_tab14_taxint_amount_nz_all,2015,tab14,taxint,amount,Taxable interest,nz,filers,all,13,"$100,000 under $200,000",13932224000.0,15in14ar.xls,I21,9,I,21 +1434,2015_tab14_taxint_amount_nz_all,2015,tab14,taxint,amount,Taxable interest,nz,filers,all,14,"$200,000 under $500,000",12956349000.0,15in14ar.xls,I22,9,I,22 +1435,2015_tab14_taxint_amount_nz_all,2015,tab14,taxint,amount,Taxable interest,nz,filers,all,15,"$500,000 under $1,000,000",7248337000.0,15in14ar.xls,I23,9,I,23 +1436,2015_tab14_taxint_amount_nz_all,2015,tab14,taxint,amount,Taxable interest,nz,filers,all,16,"$1,000,000 under $1,500,000",3733575000.0,15in14ar.xls,I24,9,I,24 +1437,2015_tab14_taxint_amount_nz_all,2015,tab14,taxint,amount,Taxable interest,nz,filers,all,17,"$1,500,000 under $2,000,000",2486638000.0,15in14ar.xls,I25,9,I,25 +1438,2015_tab14_taxint_amount_nz_all,2015,tab14,taxint,amount,Taxable interest,nz,filers,all,18,"$2,000,000 under $5,000,000",7437965000.0,15in14ar.xls,I26,9,I,26 +1439,2015_tab14_taxint_amount_nz_all,2015,tab14,taxint,amount,Taxable interest,nz,filers,all,19,"$5,000,000 under $10,000,000",4565985000.0,15in14ar.xls,I27,9,I,27 +1440,2015_tab14_taxint_amount_nz_all,2015,tab14,taxint,amount,Taxable interest,nz,filers,all,20,"$10,000,000 or more",18133165000.0,15in14ar.xls,I28,9,I,28 +1441,2015_tab14_taxint_count_nz_all,2015,tab14,taxint,count,Taxable interest — number of returns,nz,filers,all,1,"All returns, total",42636696.0,15in14ar.xls,H9,8,H,9 +1442,2015_tab14_taxint_count_nz_all,2015,tab14,taxint,count,Taxable interest — number of returns,nz,filers,all,2,No adjusted gross income,653423.0,15in14ar.xls,H10,8,H,10 +1443,2015_tab14_taxint_count_nz_all,2015,tab14,taxint,count,Taxable interest — number of returns,nz,filers,all,3,"$1 under $5,000",1484669.0,15in14ar.xls,H11,8,H,11 +1444,2015_tab14_taxint_count_nz_all,2015,tab14,taxint,count,Taxable interest — number of returns,nz,filers,all,4,"$5,000 under $10,000",1339223.0,15in14ar.xls,H12,8,H,12 +1445,2015_tab14_taxint_count_nz_all,2015,tab14,taxint,count,Taxable interest — number of returns,nz,filers,all,5,"$10,000 under $15,000",1583302.0,15in14ar.xls,H13,8,H,13 +1446,2015_tab14_taxint_count_nz_all,2015,tab14,taxint,count,Taxable interest — number of returns,nz,filers,all,6,"$15,000 under $20,000",1476103.0,15in14ar.xls,H14,8,H,14 +1447,2015_tab14_taxint_count_nz_all,2015,tab14,taxint,count,Taxable interest — number of returns,nz,filers,all,7,"$20,000 under $25,000",1371510.0,15in14ar.xls,H15,8,H,15 +1448,2015_tab14_taxint_count_nz_all,2015,tab14,taxint,count,Taxable interest — number of returns,nz,filers,all,8,"$25,000 under $30,000",1380757.0,15in14ar.xls,H16,8,H,16 +1449,2015_tab14_taxint_count_nz_all,2015,tab14,taxint,count,Taxable interest — number of returns,nz,filers,all,9,"$30,000 under $40,000",2779716.0,15in14ar.xls,H17,8,H,17 +1450,2015_tab14_taxint_count_nz_all,2015,tab14,taxint,count,Taxable interest — number of returns,nz,filers,all,10,"$40,000 under $50,000",2748982.0,15in14ar.xls,H18,8,H,18 +1451,2015_tab14_taxint_count_nz_all,2015,tab14,taxint,count,Taxable interest — number of returns,nz,filers,all,11,"$50,000 under $75,000",6568582.0,15in14ar.xls,H19,8,H,19 +1452,2015_tab14_taxint_count_nz_all,2015,tab14,taxint,count,Taxable interest — number of returns,nz,filers,all,12,"$75,000 under $100,000",5553172.0,15in14ar.xls,H20,8,H,20 +1453,2015_tab14_taxint_count_nz_all,2015,tab14,taxint,count,Taxable interest — number of returns,nz,filers,all,13,"$100,000 under $200,000",10353254.0,15in14ar.xls,H21,8,H,21 +1454,2015_tab14_taxint_count_nz_all,2015,tab14,taxint,count,Taxable interest — number of returns,nz,filers,all,14,"$200,000 under $500,000",4116012.0,15in14ar.xls,H22,8,H,22 +1455,2015_tab14_taxint_count_nz_all,2015,tab14,taxint,count,Taxable interest — number of returns,nz,filers,all,15,"$500,000 under $1,000,000",802733.0,15in14ar.xls,H23,8,H,23 +1456,2015_tab14_taxint_count_nz_all,2015,tab14,taxint,count,Taxable interest — number of returns,nz,filers,all,16,"$1,000,000 under $1,500,000",187220.0,15in14ar.xls,H24,8,H,24 +1457,2015_tab14_taxint_count_nz_all,2015,tab14,taxint,count,Taxable interest — number of returns,nz,filers,all,17,"$1,500,000 under $2,000,000",77308.0,15in14ar.xls,H25,8,H,25 +1458,2015_tab14_taxint_count_nz_all,2015,tab14,taxint,count,Taxable interest — number of returns,nz,filers,all,18,"$2,000,000 under $5,000,000",114470.0,15in14ar.xls,H26,8,H,26 +1459,2015_tab14_taxint_count_nz_all,2015,tab14,taxint,count,Taxable interest — number of returns,nz,filers,all,19,"$5,000,000 under $10,000,000",28312.0,15in14ar.xls,H27,8,H,27 +1460,2015_tab14_taxint_count_nz_all,2015,tab14,taxint,count,Taxable interest — number of returns,nz,filers,all,20,"$10,000,000 or more",17947.0,15in14ar.xls,H28,8,H,28 +1461,2015_tab14_unempcomp_amount_nz_all,2015,tab14,unempcomp,amount,Unemployment compensation,nz,filers,all,1,"All returns, total",27225383000.0,15in14ar.xls,BQ9,69,BQ,9 +1462,2015_tab14_unempcomp_amount_nz_all,2015,tab14,unempcomp,amount,Unemployment compensation,nz,filers,all,2,No adjusted gross income,95744000.0,15in14ar.xls,BQ10,69,BQ,10 +1463,2015_tab14_unempcomp_amount_nz_all,2015,tab14,unempcomp,amount,Unemployment compensation,nz,filers,all,3,"$1 under $5,000",176649000.0,15in14ar.xls,BQ11,69,BQ,11 +1464,2015_tab14_unempcomp_amount_nz_all,2015,tab14,unempcomp,amount,Unemployment compensation,nz,filers,all,4,"$5,000 under $10,000",758938000.0,15in14ar.xls,BQ12,69,BQ,12 +1465,2015_tab14_unempcomp_amount_nz_all,2015,tab14,unempcomp,amount,Unemployment compensation,nz,filers,all,5,"$10,000 under $15,000",1685162000.0,15in14ar.xls,BQ13,69,BQ,13 +1466,2015_tab14_unempcomp_amount_nz_all,2015,tab14,unempcomp,amount,Unemployment compensation,nz,filers,all,6,"$15,000 under $20,000",2228391000.0,15in14ar.xls,BQ14,69,BQ,14 +1467,2015_tab14_unempcomp_amount_nz_all,2015,tab14,unempcomp,amount,Unemployment compensation,nz,filers,all,7,"$20,000 under $25,000",2221652000.0,15in14ar.xls,BQ15,69,BQ,15 +1468,2015_tab14_unempcomp_amount_nz_all,2015,tab14,unempcomp,amount,Unemployment compensation,nz,filers,all,8,"$25,000 under $30,000",2065402000.0,15in14ar.xls,BQ16,69,BQ,16 +1469,2015_tab14_unempcomp_amount_nz_all,2015,tab14,unempcomp,amount,Unemployment compensation,nz,filers,all,9,"$30,000 under $40,000",3372825000.0,15in14ar.xls,BQ17,69,BQ,17 +1470,2015_tab14_unempcomp_amount_nz_all,2015,tab14,unempcomp,amount,Unemployment compensation,nz,filers,all,10,"$40,000 under $50,000",2512534000.0,15in14ar.xls,BQ18,69,BQ,18 +1471,2015_tab14_unempcomp_amount_nz_all,2015,tab14,unempcomp,amount,Unemployment compensation,nz,filers,all,11,"$50,000 under $75,000",4591758000.0,15in14ar.xls,BQ19,69,BQ,19 +1472,2015_tab14_unempcomp_amount_nz_all,2015,tab14,unempcomp,amount,Unemployment compensation,nz,filers,all,12,"$75,000 under $100,000",2965498000.0,15in14ar.xls,BQ20,69,BQ,20 +1473,2015_tab14_unempcomp_amount_nz_all,2015,tab14,unempcomp,amount,Unemployment compensation,nz,filers,all,13,"$100,000 under $200,000",3794597000.0,15in14ar.xls,BQ21,69,BQ,21 +1474,2015_tab14_unempcomp_amount_nz_all,2015,tab14,unempcomp,amount,Unemployment compensation,nz,filers,all,14,"$200,000 under $500,000",688738000.0,15in14ar.xls,BQ22,69,BQ,22 +1475,2015_tab14_unempcomp_amount_nz_all,2015,tab14,unempcomp,amount,Unemployment compensation,nz,filers,all,15,"$500,000 under $1,000,000",48402000.0,15in14ar.xls,BQ23,69,BQ,23 +1476,2015_tab14_unempcomp_amount_nz_all,2015,tab14,unempcomp,amount,Unemployment compensation,nz,filers,all,16,"$1,000,000 under $1,500,000",11553000.0,15in14ar.xls,BQ24,69,BQ,24 +1477,2015_tab14_unempcomp_amount_nz_all,2015,tab14,unempcomp,amount,Unemployment compensation,nz,filers,all,17,"$1,500,000 under $2,000,000",3229000.0,15in14ar.xls,BQ25,69,BQ,25 +1478,2015_tab14_unempcomp_amount_nz_all,2015,tab14,unempcomp,amount,Unemployment compensation,nz,filers,all,18,"$2,000,000 under $5,000,000",3682000.0,15in14ar.xls,BQ26,69,BQ,26 +1479,2015_tab14_unempcomp_amount_nz_all,2015,tab14,unempcomp,amount,Unemployment compensation,nz,filers,all,19,"$5,000,000 under $10,000,000",413000.0,15in14ar.xls,BQ27,69,BQ,27 +1480,2015_tab14_unempcomp_amount_nz_all,2015,tab14,unempcomp,amount,Unemployment compensation,nz,filers,all,20,"$10,000,000 or more",216000.0,15in14ar.xls,BQ28,69,BQ,28 +1481,2015_tab14_unempcomp_count_nz_all,2015,tab14,unempcomp,count,Unemployment compensation — number of returns,nz,filers,all,1,"All returns, total",6206841.0,15in14ar.xls,BP9,68,BP,9 +1482,2015_tab14_unempcomp_count_nz_all,2015,tab14,unempcomp,count,Unemployment compensation — number of returns,nz,filers,all,2,No adjusted gross income,16718.0,15in14ar.xls,BP10,68,BP,10 +1483,2015_tab14_unempcomp_count_nz_all,2015,tab14,unempcomp,count,Unemployment compensation — number of returns,nz,filers,all,3,"$1 under $5,000",88807.0,15in14ar.xls,BP11,68,BP,11 +1484,2015_tab14_unempcomp_count_nz_all,2015,tab14,unempcomp,count,Unemployment compensation — number of returns,nz,filers,all,4,"$5,000 under $10,000",281347.0,15in14ar.xls,BP12,68,BP,12 +1485,2015_tab14_unempcomp_count_nz_all,2015,tab14,unempcomp,count,Unemployment compensation — number of returns,nz,filers,all,5,"$10,000 under $15,000",495187.0,15in14ar.xls,BP13,68,BP,13 +1486,2015_tab14_unempcomp_count_nz_all,2015,tab14,unempcomp,count,Unemployment compensation — number of returns,nz,filers,all,6,"$15,000 under $20,000",584579.0,15in14ar.xls,BP14,68,BP,14 +1487,2015_tab14_unempcomp_count_nz_all,2015,tab14,unempcomp,count,Unemployment compensation — number of returns,nz,filers,all,7,"$20,000 under $25,000",523513.0,15in14ar.xls,BP15,68,BP,15 +1488,2015_tab14_unempcomp_count_nz_all,2015,tab14,unempcomp,count,Unemployment compensation — number of returns,nz,filers,all,8,"$25,000 under $30,000",465381.0,15in14ar.xls,BP16,68,BP,16 +1489,2015_tab14_unempcomp_count_nz_all,2015,tab14,unempcomp,count,Unemployment compensation — number of returns,nz,filers,all,9,"$30,000 under $40,000",766880.0,15in14ar.xls,BP17,68,BP,17 +1490,2015_tab14_unempcomp_count_nz_all,2015,tab14,unempcomp,count,Unemployment compensation — number of returns,nz,filers,all,10,"$40,000 under $50,000",543079.0,15in14ar.xls,BP18,68,BP,18 +1491,2015_tab14_unempcomp_count_nz_all,2015,tab14,unempcomp,count,Unemployment compensation — number of returns,nz,filers,all,11,"$50,000 under $75,000",963756.0,15in14ar.xls,BP19,68,BP,19 +1492,2015_tab14_unempcomp_count_nz_all,2015,tab14,unempcomp,count,Unemployment compensation — number of returns,nz,filers,all,12,"$75,000 under $100,000",602671.0,15in14ar.xls,BP20,68,BP,20 +1493,2015_tab14_unempcomp_count_nz_all,2015,tab14,unempcomp,count,Unemployment compensation — number of returns,nz,filers,all,13,"$100,000 under $200,000",739643.0,15in14ar.xls,BP21,68,BP,21 +1494,2015_tab14_unempcomp_count_nz_all,2015,tab14,unempcomp,count,Unemployment compensation — number of returns,nz,filers,all,14,"$200,000 under $500,000",125117.0,15in14ar.xls,BP22,68,BP,22 +1495,2015_tab14_unempcomp_count_nz_all,2015,tab14,unempcomp,count,Unemployment compensation — number of returns,nz,filers,all,15,"$500,000 under $1,000,000",7602.0,15in14ar.xls,BP23,68,BP,23 +1496,2015_tab14_unempcomp_count_nz_all,2015,tab14,unempcomp,count,Unemployment compensation — number of returns,nz,filers,all,16,"$1,000,000 under $1,500,000",1552.0,15in14ar.xls,BP24,68,BP,24 +1497,2015_tab14_unempcomp_count_nz_all,2015,tab14,unempcomp,count,Unemployment compensation — number of returns,nz,filers,all,17,"$1,500,000 under $2,000,000",456.0,15in14ar.xls,BP25,68,BP,25 +1498,2015_tab14_unempcomp_count_nz_all,2015,tab14,unempcomp,count,Unemployment compensation — number of returns,nz,filers,all,18,"$2,000,000 under $5,000,000",455.0,15in14ar.xls,BP26,68,BP,26 +1499,2015_tab14_unempcomp_count_nz_all,2015,tab14,unempcomp,count,Unemployment compensation — number of returns,nz,filers,all,19,"$5,000,000 under $10,000,000",63.0,15in14ar.xls,BP27,68,BP,27 +1500,2015_tab14_unempcomp_count_nz_all,2015,tab14,unempcomp,count,Unemployment compensation — number of returns,nz,filers,all,20,"$10,000,000 or more",34.0,15in14ar.xls,BP28,68,BP,28 +1501,2015_tab14_wages_amount_nz_all,2015,tab14,wages,amount,Salaries and wages,nz,filers,all,1,"All returns, total",7112222959000.0,15in14ar.xls,G9,7,G,9 +1502,2015_tab14_wages_amount_nz_all,2015,tab14,wages,amount,Salaries and wages,nz,filers,all,2,No adjusted gross income,20111022000.0,15in14ar.xls,G10,7,G,10 +1503,2015_tab14_wages_amount_nz_all,2015,tab14,wages,amount,Salaries and wages,nz,filers,all,3,"$1 under $5,000",26379758000.0,15in14ar.xls,G11,7,G,11 +1504,2015_tab14_wages_amount_nz_all,2015,tab14,wages,amount,Salaries and wages,nz,filers,all,4,"$5,000 under $10,000",65527117000.0,15in14ar.xls,G12,7,G,12 +1505,2015_tab14_wages_amount_nz_all,2015,tab14,wages,amount,Salaries and wages,nz,filers,all,5,"$10,000 under $15,000",108945675000.0,15in14ar.xls,G13,7,G,13 +1506,2015_tab14_wages_amount_nz_all,2015,tab14,wages,amount,Salaries and wages,nz,filers,all,6,"$15,000 under $20,000",152713467000.0,15in14ar.xls,G14,7,G,14 +1507,2015_tab14_wages_amount_nz_all,2015,tab14,wages,amount,Salaries and wages,nz,filers,all,7,"$20,000 under $25,000",182841964000.0,15in14ar.xls,G15,7,G,15 +1508,2015_tab14_wages_amount_nz_all,2015,tab14,wages,amount,Salaries and wages,nz,filers,all,8,"$25,000 under $30,000",200342638000.0,15in14ar.xls,G16,7,G,16 +1509,2015_tab14_wages_amount_nz_all,2015,tab14,wages,amount,Salaries and wages,nz,filers,all,9,"$30,000 under $40,000",428313928000.0,15in14ar.xls,G17,7,G,17 +1510,2015_tab14_wages_amount_nz_all,2015,tab14,wages,amount,Salaries and wages,nz,filers,all,10,"$40,000 under $50,000",424369612000.0,15in14ar.xls,G18,7,G,18 +1511,2015_tab14_wages_amount_nz_all,2015,tab14,wages,amount,Salaries and wages,nz,filers,all,11,"$50,000 under $75,000",952347137000.0,15in14ar.xls,G19,7,G,19 +1512,2015_tab14_wages_amount_nz_all,2015,tab14,wages,amount,Salaries and wages,nz,filers,all,12,"$75,000 under $100,000",835434509000.0,15in14ar.xls,G20,7,G,20 +1513,2015_tab14_wages_amount_nz_all,2015,tab14,wages,amount,Salaries and wages,nz,filers,all,13,"$100,000 under $200,000",1876094165000.0,15in14ar.xls,G21,7,G,21 +1514,2015_tab14_wages_amount_nz_all,2015,tab14,wages,amount,Salaries and wages,nz,filers,all,14,"$200,000 under $500,000",1055689937000.0,15in14ar.xls,G22,7,G,22 +1515,2015_tab14_wages_amount_nz_all,2015,tab14,wages,amount,Salaries and wages,nz,filers,all,15,"$500,000 under $1,000,000",337666673000.0,15in14ar.xls,G23,7,G,23 +1516,2015_tab14_wages_amount_nz_all,2015,tab14,wages,amount,Salaries and wages,nz,filers,all,16,"$1,000,000 under $1,500,000",109129351000.0,15in14ar.xls,G24,7,G,24 +1517,2015_tab14_wages_amount_nz_all,2015,tab14,wages,amount,Salaries and wages,nz,filers,all,17,"$1,500,000 under $2,000,000",56400553000.0,15in14ar.xls,G25,7,G,25 +1518,2015_tab14_wages_amount_nz_all,2015,tab14,wages,amount,Salaries and wages,nz,filers,all,18,"$2,000,000 under $5,000,000",124291852000.0,15in14ar.xls,G26,7,G,26 +1519,2015_tab14_wages_amount_nz_all,2015,tab14,wages,amount,Salaries and wages,nz,filers,all,19,"$5,000,000 under $10,000,000",59258643000.0,15in14ar.xls,G27,7,G,27 +1520,2015_tab14_wages_amount_nz_all,2015,tab14,wages,amount,Salaries and wages,nz,filers,all,20,"$10,000,000 or more",96364957000.0,15in14ar.xls,G28,7,G,28 +1521,2015_tab14_wages_count_nz_all,2015,tab14,wages,count,Salaries and wages — number of returns,nz,filers,all,1,"All returns, total",124591428.0,15in14ar.xls,F9,6,F,9 +1522,2015_tab14_wages_count_nz_all,2015,tab14,wages,count,Salaries and wages — number of returns,nz,filers,all,2,No adjusted gross income,565122.0,15in14ar.xls,F10,6,F,10 +1523,2015_tab14_wages_count_nz_all,2015,tab14,wages,count,Salaries and wages — number of returns,nz,filers,all,3,"$1 under $5,000",7267723.0,15in14ar.xls,F11,6,F,11 +1524,2015_tab14_wages_count_nz_all,2015,tab14,wages,count,Salaries and wages — number of returns,nz,filers,all,4,"$5,000 under $10,000",8804222.0,15in14ar.xls,F12,6,F,12 +1525,2015_tab14_wages_count_nz_all,2015,tab14,wages,count,Salaries and wages — number of returns,nz,filers,all,5,"$10,000 under $15,000",9192735.0,15in14ar.xls,F13,6,F,13 +1526,2015_tab14_wages_count_nz_all,2015,tab14,wages,count,Salaries and wages — number of returns,nz,filers,all,6,"$15,000 under $20,000",9033568.0,15in14ar.xls,F14,6,F,14 +1527,2015_tab14_wages_count_nz_all,2015,tab14,wages,count,Salaries and wages — number of returns,nz,filers,all,7,"$20,000 under $25,000",8423553.0,15in14ar.xls,F15,6,F,15 +1528,2015_tab14_wages_count_nz_all,2015,tab14,wages,count,Salaries and wages — number of returns,nz,filers,all,8,"$25,000 under $30,000",7585499.0,15in14ar.xls,F16,6,F,16 +1529,2015_tab14_wages_count_nz_all,2015,tab14,wages,count,Salaries and wages — number of returns,nz,filers,all,9,"$30,000 under $40,000",12978605.0,15in14ar.xls,F17,6,F,17 +1530,2015_tab14_wages_count_nz_all,2015,tab14,wages,count,Salaries and wages — number of returns,nz,filers,all,10,"$40,000 under $50,000",10142723.0,15in14ar.xls,F18,6,F,18 +1531,2015_tab14_wages_count_nz_all,2015,tab14,wages,count,Salaries and wages — number of returns,nz,filers,all,11,"$50,000 under $75,000",17158839.0,15in14ar.xls,F19,6,F,19 +1532,2015_tab14_wages_count_nz_all,2015,tab14,wages,count,Salaries and wages — number of returns,nz,filers,all,12,"$75,000 under $100,000",11083392.0,15in14ar.xls,F20,6,F,20 +1533,2015_tab14_wages_count_nz_all,2015,tab14,wages,count,Salaries and wages — number of returns,nz,filers,all,13,"$100,000 under $200,000",16409095.0,15in14ar.xls,F21,6,F,21 +1534,2015_tab14_wages_count_nz_all,2015,tab14,wages,count,Salaries and wages — number of returns,nz,filers,all,14,"$200,000 under $500,000",4812720.0,15in14ar.xls,F22,6,F,22 +1535,2015_tab14_wages_count_nz_all,2015,tab14,wages,count,Salaries and wages — number of returns,nz,filers,all,15,"$500,000 under $1,000,000",767954.0,15in14ar.xls,F23,6,F,23 +1536,2015_tab14_wages_count_nz_all,2015,tab14,wages,count,Salaries and wages — number of returns,nz,filers,all,16,"$1,000,000 under $1,500,000",164367.0,15in14ar.xls,F24,6,F,24 +1537,2015_tab14_wages_count_nz_all,2015,tab14,wages,count,Salaries and wages — number of returns,nz,filers,all,17,"$1,500,000 under $2,000,000",66384.0,15in14ar.xls,F25,6,F,25 +1538,2015_tab14_wages_count_nz_all,2015,tab14,wages,count,Salaries and wages — number of returns,nz,filers,all,18,"$2,000,000 under $5,000,000",96609.0,15in14ar.xls,F26,6,F,26 +1539,2015_tab14_wages_count_nz_all,2015,tab14,wages,count,Salaries and wages — number of returns,nz,filers,all,19,"$5,000,000 under $10,000,000",23626.0,15in14ar.xls,F27,6,F,27 +1540,2015_tab14_wages_count_nz_all,2015,tab14,wages,count,Salaries and wages — number of returns,nz,filers,all,20,"$10,000,000 or more",14691.0,15in14ar.xls,F28,6,F,28 +1541,2015_tab21_id_count_nz_all,2015,tab21,id,count,Number of returns with itemized deductions,nz,filers,all,1,"All returns, total",44567263.0,15in21id.xls,B10,2,B,10 +1542,2015_tab21_id_count_nz_all,2015,tab21,id,count,Number of returns with itemized deductions,nz,filers,all,2,"Under $5,000",317443.0,15in21id.xls,B11,2,B,11 +1543,2015_tab21_id_count_nz_all,2015,tab21,id,count,Number of returns with itemized deductions,nz,filers,all,3,"$5,000 under $10,000",384355.0,15in21id.xls,B12,2,B,12 +1544,2015_tab21_id_count_nz_all,2015,tab21,id,count,Number of returns with itemized deductions,nz,filers,all,4,"$10,000 under $15,000",662599.0,15in21id.xls,B13,2,B,13 +1545,2015_tab21_id_count_nz_all,2015,tab21,id,count,Number of returns with itemized deductions,nz,filers,all,5,"$15,000 under $20,000",811728.0,15in21id.xls,B14,2,B,14 +1546,2015_tab21_id_count_nz_all,2015,tab21,id,count,Number of returns with itemized deductions,nz,filers,all,6,"$20,000 under $25,000",941085.0,15in21id.xls,B15,2,B,15 +1547,2015_tab21_id_count_nz_all,2015,tab21,id,count,Number of returns with itemized deductions,nz,filers,all,7,"$25,000 under $30,000",1081500.0,15in21id.xls,B16,2,B,16 +1548,2015_tab21_id_count_nz_all,2015,tab21,id,count,Number of returns with itemized deductions,nz,filers,all,8,"$30,000 under $35,000",1192479.0,15in21id.xls,B17,2,B,17 +1549,2015_tab21_id_count_nz_all,2015,tab21,id,count,Number of returns with itemized deductions,nz,filers,all,9,"$35,000 under $40,000",1372832.0,15in21id.xls,B18,2,B,18 +1550,2015_tab21_id_count_nz_all,2015,tab21,id,count,Number of returns with itemized deductions,nz,filers,all,10,"$40,000 under $45,000",1463063.0,15in21id.xls,B19,2,B,19 +1551,2015_tab21_id_count_nz_all,2015,tab21,id,count,Number of returns with itemized deductions,nz,filers,all,11,"$45,000 under $50,000",1520466.0,15in21id.xls,B20,2,B,20 +1552,2015_tab21_id_count_nz_all,2015,tab21,id,count,Number of returns with itemized deductions,nz,filers,all,12,"$50,000 under $55,000",1535092.0,15in21id.xls,B21,2,B,21 +1553,2015_tab21_id_count_nz_all,2015,tab21,id,count,Number of returns with itemized deductions,nz,filers,all,13,"$55,000 under $60,000",1546349.0,15in21id.xls,B22,2,B,22 +1554,2015_tab21_id_count_nz_all,2015,tab21,id,count,Number of returns with itemized deductions,nz,filers,all,14,"$60,000 under $75,000",4436701.0,15in21id.xls,B23,2,B,23 +1555,2015_tab21_id_count_nz_all,2015,tab21,id,count,Number of returns with itemized deductions,nz,filers,all,15,"$75,000 under $100,000",6957567.0,15in21id.xls,B24,2,B,24 +1556,2015_tab21_id_count_nz_all,2015,tab21,id,count,Number of returns with itemized deductions,nz,filers,all,16,"$100,000 under $200,000",14038259.0,15in21id.xls,B25,2,B,25 +1557,2015_tab21_id_count_nz_all,2015,tab21,id,count,Number of returns with itemized deductions,nz,filers,all,17,"$200,000 under $500,000",5083499.0,15in21id.xls,B26,2,B,26 +1558,2015_tab21_id_count_nz_all,2015,tab21,id,count,Number of returns with itemized deductions,nz,filers,all,18,"$500,000 under $1,000,000",821784.0,15in21id.xls,B27,2,B,27 +1559,2015_tab21_id_count_nz_all,2015,tab21,id,count,Number of returns with itemized deductions,nz,filers,all,19,"$1,000,000 under $1,500,000",177407.0,15in21id.xls,B28,2,B,28 +1560,2015_tab21_id_count_nz_all,2015,tab21,id,count,Number of returns with itemized deductions,nz,filers,all,20,"$1,500,000 under $2,000,000",71685.0,15in21id.xls,B29,2,B,29 +1561,2015_tab21_id_count_nz_all,2015,tab21,id,count,Number of returns with itemized deductions,nz,filers,all,21,"$2,000,000 under $5,000,000",106755.0,15in21id.xls,B30,2,B,30 +1562,2015_tab21_id_count_nz_all,2015,tab21,id,count,Number of returns with itemized deductions,nz,filers,all,22,"$5,000,000 under $10,000,000",27125.0,15in21id.xls,B31,2,B,31 +1563,2015_tab21_id_count_nz_all,2015,tab21,id,count,Number of returns with itemized deductions,nz,filers,all,23,"$10,000,000 or more",17490.0,15in21id.xls,B32,2,B,32 +1564,2015_tab21_id_contributions_amount_nz_all,2015,tab21,id_contributions,amount,Charitable contributions,nz,filers,all,1,"All returns, total",221850264000.0,15in21id.xls,CT10,98,CT,10 +1565,2015_tab21_id_contributions_amount_nz_all,2015,tab21,id_contributions,amount,Charitable contributions,nz,filers,all,2,"Under $5,000",138539000.0,15in21id.xls,CT11,98,CT,11 +1566,2015_tab21_id_contributions_amount_nz_all,2015,tab21,id_contributions,amount,Charitable contributions,nz,filers,all,3,"$5,000 under $10,000",316739000.0,15in21id.xls,CT12,98,CT,12 +1567,2015_tab21_id_contributions_amount_nz_all,2015,tab21,id_contributions,amount,Charitable contributions,nz,filers,all,4,"$10,000 under $15,000",802263000.0,15in21id.xls,CT13,98,CT,13 +1568,2015_tab21_id_contributions_amount_nz_all,2015,tab21,id_contributions,amount,Charitable contributions,nz,filers,all,5,"$15,000 under $20,000",1239419000.0,15in21id.xls,CT14,98,CT,14 +1569,2015_tab21_id_contributions_amount_nz_all,2015,tab21,id_contributions,amount,Charitable contributions,nz,filers,all,6,"$20,000 under $25,000",1595153000.0,15in21id.xls,CT15,98,CT,15 +1570,2015_tab21_id_contributions_amount_nz_all,2015,tab21,id_contributions,amount,Charitable contributions,nz,filers,all,7,"$25,000 under $30,000",2077193000.0,15in21id.xls,CT16,98,CT,16 +1571,2015_tab21_id_contributions_amount_nz_all,2015,tab21,id_contributions,amount,Charitable contributions,nz,filers,all,8,"$30,000 under $35,000",2231311000.0,15in21id.xls,CT17,98,CT,17 +1572,2015_tab21_id_contributions_amount_nz_all,2015,tab21,id_contributions,amount,Charitable contributions,nz,filers,all,9,"$35,000 under $40,000",2750188000.0,15in21id.xls,CT18,98,CT,18 +1573,2015_tab21_id_contributions_amount_nz_all,2015,tab21,id_contributions,amount,Charitable contributions,nz,filers,all,10,"$40,000 under $45,000",3230088000.0,15in21id.xls,CT19,98,CT,19 +1574,2015_tab21_id_contributions_amount_nz_all,2015,tab21,id_contributions,amount,Charitable contributions,nz,filers,all,11,"$45,000 under $50,000",3163725000.0,15in21id.xls,CT20,98,CT,20 +1575,2015_tab21_id_contributions_amount_nz_all,2015,tab21,id_contributions,amount,Charitable contributions,nz,filers,all,12,"$50,000 under $55,000",3413481000.0,15in21id.xls,CT21,98,CT,21 +1576,2015_tab21_id_contributions_amount_nz_all,2015,tab21,id_contributions,amount,Charitable contributions,nz,filers,all,13,"$55,000 under $60,000",3461286000.0,15in21id.xls,CT22,98,CT,22 +1577,2015_tab21_id_contributions_amount_nz_all,2015,tab21,id_contributions,amount,Charitable contributions,nz,filers,all,14,"$60,000 under $75,000",10907307000.0,15in21id.xls,CT23,98,CT,23 +1578,2015_tab21_id_contributions_amount_nz_all,2015,tab21,id_contributions,amount,Charitable contributions,nz,filers,all,15,"$75,000 under $100,000",20349620000.0,15in21id.xls,CT24,98,CT,24 +1579,2015_tab21_id_contributions_amount_nz_all,2015,tab21,id_contributions,amount,Charitable contributions,nz,filers,all,16,"$100,000 under $200,000",51469427000.0,15in21id.xls,CT25,98,CT,25 +1580,2015_tab21_id_contributions_amount_nz_all,2015,tab21,id_contributions,amount,Charitable contributions,nz,filers,all,17,"$200,000 under $500,000",34721825000.0,15in21id.xls,CT26,98,CT,26 +1581,2015_tab21_id_contributions_amount_nz_all,2015,tab21,id_contributions,amount,Charitable contributions,nz,filers,all,18,"$500,000 under $1,000,000",13976256000.0,15in21id.xls,CT27,98,CT,27 +1582,2015_tab21_id_contributions_amount_nz_all,2015,tab21,id_contributions,amount,Charitable contributions,nz,filers,all,19,"$1,000,000 under $1,500,000",6534530000.0,15in21id.xls,CT28,98,CT,28 +1583,2015_tab21_id_contributions_amount_nz_all,2015,tab21,id_contributions,amount,Charitable contributions,nz,filers,all,20,"$1,500,000 under $2,000,000",3856554000.0,15in21id.xls,CT29,98,CT,29 +1584,2015_tab21_id_contributions_amount_nz_all,2015,tab21,id_contributions,amount,Charitable contributions,nz,filers,all,21,"$2,000,000 under $5,000,000",11066495000.0,15in21id.xls,CT30,98,CT,30 +1585,2015_tab21_id_contributions_amount_nz_all,2015,tab21,id_contributions,amount,Charitable contributions,nz,filers,all,22,"$5,000,000 under $10,000,000",7610740000.0,15in21id.xls,CT31,98,CT,31 +1586,2015_tab21_id_contributions_amount_nz_all,2015,tab21,id_contributions,amount,Charitable contributions,nz,filers,all,23,"$10,000,000 or more",36938122000.0,15in21id.xls,CT32,98,CT,32 +1587,2015_tab21_id_contributions_count_nz_all,2015,tab21,id_contributions,count,Charitable contributions — number of returns,nz,filers,all,1,"All returns, total",36623657.0,15in21id.xls,CS10,97,CS,10 +1588,2015_tab21_id_contributions_count_nz_all,2015,tab21,id_contributions,count,Charitable contributions — number of returns,nz,filers,all,2,"Under $5,000",186787.0,15in21id.xls,CS11,97,CS,11 +1589,2015_tab21_id_contributions_count_nz_all,2015,tab21,id_contributions,count,Charitable contributions — number of returns,nz,filers,all,3,"$5,000 under $10,000",225979.0,15in21id.xls,CS12,97,CS,12 +1590,2015_tab21_id_contributions_count_nz_all,2015,tab21,id_contributions,count,Charitable contributions — number of returns,nz,filers,all,4,"$10,000 under $15,000",423728.0,15in21id.xls,CS13,97,CS,13 +1591,2015_tab21_id_contributions_count_nz_all,2015,tab21,id_contributions,count,Charitable contributions — number of returns,nz,filers,all,5,"$15,000 under $20,000",566996.0,15in21id.xls,CS14,97,CS,14 +1592,2015_tab21_id_contributions_count_nz_all,2015,tab21,id_contributions,count,Charitable contributions — number of returns,nz,filers,all,6,"$20,000 under $25,000",645356.0,15in21id.xls,CS15,97,CS,15 +1593,2015_tab21_id_contributions_count_nz_all,2015,tab21,id_contributions,count,Charitable contributions — number of returns,nz,filers,all,7,"$25,000 under $30,000",782028.0,15in21id.xls,CS16,97,CS,16 +1594,2015_tab21_id_contributions_count_nz_all,2015,tab21,id_contributions,count,Charitable contributions — number of returns,nz,filers,all,8,"$30,000 under $35,000",845049.0,15in21id.xls,CS17,97,CS,17 +1595,2015_tab21_id_contributions_count_nz_all,2015,tab21,id_contributions,count,Charitable contributions — number of returns,nz,filers,all,9,"$35,000 under $40,000",982127.0,15in21id.xls,CS18,97,CS,18 +1596,2015_tab21_id_contributions_count_nz_all,2015,tab21,id_contributions,count,Charitable contributions — number of returns,nz,filers,all,10,"$40,000 under $45,000",1073843.0,15in21id.xls,CS19,97,CS,19 +1597,2015_tab21_id_contributions_count_nz_all,2015,tab21,id_contributions,count,Charitable contributions — number of returns,nz,filers,all,11,"$45,000 under $50,000",1130376.0,15in21id.xls,CS20,97,CS,20 +1598,2015_tab21_id_contributions_count_nz_all,2015,tab21,id_contributions,count,Charitable contributions — number of returns,nz,filers,all,12,"$50,000 under $55,000",1184881.0,15in21id.xls,CS21,97,CS,21 +1599,2015_tab21_id_contributions_count_nz_all,2015,tab21,id_contributions,count,Charitable contributions — number of returns,nz,filers,all,13,"$55,000 under $60,000",1223037.0,15in21id.xls,CS22,97,CS,22 +1600,2015_tab21_id_contributions_count_nz_all,2015,tab21,id_contributions,count,Charitable contributions — number of returns,nz,filers,all,14,"$60,000 under $75,000",3490689.0,15in21id.xls,CS23,97,CS,23 +1601,2015_tab21_id_contributions_count_nz_all,2015,tab21,id_contributions,count,Charitable contributions — number of returns,nz,filers,all,15,"$75,000 under $100,000",5768411.0,15in21id.xls,CS24,97,CS,24 +1602,2015_tab21_id_contributions_count_nz_all,2015,tab21,id_contributions,count,Charitable contributions — number of returns,nz,filers,all,16,"$100,000 under $200,000",12289353.0,15in21id.xls,CS25,97,CS,25 +1603,2015_tab21_id_contributions_count_nz_all,2015,tab21,id_contributions,count,Charitable contributions — number of returns,nz,filers,all,17,"$200,000 under $500,000",4648589.0,15in21id.xls,CS26,97,CS,26 +1604,2015_tab21_id_contributions_count_nz_all,2015,tab21,id_contributions,count,Charitable contributions — number of returns,nz,filers,all,18,"$500,000 under $1,000,000",772491.0,15in21id.xls,CS27,97,CS,27 +1605,2015_tab21_id_contributions_count_nz_all,2015,tab21,id_contributions,count,Charitable contributions — number of returns,nz,filers,all,19,"$1,000,000 under $1,500,000",168980.0,15in21id.xls,CS28,97,CS,28 +1606,2015_tab21_id_contributions_count_nz_all,2015,tab21,id_contributions,count,Charitable contributions — number of returns,nz,filers,all,20,"$1,500,000 under $2,000,000",68548.0,15in21id.xls,CS29,97,CS,29 +1607,2015_tab21_id_contributions_count_nz_all,2015,tab21,id_contributions,count,Charitable contributions — number of returns,nz,filers,all,21,"$2,000,000 under $5,000,000",102964.0,15in21id.xls,CS30,97,CS,30 +1608,2015_tab21_id_contributions_count_nz_all,2015,tab21,id_contributions,count,Charitable contributions — number of returns,nz,filers,all,22,"$5,000,000 under $10,000,000",26315.0,15in21id.xls,CS31,97,CS,31 +1609,2015_tab21_id_contributions_count_nz_all,2015,tab21,id_contributions,count,Charitable contributions — number of returns,nz,filers,all,23,"$10,000,000 or more",17133.0,15in21id.xls,CS32,97,CS,32 +1610,2015_tab21_id_gst_amount_nz_all,2015,tab21,id_gst,amount,General sales taxes,nz,filers,all,1,"All returns, total",17641159000.0,15in21id.xls,BX10,76,BX,10 +1611,2015_tab21_id_gst_amount_nz_all,2015,tab21,id_gst,amount,General sales taxes,nz,filers,all,2,"Under $5,000",87240000.0,15in21id.xls,BX11,76,BX,11 +1612,2015_tab21_id_gst_amount_nz_all,2015,tab21,id_gst,amount,General sales taxes,nz,filers,all,3,"$5,000 under $10,000",110588000.0,15in21id.xls,BX12,76,BX,12 +1613,2015_tab21_id_gst_amount_nz_all,2015,tab21,id_gst,amount,General sales taxes,nz,filers,all,4,"$10,000 under $15,000",241775000.0,15in21id.xls,BX13,76,BX,13 +1614,2015_tab21_id_gst_amount_nz_all,2015,tab21,id_gst,amount,General sales taxes,nz,filers,all,5,"$15,000 under $20,000",294130000.0,15in21id.xls,BX14,76,BX,14 +1615,2015_tab21_id_gst_amount_nz_all,2015,tab21,id_gst,amount,General sales taxes,nz,filers,all,6,"$20,000 under $25,000",359337000.0,15in21id.xls,BX15,76,BX,15 +1616,2015_tab21_id_gst_amount_nz_all,2015,tab21,id_gst,amount,General sales taxes,nz,filers,all,7,"$25,000 under $30,000",400764000.0,15in21id.xls,BX16,76,BX,16 +1617,2015_tab21_id_gst_amount_nz_all,2015,tab21,id_gst,amount,General sales taxes,nz,filers,all,8,"$30,000 under $35,000",403013000.0,15in21id.xls,BX17,76,BX,17 +1618,2015_tab21_id_gst_amount_nz_all,2015,tab21,id_gst,amount,General sales taxes,nz,filers,all,9,"$35,000 under $40,000",440235000.0,15in21id.xls,BX18,76,BX,18 +1619,2015_tab21_id_gst_amount_nz_all,2015,tab21,id_gst,amount,General sales taxes,nz,filers,all,10,"$40,000 under $45,000",490661000.0,15in21id.xls,BX19,76,BX,19 +1620,2015_tab21_id_gst_amount_nz_all,2015,tab21,id_gst,amount,General sales taxes,nz,filers,all,11,"$45,000 under $50,000",468137000.0,15in21id.xls,BX20,76,BX,20 +1621,2015_tab21_id_gst_amount_nz_all,2015,tab21,id_gst,amount,General sales taxes,nz,filers,all,12,"$50,000 under $55,000",473215000.0,15in21id.xls,BX21,76,BX,21 +1622,2015_tab21_id_gst_amount_nz_all,2015,tab21,id_gst,amount,General sales taxes,nz,filers,all,13,"$55,000 under $60,000",461612000.0,15in21id.xls,BX22,76,BX,22 +1623,2015_tab21_id_gst_amount_nz_all,2015,tab21,id_gst,amount,General sales taxes,nz,filers,all,14,"$60,000 under $75,000",1451762000.0,15in21id.xls,BX23,76,BX,23 +1624,2015_tab21_id_gst_amount_nz_all,2015,tab21,id_gst,amount,General sales taxes,nz,filers,all,15,"$75,000 under $100,000",2286745000.0,15in21id.xls,BX24,76,BX,24 +1625,2015_tab21_id_gst_amount_nz_all,2015,tab21,id_gst,amount,General sales taxes,nz,filers,all,16,"$100,000 under $200,000",5271602000.0,15in21id.xls,BX25,76,BX,25 +1626,2015_tab21_id_gst_amount_nz_all,2015,tab21,id_gst,amount,General sales taxes,nz,filers,all,17,"$200,000 under $500,000",2841962000.0,15in21id.xls,BX26,76,BX,26 +1627,2015_tab21_id_gst_amount_nz_all,2015,tab21,id_gst,amount,General sales taxes,nz,filers,all,18,"$500,000 under $1,000,000",633305000.0,15in21id.xls,BX27,76,BX,27 +1628,2015_tab21_id_gst_amount_nz_all,2015,tab21,id_gst,amount,General sales taxes,nz,filers,all,19,"$1,000,000 under $1,500,000",207725000.0,15in21id.xls,BX28,76,BX,28 +1629,2015_tab21_id_gst_amount_nz_all,2015,tab21,id_gst,amount,General sales taxes,nz,filers,all,20,"$1,500,000 under $2,000,000",90099000.0,15in21id.xls,BX29,76,BX,29 +1630,2015_tab21_id_gst_amount_nz_all,2015,tab21,id_gst,amount,General sales taxes,nz,filers,all,21,"$2,000,000 under $5,000,000",216404000.0,15in21id.xls,BX30,76,BX,30 +1631,2015_tab21_id_gst_amount_nz_all,2015,tab21,id_gst,amount,General sales taxes,nz,filers,all,22,"$5,000,000 under $10,000,000",107886000.0,15in21id.xls,BX31,76,BX,31 +1632,2015_tab21_id_gst_amount_nz_all,2015,tab21,id_gst,amount,General sales taxes,nz,filers,all,23,"$10,000,000 or more",302960000.0,15in21id.xls,BX32,76,BX,32 +1633,2015_tab21_id_gst_count_nz_all,2015,tab21,id_gst,count,General sales taxes — number of returns,nz,filers,all,1,"All returns, total",9627447.0,15in21id.xls,BW10,75,BW,10 +1634,2015_tab21_id_gst_count_nz_all,2015,tab21,id_gst,count,General sales taxes — number of returns,nz,filers,all,2,"Under $5,000",171918.0,15in21id.xls,BW11,75,BW,11 +1635,2015_tab21_id_gst_count_nz_all,2015,tab21,id_gst,count,General sales taxes — number of returns,nz,filers,all,3,"$5,000 under $10,000",221951.0,15in21id.xls,BW12,75,BW,12 +1636,2015_tab21_id_gst_count_nz_all,2015,tab21,id_gst,count,General sales taxes — number of returns,nz,filers,all,4,"$10,000 under $15,000",366031.0,15in21id.xls,BW13,75,BW,13 +1637,2015_tab21_id_gst_count_nz_all,2015,tab21,id_gst,count,General sales taxes — number of returns,nz,filers,all,5,"$15,000 under $20,000",400738.0,15in21id.xls,BW14,75,BW,14 +1638,2015_tab21_id_gst_count_nz_all,2015,tab21,id_gst,count,General sales taxes — number of returns,nz,filers,all,6,"$20,000 under $25,000",436445.0,15in21id.xls,BW15,75,BW,15 +1639,2015_tab21_id_gst_count_nz_all,2015,tab21,id_gst,count,General sales taxes — number of returns,nz,filers,all,7,"$25,000 under $30,000",428556.0,15in21id.xls,BW16,75,BW,16 +1640,2015_tab21_id_gst_count_nz_all,2015,tab21,id_gst,count,General sales taxes — number of returns,nz,filers,all,8,"$30,000 under $35,000",409050.0,15in21id.xls,BW17,75,BW,17 +1641,2015_tab21_id_gst_count_nz_all,2015,tab21,id_gst,count,General sales taxes — number of returns,nz,filers,all,9,"$35,000 under $40,000",372727.0,15in21id.xls,BW18,75,BW,18 +1642,2015_tab21_id_gst_count_nz_all,2015,tab21,id_gst,count,General sales taxes — number of returns,nz,filers,all,10,"$40,000 under $45,000",411600.0,15in21id.xls,BW19,75,BW,19 +1643,2015_tab21_id_gst_count_nz_all,2015,tab21,id_gst,count,General sales taxes — number of returns,nz,filers,all,11,"$45,000 under $50,000",391616.0,15in21id.xls,BW20,75,BW,20 +1644,2015_tab21_id_gst_count_nz_all,2015,tab21,id_gst,count,General sales taxes — number of returns,nz,filers,all,12,"$50,000 under $55,000",355135.0,15in21id.xls,BW21,75,BW,21 +1645,2015_tab21_id_gst_count_nz_all,2015,tab21,id_gst,count,General sales taxes — number of returns,nz,filers,all,13,"$55,000 under $60,000",360318.0,15in21id.xls,BW22,75,BW,22 +1646,2015_tab21_id_gst_count_nz_all,2015,tab21,id_gst,count,General sales taxes — number of returns,nz,filers,all,14,"$60,000 under $75,000",956422.0,15in21id.xls,BW23,75,BW,23 +1647,2015_tab21_id_gst_count_nz_all,2015,tab21,id_gst,count,General sales taxes — number of returns,nz,filers,all,15,"$75,000 under $100,000",1238586.0,15in21id.xls,BW24,75,BW,24 +1648,2015_tab21_id_gst_count_nz_all,2015,tab21,id_gst,count,General sales taxes — number of returns,nz,filers,all,16,"$100,000 under $200,000",2153784.0,15in21id.xls,BW25,75,BW,25 +1649,2015_tab21_id_gst_count_nz_all,2015,tab21,id_gst,count,General sales taxes — number of returns,nz,filers,all,17,"$200,000 under $500,000",783747.0,15in21id.xls,BW26,75,BW,26 +1650,2015_tab21_id_gst_count_nz_all,2015,tab21,id_gst,count,General sales taxes — number of returns,nz,filers,all,18,"$500,000 under $1,000,000",118949.0,15in21id.xls,BW27,75,BW,27 +1651,2015_tab21_id_gst_count_nz_all,2015,tab21,id_gst,count,General sales taxes — number of returns,nz,filers,all,19,"$1,000,000 under $1,500,000",23402.0,15in21id.xls,BW28,75,BW,28 +1652,2015_tab21_id_gst_count_nz_all,2015,tab21,id_gst,count,General sales taxes — number of returns,nz,filers,all,20,"$1,500,000 under $2,000,000",8828.0,15in21id.xls,BW29,75,BW,29 +1653,2015_tab21_id_gst_count_nz_all,2015,tab21,id_gst,count,General sales taxes — number of returns,nz,filers,all,21,"$2,000,000 under $5,000,000",12503.0,15in21id.xls,BW30,75,BW,30 +1654,2015_tab21_id_gst_count_nz_all,2015,tab21,id_gst,count,General sales taxes — number of returns,nz,filers,all,22,"$5,000,000 under $10,000,000",3184.0,15in21id.xls,BW31,75,BW,31 +1655,2015_tab21_id_gst_count_nz_all,2015,tab21,id_gst,count,General sales taxes — number of returns,nz,filers,all,23,"$10,000,000 or more",1957.0,15in21id.xls,BW32,75,BW,32 +1656,2015_tab21_id_intpaid_amount_nz_all,2015,tab21,id_intpaid,amount,Interest paid,nz,filers,all,1,"All returns, total",304461163000.0,15in21id.xls,CF10,84,CF,10 +1657,2015_tab21_id_intpaid_amount_nz_all,2015,tab21,id_intpaid,amount,Interest paid,nz,filers,all,2,"Under $5,000",1231416000.0,15in21id.xls,CF11,84,CF,11 +1658,2015_tab21_id_intpaid_amount_nz_all,2015,tab21,id_intpaid,amount,Interest paid,nz,filers,all,3,"$5,000 under $10,000",1284063000.0,15in21id.xls,CF12,84,CF,12 +1659,2015_tab21_id_intpaid_amount_nz_all,2015,tab21,id_intpaid,amount,Interest paid,nz,filers,all,4,"$10,000 under $15,000",2148799000.0,15in21id.xls,CF13,84,CF,13 +1660,2015_tab21_id_intpaid_amount_nz_all,2015,tab21,id_intpaid,amount,Interest paid,nz,filers,all,5,"$15,000 under $20,000",2699978000.0,15in21id.xls,CF14,84,CF,14 +1661,2015_tab21_id_intpaid_amount_nz_all,2015,tab21,id_intpaid,amount,Interest paid,nz,filers,all,6,"$20,000 under $25,000",3181401000.0,15in21id.xls,CF15,84,CF,15 +1662,2015_tab21_id_intpaid_amount_nz_all,2015,tab21,id_intpaid,amount,Interest paid,nz,filers,all,7,"$25,000 under $30,000",3748228000.0,15in21id.xls,CF16,84,CF,16 +1663,2015_tab21_id_intpaid_amount_nz_all,2015,tab21,id_intpaid,amount,Interest paid,nz,filers,all,8,"$30,000 under $35,000",4214763000.0,15in21id.xls,CF17,84,CF,17 +1664,2015_tab21_id_intpaid_amount_nz_all,2015,tab21,id_intpaid,amount,Interest paid,nz,filers,all,9,"$35,000 under $40,000",5435778000.0,15in21id.xls,CF18,84,CF,18 +1665,2015_tab21_id_intpaid_amount_nz_all,2015,tab21,id_intpaid,amount,Interest paid,nz,filers,all,10,"$40,000 under $45,000",6009927000.0,15in21id.xls,CF19,84,CF,19 +1666,2015_tab21_id_intpaid_amount_nz_all,2015,tab21,id_intpaid,amount,Interest paid,nz,filers,all,11,"$45,000 under $50,000",6888540000.0,15in21id.xls,CF20,84,CF,20 +1667,2015_tab21_id_intpaid_amount_nz_all,2015,tab21,id_intpaid,amount,Interest paid,nz,filers,all,12,"$50,000 under $55,000",6955789000.0,15in21id.xls,CF21,84,CF,21 +1668,2015_tab21_id_intpaid_amount_nz_all,2015,tab21,id_intpaid,amount,Interest paid,nz,filers,all,13,"$55,000 under $60,000",7424513000.0,15in21id.xls,CF22,84,CF,22 +1669,2015_tab21_id_intpaid_amount_nz_all,2015,tab21,id_intpaid,amount,Interest paid,nz,filers,all,14,"$60,000 under $75,000",23294604000.0,15in21id.xls,CF23,84,CF,23 +1670,2015_tab21_id_intpaid_amount_nz_all,2015,tab21,id_intpaid,amount,Interest paid,nz,filers,all,15,"$75,000 under $100,000",43398259000.0,15in21id.xls,CF24,84,CF,24 +1671,2015_tab21_id_intpaid_amount_nz_all,2015,tab21,id_intpaid,amount,Interest paid,nz,filers,all,16,"$100,000 under $200,000",104846625000.0,15in21id.xls,CF25,84,CF,25 +1672,2015_tab21_id_intpaid_amount_nz_all,2015,tab21,id_intpaid,amount,Interest paid,nz,filers,all,17,"$200,000 under $500,000",53562301000.0,15in21id.xls,CF26,84,CF,26 +1673,2015_tab21_id_intpaid_amount_nz_all,2015,tab21,id_intpaid,amount,Interest paid,nz,filers,all,18,"$500,000 under $1,000,000",12836968000.0,15in21id.xls,CF27,84,CF,27 +1674,2015_tab21_id_intpaid_amount_nz_all,2015,tab21,id_intpaid,amount,Interest paid,nz,filers,all,19,"$1,000,000 under $1,500,000",3505209000.0,15in21id.xls,CF28,84,CF,28 +1675,2015_tab21_id_intpaid_amount_nz_all,2015,tab21,id_intpaid,amount,Interest paid,nz,filers,all,20,"$1,500,000 under $2,000,000",1666807000.0,15in21id.xls,CF29,84,CF,29 +1676,2015_tab21_id_intpaid_amount_nz_all,2015,tab21,id_intpaid,amount,Interest paid,nz,filers,all,21,"$2,000,000 under $5,000,000",3412493000.0,15in21id.xls,CF30,84,CF,30 +1677,2015_tab21_id_intpaid_amount_nz_all,2015,tab21,id_intpaid,amount,Interest paid,nz,filers,all,22,"$5,000,000 under $10,000,000",1535736000.0,15in21id.xls,CF31,84,CF,31 +1678,2015_tab21_id_intpaid_amount_nz_all,2015,tab21,id_intpaid,amount,Interest paid,nz,filers,all,23,"$10,000,000 or more",5178966000.0,15in21id.xls,CF32,84,CF,32 +1679,2015_tab21_id_intpaid_count_nz_all,2015,tab21,id_intpaid,count,Interest paid — number of returns,nz,filers,all,1,"All returns, total",33301990.0,15in21id.xls,CE10,83,CE,10 +1680,2015_tab21_id_intpaid_count_nz_all,2015,tab21,id_intpaid,count,Interest paid — number of returns,nz,filers,all,2,"Under $5,000",172738.0,15in21id.xls,CE11,83,CE,11 +1681,2015_tab21_id_intpaid_count_nz_all,2015,tab21,id_intpaid,count,Interest paid — number of returns,nz,filers,all,3,"$5,000 under $10,000",194117.0,15in21id.xls,CE12,83,CE,12 +1682,2015_tab21_id_intpaid_count_nz_all,2015,tab21,id_intpaid,count,Interest paid — number of returns,nz,filers,all,4,"$10,000 under $15,000",347692.0,15in21id.xls,CE13,83,CE,13 +1683,2015_tab21_id_intpaid_count_nz_all,2015,tab21,id_intpaid,count,Interest paid — number of returns,nz,filers,all,5,"$15,000 under $20,000",428197.0,15in21id.xls,CE14,83,CE,14 +1684,2015_tab21_id_intpaid_count_nz_all,2015,tab21,id_intpaid,count,Interest paid — number of returns,nz,filers,all,6,"$20,000 under $25,000",460451.0,15in21id.xls,CE15,83,CE,15 +1685,2015_tab21_id_intpaid_count_nz_all,2015,tab21,id_intpaid,count,Interest paid — number of returns,nz,filers,all,7,"$25,000 under $30,000",587849.0,15in21id.xls,CE16,83,CE,16 +1686,2015_tab21_id_intpaid_count_nz_all,2015,tab21,id_intpaid,count,Interest paid — number of returns,nz,filers,all,8,"$30,000 under $35,000",666457.0,15in21id.xls,CE17,83,CE,17 +1687,2015_tab21_id_intpaid_count_nz_all,2015,tab21,id_intpaid,count,Interest paid — number of returns,nz,filers,all,9,"$35,000 under $40,000",841538.0,15in21id.xls,CE18,83,CE,18 +1688,2015_tab21_id_intpaid_count_nz_all,2015,tab21,id_intpaid,count,Interest paid — number of returns,nz,filers,all,10,"$40,000 under $45,000",948445.0,15in21id.xls,CE19,83,CE,19 +1689,2015_tab21_id_intpaid_count_nz_all,2015,tab21,id_intpaid,count,Interest paid — number of returns,nz,filers,all,11,"$45,000 under $50,000",1043221.0,15in21id.xls,CE20,83,CE,20 +1690,2015_tab21_id_intpaid_count_nz_all,2015,tab21,id_intpaid,count,Interest paid — number of returns,nz,filers,all,12,"$50,000 under $55,000",1073182.0,15in21id.xls,CE21,83,CE,21 +1691,2015_tab21_id_intpaid_count_nz_all,2015,tab21,id_intpaid,count,Interest paid — number of returns,nz,filers,all,13,"$55,000 under $60,000",1130318.0,15in21id.xls,CE22,83,CE,22 +1692,2015_tab21_id_intpaid_count_nz_all,2015,tab21,id_intpaid,count,Interest paid — number of returns,nz,filers,all,14,"$60,000 under $75,000",3249632.0,15in21id.xls,CE23,83,CE,23 +1693,2015_tab21_id_intpaid_count_nz_all,2015,tab21,id_intpaid,count,Interest paid — number of returns,nz,filers,all,15,"$75,000 under $100,000",5450663.0,15in21id.xls,CE24,83,CE,24 +1694,2015_tab21_id_intpaid_count_nz_all,2015,tab21,id_intpaid,count,Interest paid — number of returns,nz,filers,all,16,"$100,000 under $200,000",11629322.0,15in21id.xls,CE25,83,CE,25 +1695,2015_tab21_id_intpaid_count_nz_all,2015,tab21,id_intpaid,count,Interest paid — number of returns,nz,filers,all,17,"$200,000 under $500,000",4106793.0,15in21id.xls,CE26,83,CE,26 +1696,2015_tab21_id_intpaid_count_nz_all,2015,tab21,id_intpaid,count,Interest paid — number of returns,nz,filers,all,18,"$500,000 under $1,000,000",657620.0,15in21id.xls,CE27,83,CE,27 +1697,2015_tab21_id_intpaid_count_nz_all,2015,tab21,id_intpaid,count,Interest paid — number of returns,nz,filers,all,19,"$1,000,000 under $1,500,000",137332.0,15in21id.xls,CE28,83,CE,28 +1698,2015_tab21_id_intpaid_count_nz_all,2015,tab21,id_intpaid,count,Interest paid — number of returns,nz,filers,all,20,"$1,500,000 under $2,000,000",55881.0,15in21id.xls,CE29,83,CE,29 +1699,2015_tab21_id_intpaid_count_nz_all,2015,tab21,id_intpaid,count,Interest paid — number of returns,nz,filers,all,21,"$2,000,000 under $5,000,000",84234.0,15in21id.xls,CE30,83,CE,30 +1700,2015_tab21_id_intpaid_count_nz_all,2015,tab21,id_intpaid,count,Interest paid — number of returns,nz,filers,all,22,"$5,000,000 under $10,000,000",21758.0,15in21id.xls,CE31,83,CE,31 +1701,2015_tab21_id_intpaid_count_nz_all,2015,tab21,id_intpaid,count,Interest paid — number of returns,nz,filers,all,23,"$10,000,000 or more",14548.0,15in21id.xls,CE32,83,CE,32 +1702,2015_tab21_id_medical_capped_amount_nz_all,2015,tab21,id_medical_capped,amount,Medical expenses (deductible/capped),nz,filers,all,1,"All returns, total",86931032000.0,15in21id.xls,BL10,64,BL,10 +1703,2015_tab21_id_medical_capped_amount_nz_all,2015,tab21,id_medical_capped,amount,Medical expenses (deductible/capped),nz,filers,all,2,"Under $5,000",2108042000.0,15in21id.xls,BL11,64,BL,11 +1704,2015_tab21_id_medical_capped_amount_nz_all,2015,tab21,id_medical_capped,amount,Medical expenses (deductible/capped),nz,filers,all,3,"$5,000 under $10,000",3013542000.0,15in21id.xls,BL12,64,BL,12 +1705,2015_tab21_id_medical_capped_amount_nz_all,2015,tab21,id_medical_capped,amount,Medical expenses (deductible/capped),nz,filers,all,4,"$10,000 under $15,000",3936086000.0,15in21id.xls,BL13,64,BL,13 +1706,2015_tab21_id_medical_capped_amount_nz_all,2015,tab21,id_medical_capped,amount,Medical expenses (deductible/capped),nz,filers,all,5,"$15,000 under $20,000",4297932000.0,15in21id.xls,BL14,64,BL,14 +1707,2015_tab21_id_medical_capped_amount_nz_all,2015,tab21,id_medical_capped,amount,Medical expenses (deductible/capped),nz,filers,all,6,"$20,000 under $25,000",4344639000.0,15in21id.xls,BL15,64,BL,15 +1708,2015_tab21_id_medical_capped_amount_nz_all,2015,tab21,id_medical_capped,amount,Medical expenses (deductible/capped),nz,filers,all,7,"$25,000 under $30,000",4753902000.0,15in21id.xls,BL16,64,BL,16 +1709,2015_tab21_id_medical_capped_amount_nz_all,2015,tab21,id_medical_capped,amount,Medical expenses (deductible/capped),nz,filers,all,8,"$30,000 under $35,000",4039786000.0,15in21id.xls,BL17,64,BL,17 +1710,2015_tab21_id_medical_capped_amount_nz_all,2015,tab21,id_medical_capped,amount,Medical expenses (deductible/capped),nz,filers,all,9,"$35,000 under $40,000",4079939000.0,15in21id.xls,BL18,64,BL,18 +1711,2015_tab21_id_medical_capped_amount_nz_all,2015,tab21,id_medical_capped,amount,Medical expenses (deductible/capped),nz,filers,all,10,"$40,000 under $45,000",3972063000.0,15in21id.xls,BL19,64,BL,19 +1712,2015_tab21_id_medical_capped_amount_nz_all,2015,tab21,id_medical_capped,amount,Medical expenses (deductible/capped),nz,filers,all,11,"$45,000 under $50,000",3375631000.0,15in21id.xls,BL20,64,BL,20 +1713,2015_tab21_id_medical_capped_amount_nz_all,2015,tab21,id_medical_capped,amount,Medical expenses (deductible/capped),nz,filers,all,12,"$50,000 under $55,000",3696461000.0,15in21id.xls,BL21,64,BL,21 +1714,2015_tab21_id_medical_capped_amount_nz_all,2015,tab21,id_medical_capped,amount,Medical expenses (deductible/capped),nz,filers,all,13,"$55,000 under $60,000",3889988000.0,15in21id.xls,BL22,64,BL,22 +1715,2015_tab21_id_medical_capped_amount_nz_all,2015,tab21,id_medical_capped,amount,Medical expenses (deductible/capped),nz,filers,all,14,"$60,000 under $75,000",9137304000.0,15in21id.xls,BL23,64,BL,23 +1716,2015_tab21_id_medical_capped_amount_nz_all,2015,tab21,id_medical_capped,amount,Medical expenses (deductible/capped),nz,filers,all,15,"$75,000 under $100,000",12672435000.0,15in21id.xls,BL24,64,BL,24 +1717,2015_tab21_id_medical_capped_amount_nz_all,2015,tab21,id_medical_capped,amount,Medical expenses (deductible/capped),nz,filers,all,16,"$100,000 under $200,000",14963159000.0,15in21id.xls,BL25,64,BL,25 +1718,2015_tab21_id_medical_capped_amount_nz_all,2015,tab21,id_medical_capped,amount,Medical expenses (deductible/capped),nz,filers,all,17,"$200,000 under $500,000",3896808000.0,15in21id.xls,BL26,64,BL,26 +1719,2015_tab21_id_medical_capped_amount_nz_all,2015,tab21,id_medical_capped,amount,Medical expenses (deductible/capped),nz,filers,all,18,"$500,000 under $1,000,000",565102000.0,15in21id.xls,BL27,64,BL,27 +1720,2015_tab21_id_medical_capped_amount_nz_all,2015,tab21,id_medical_capped,amount,Medical expenses (deductible/capped),nz,filers,all,19,"$1,000,000 under $1,500,000",110275000.0,15in21id.xls,BL28,64,BL,28 +1721,2015_tab21_id_medical_capped_amount_nz_all,2015,tab21,id_medical_capped,amount,Medical expenses (deductible/capped),nz,filers,all,20,"$1,500,000 under $2,000,000",32909000.0,15in21id.xls,BL29,64,BL,29 +1722,2015_tab21_id_medical_capped_amount_nz_all,2015,tab21,id_medical_capped,amount,Medical expenses (deductible/capped),nz,filers,all,21,"$2,000,000 under $5,000,000",36553000.0,15in21id.xls,BL30,64,BL,30 +1723,2015_tab21_id_medical_capped_amount_nz_all,2015,tab21,id_medical_capped,amount,Medical expenses (deductible/capped),nz,filers,all,22,"$5,000,000 under $10,000,000",8477000.0,15in21id.xls,BL31,64,BL,31 +1724,2015_tab21_id_medical_capped_amount_nz_all,2015,tab21,id_medical_capped,amount,Medical expenses (deductible/capped),nz,filers,all,23,"$10,000,000 or more",0.0,15in21id.xls,BL32,64,BL,32 +1725,2015_tab21_id_medical_capped_count_nz_all,2015,tab21,id_medical_capped,count,Medical expenses (deductible/capped) — number of returns,nz,filers,all,1,"All returns, total",8776985.0,15in21id.xls,BK10,63,BK,10 +1726,2015_tab21_id_medical_capped_count_nz_all,2015,tab21,id_medical_capped,count,Medical expenses (deductible/capped) — number of returns,nz,filers,all,2,"Under $5,000",227519.0,15in21id.xls,BK11,63,BK,11 +1727,2015_tab21_id_medical_capped_count_nz_all,2015,tab21,id_medical_capped,count,Medical expenses (deductible/capped) — number of returns,nz,filers,all,3,"$5,000 under $10,000",279663.0,15in21id.xls,BK12,63,BK,12 +1728,2015_tab21_id_medical_capped_count_nz_all,2015,tab21,id_medical_capped,count,Medical expenses (deductible/capped) — number of returns,nz,filers,all,4,"$10,000 under $15,000",463596.0,15in21id.xls,BK13,63,BK,13 +1729,2015_tab21_id_medical_capped_count_nz_all,2015,tab21,id_medical_capped,count,Medical expenses (deductible/capped) — number of returns,nz,filers,all,5,"$15,000 under $20,000",490746.0,15in21id.xls,BK14,63,BK,14 +1730,2015_tab21_id_medical_capped_count_nz_all,2015,tab21,id_medical_capped,count,Medical expenses (deductible/capped) — number of returns,nz,filers,all,6,"$20,000 under $25,000",500858.0,15in21id.xls,BK15,63,BK,15 +1731,2015_tab21_id_medical_capped_count_nz_all,2015,tab21,id_medical_capped,count,Medical expenses (deductible/capped) — number of returns,nz,filers,all,7,"$25,000 under $30,000",532022.0,15in21id.xls,BK16,63,BK,16 +1732,2015_tab21_id_medical_capped_count_nz_all,2015,tab21,id_medical_capped,count,Medical expenses (deductible/capped) — number of returns,nz,filers,all,8,"$30,000 under $35,000",462326.0,15in21id.xls,BK17,63,BK,17 +1733,2015_tab21_id_medical_capped_count_nz_all,2015,tab21,id_medical_capped,count,Medical expenses (deductible/capped) — number of returns,nz,filers,all,9,"$35,000 under $40,000",457498.0,15in21id.xls,BK18,63,BK,18 +1734,2015_tab21_id_medical_capped_count_nz_all,2015,tab21,id_medical_capped,count,Medical expenses (deductible/capped) — number of returns,nz,filers,all,10,"$40,000 under $45,000",452333.0,15in21id.xls,BK19,63,BK,19 +1735,2015_tab21_id_medical_capped_count_nz_all,2015,tab21,id_medical_capped,count,Medical expenses (deductible/capped) — number of returns,nz,filers,all,11,"$45,000 under $50,000",390758.0,15in21id.xls,BK20,63,BK,20 +1736,2015_tab21_id_medical_capped_count_nz_all,2015,tab21,id_medical_capped,count,Medical expenses (deductible/capped) — number of returns,nz,filers,all,12,"$50,000 under $55,000",404991.0,15in21id.xls,BK21,63,BK,21 +1737,2015_tab21_id_medical_capped_count_nz_all,2015,tab21,id_medical_capped,count,Medical expenses (deductible/capped) — number of returns,nz,filers,all,13,"$55,000 under $60,000",423434.0,15in21id.xls,BK22,63,BK,22 +1738,2015_tab21_id_medical_capped_count_nz_all,2015,tab21,id_medical_capped,count,Medical expenses (deductible/capped) — number of returns,nz,filers,all,14,"$60,000 under $75,000",992870.0,15in21id.xls,BK23,63,BK,23 +1739,2015_tab21_id_medical_capped_count_nz_all,2015,tab21,id_medical_capped,count,Medical expenses (deductible/capped) — number of returns,nz,filers,all,15,"$75,000 under $100,000",1222955.0,15in21id.xls,BK24,63,BK,24 +1740,2015_tab21_id_medical_capped_count_nz_all,2015,tab21,id_medical_capped,count,Medical expenses (deductible/capped) — number of returns,nz,filers,all,16,"$100,000 under $200,000",1306677.0,15in21id.xls,BK25,63,BK,25 +1741,2015_tab21_id_medical_capped_count_nz_all,2015,tab21,id_medical_capped,count,Medical expenses (deductible/capped) — number of returns,nz,filers,all,17,"$200,000 under $500,000",159468.0,15in21id.xls,BK26,63,BK,26 +1742,2015_tab21_id_medical_capped_count_nz_all,2015,tab21,id_medical_capped,count,Medical expenses (deductible/capped) — number of returns,nz,filers,all,18,"$500,000 under $1,000,000",7735.0,15in21id.xls,BK27,63,BK,27 +1743,2015_tab21_id_medical_capped_count_nz_all,2015,tab21,id_medical_capped,count,Medical expenses (deductible/capped) — number of returns,nz,filers,all,19,"$1,000,000 under $1,500,000",972.0,15in21id.xls,BK28,63,BK,28 +1744,2015_tab21_id_medical_capped_count_nz_all,2015,tab21,id_medical_capped,count,Medical expenses (deductible/capped) — number of returns,nz,filers,all,20,"$1,500,000 under $2,000,000",301.0,15in21id.xls,BK29,63,BK,29 +1745,2015_tab21_id_medical_capped_count_nz_all,2015,tab21,id_medical_capped,count,Medical expenses (deductible/capped) — number of returns,nz,filers,all,21,"$2,000,000 under $5,000,000",242.0,15in21id.xls,BK30,63,BK,30 +1746,2015_tab21_id_medical_capped_count_nz_all,2015,tab21,id_medical_capped,count,Medical expenses (deductible/capped) — number of returns,nz,filers,all,22,"$5,000,000 under $10,000,000",22.0,15in21id.xls,BK31,63,BK,31 +1747,2015_tab21_id_medical_capped_count_nz_all,2015,tab21,id_medical_capped,count,Medical expenses (deductible/capped) — number of returns,nz,filers,all,23,"$10,000,000 or more",0.0,15in21id.xls,BK32,63,BK,32 +1748,2015_tab21_id_medical_uncapped_amount_nz_all,2015,tab21,id_medical_uncapped,amount,Medical expenses (total/uncapped),nz,filers,all,1,"All returns, total",133785340000.0,15in21id.xls,BN10,66,BN,10 +1749,2015_tab21_id_medical_uncapped_amount_nz_all,2015,tab21,id_medical_uncapped,amount,Medical expenses (total/uncapped),nz,filers,all,2,"Under $5,000",2154665000.0,15in21id.xls,BN11,66,BN,11 +1750,2015_tab21_id_medical_uncapped_amount_nz_all,2015,tab21,id_medical_uncapped,amount,Medical expenses (total/uncapped),nz,filers,all,3,"$5,000 under $10,000",3188696000.0,15in21id.xls,BN12,66,BN,12 +1751,2015_tab21_id_medical_uncapped_amount_nz_all,2015,tab21,id_medical_uncapped,amount,Medical expenses (total/uncapped),nz,filers,all,4,"$10,000 under $15,000",4414676000.0,15in21id.xls,BN13,66,BN,13 +1752,2015_tab21_id_medical_uncapped_amount_nz_all,2015,tab21,id_medical_uncapped,amount,Medical expenses (total/uncapped),nz,filers,all,5,"$15,000 under $20,000",5007572000.0,15in21id.xls,BN14,66,BN,14 +1753,2015_tab21_id_medical_uncapped_amount_nz_all,2015,tab21,id_medical_uncapped,amount,Medical expenses (total/uncapped),nz,filers,all,6,"$20,000 under $25,000",5295009000.0,15in21id.xls,BN15,66,BN,15 +1754,2015_tab21_id_medical_uncapped_amount_nz_all,2015,tab21,id_medical_uncapped,amount,Medical expenses (total/uncapped),nz,filers,all,7,"$25,000 under $30,000",6013365000.0,15in21id.xls,BN16,66,BN,16 +1755,2015_tab21_id_medical_uncapped_amount_nz_all,2015,tab21,id_medical_uncapped,amount,Medical expenses (total/uncapped),nz,filers,all,8,"$30,000 under $35,000",5344248000.0,15in21id.xls,BN17,66,BN,17 +1756,2015_tab21_id_medical_uncapped_amount_nz_all,2015,tab21,id_medical_uncapped,amount,Medical expenses (total/uncapped),nz,filers,all,9,"$35,000 under $40,000",5585290000.0,15in21id.xls,BN18,66,BN,18 +1757,2015_tab21_id_medical_uncapped_amount_nz_all,2015,tab21,id_medical_uncapped,amount,Medical expenses (total/uncapped),nz,filers,all,10,"$40,000 under $45,000",5649836000.0,15in21id.xls,BN19,66,BN,19 +1758,2015_tab21_id_medical_uncapped_amount_nz_all,2015,tab21,id_medical_uncapped,amount,Medical expenses (total/uncapped),nz,filers,all,11,"$45,000 under $50,000",5000049000.0,15in21id.xls,BN20,66,BN,20 +1759,2015_tab21_id_medical_uncapped_amount_nz_all,2015,tab21,id_medical_uncapped,amount,Medical expenses (total/uncapped),nz,filers,all,12,"$50,000 under $55,000",5553125000.0,15in21id.xls,BN21,66,BN,21 +1760,2015_tab21_id_medical_uncapped_amount_nz_all,2015,tab21,id_medical_uncapped,amount,Medical expenses (total/uncapped),nz,filers,all,13,"$55,000 under $60,000",6003880000.0,15in21id.xls,BN22,66,BN,22 +1761,2015_tab21_id_medical_uncapped_amount_nz_all,2015,tab21,id_medical_uncapped,amount,Medical expenses (total/uncapped),nz,filers,all,14,"$60,000 under $75,000",14889171000.0,15in21id.xls,BN23,66,BN,23 +1762,2015_tab21_id_medical_uncapped_amount_nz_all,2015,tab21,id_medical_uncapped,amount,Medical expenses (total/uncapped),nz,filers,all,15,"$75,000 under $100,000",21727339000.0,15in21id.xls,BN24,66,BN,24 +1763,2015_tab21_id_medical_uncapped_amount_nz_all,2015,tab21,id_medical_uncapped,amount,Medical expenses (total/uncapped),nz,filers,all,16,"$100,000 under $200,000",29283649000.0,15in21id.xls,BN25,66,BN,25 +1764,2015_tab21_id_medical_uncapped_amount_nz_all,2015,tab21,id_medical_uncapped,amount,Medical expenses (total/uncapped),nz,filers,all,17,"$200,000 under $500,000",7318921000.0,15in21id.xls,BN26,66,BN,26 +1765,2015_tab21_id_medical_uncapped_amount_nz_all,2015,tab21,id_medical_uncapped,amount,Medical expenses (total/uncapped),nz,filers,all,18,"$500,000 under $1,000,000",977355000.0,15in21id.xls,BN27,66,BN,27 +1766,2015_tab21_id_medical_uncapped_amount_nz_all,2015,tab21,id_medical_uncapped,amount,Medical expenses (total/uncapped),nz,filers,all,19,"$1,000,000 under $1,500,000",201698000.0,15in21id.xls,BN28,66,BN,28 +1767,2015_tab21_id_medical_uncapped_amount_nz_all,2015,tab21,id_medical_uncapped,amount,Medical expenses (total/uncapped),nz,filers,all,20,"$1,500,000 under $2,000,000",74403000.0,15in21id.xls,BN29,66,BN,29 +1768,2015_tab21_id_medical_uncapped_amount_nz_all,2015,tab21,id_medical_uncapped,amount,Medical expenses (total/uncapped),nz,filers,all,21,"$2,000,000 under $5,000,000",83393000.0,15in21id.xls,BN30,66,BN,30 +1769,2015_tab21_id_medical_uncapped_amount_nz_all,2015,tab21,id_medical_uncapped,amount,Medical expenses (total/uncapped),nz,filers,all,22,"$5,000,000 under $10,000,000",18999000.0,15in21id.xls,BN31,66,BN,31 +1770,2015_tab21_id_medical_uncapped_amount_nz_all,2015,tab21,id_medical_uncapped,amount,Medical expenses (total/uncapped),nz,filers,all,23,"$10,000,000 or more",0.0,15in21id.xls,BN32,66,BN,32 +1771,2015_tab21_id_medical_uncapped_count_nz_all,2015,tab21,id_medical_uncapped,count,Medical expenses (total/uncapped) — number of returns,nz,filers,all,1,"All returns, total",8776985.0,15in21id.xls,BM10,65,BM,10 +1772,2015_tab21_id_medical_uncapped_count_nz_all,2015,tab21,id_medical_uncapped,count,Medical expenses (total/uncapped) — number of returns,nz,filers,all,2,"Under $5,000",227519.0,15in21id.xls,BM11,65,BM,11 +1773,2015_tab21_id_medical_uncapped_count_nz_all,2015,tab21,id_medical_uncapped,count,Medical expenses (total/uncapped) — number of returns,nz,filers,all,3,"$5,000 under $10,000",279663.0,15in21id.xls,BM12,65,BM,12 +1774,2015_tab21_id_medical_uncapped_count_nz_all,2015,tab21,id_medical_uncapped,count,Medical expenses (total/uncapped) — number of returns,nz,filers,all,4,"$10,000 under $15,000",463596.0,15in21id.xls,BM13,65,BM,13 +1775,2015_tab21_id_medical_uncapped_count_nz_all,2015,tab21,id_medical_uncapped,count,Medical expenses (total/uncapped) — number of returns,nz,filers,all,5,"$15,000 under $20,000",490746.0,15in21id.xls,BM14,65,BM,14 +1776,2015_tab21_id_medical_uncapped_count_nz_all,2015,tab21,id_medical_uncapped,count,Medical expenses (total/uncapped) — number of returns,nz,filers,all,6,"$20,000 under $25,000",500858.0,15in21id.xls,BM15,65,BM,15 +1777,2015_tab21_id_medical_uncapped_count_nz_all,2015,tab21,id_medical_uncapped,count,Medical expenses (total/uncapped) — number of returns,nz,filers,all,7,"$25,000 under $30,000",532022.0,15in21id.xls,BM16,65,BM,16 +1778,2015_tab21_id_medical_uncapped_count_nz_all,2015,tab21,id_medical_uncapped,count,Medical expenses (total/uncapped) — number of returns,nz,filers,all,8,"$30,000 under $35,000",462326.0,15in21id.xls,BM17,65,BM,17 +1779,2015_tab21_id_medical_uncapped_count_nz_all,2015,tab21,id_medical_uncapped,count,Medical expenses (total/uncapped) — number of returns,nz,filers,all,9,"$35,000 under $40,000",457498.0,15in21id.xls,BM18,65,BM,18 +1780,2015_tab21_id_medical_uncapped_count_nz_all,2015,tab21,id_medical_uncapped,count,Medical expenses (total/uncapped) — number of returns,nz,filers,all,10,"$40,000 under $45,000",452333.0,15in21id.xls,BM19,65,BM,19 +1781,2015_tab21_id_medical_uncapped_count_nz_all,2015,tab21,id_medical_uncapped,count,Medical expenses (total/uncapped) — number of returns,nz,filers,all,11,"$45,000 under $50,000",390758.0,15in21id.xls,BM20,65,BM,20 +1782,2015_tab21_id_medical_uncapped_count_nz_all,2015,tab21,id_medical_uncapped,count,Medical expenses (total/uncapped) — number of returns,nz,filers,all,12,"$50,000 under $55,000",404991.0,15in21id.xls,BM21,65,BM,21 +1783,2015_tab21_id_medical_uncapped_count_nz_all,2015,tab21,id_medical_uncapped,count,Medical expenses (total/uncapped) — number of returns,nz,filers,all,13,"$55,000 under $60,000",423434.0,15in21id.xls,BM22,65,BM,22 +1784,2015_tab21_id_medical_uncapped_count_nz_all,2015,tab21,id_medical_uncapped,count,Medical expenses (total/uncapped) — number of returns,nz,filers,all,14,"$60,000 under $75,000",992870.0,15in21id.xls,BM23,65,BM,23 +1785,2015_tab21_id_medical_uncapped_count_nz_all,2015,tab21,id_medical_uncapped,count,Medical expenses (total/uncapped) — number of returns,nz,filers,all,15,"$75,000 under $100,000",1222955.0,15in21id.xls,BM24,65,BM,24 +1786,2015_tab21_id_medical_uncapped_count_nz_all,2015,tab21,id_medical_uncapped,count,Medical expenses (total/uncapped) — number of returns,nz,filers,all,16,"$100,000 under $200,000",1306677.0,15in21id.xls,BM25,65,BM,25 +1787,2015_tab21_id_medical_uncapped_count_nz_all,2015,tab21,id_medical_uncapped,count,Medical expenses (total/uncapped) — number of returns,nz,filers,all,17,"$200,000 under $500,000",159468.0,15in21id.xls,BM26,65,BM,26 +1788,2015_tab21_id_medical_uncapped_count_nz_all,2015,tab21,id_medical_uncapped,count,Medical expenses (total/uncapped) — number of returns,nz,filers,all,18,"$500,000 under $1,000,000",7735.0,15in21id.xls,BM27,65,BM,27 +1789,2015_tab21_id_medical_uncapped_count_nz_all,2015,tab21,id_medical_uncapped,count,Medical expenses (total/uncapped) — number of returns,nz,filers,all,19,"$1,000,000 under $1,500,000",972.0,15in21id.xls,BM28,65,BM,28 +1790,2015_tab21_id_medical_uncapped_count_nz_all,2015,tab21,id_medical_uncapped,count,Medical expenses (total/uncapped) — number of returns,nz,filers,all,20,"$1,500,000 under $2,000,000",301.0,15in21id.xls,BM29,65,BM,29 +1791,2015_tab21_id_medical_uncapped_count_nz_all,2015,tab21,id_medical_uncapped,count,Medical expenses (total/uncapped) — number of returns,nz,filers,all,21,"$2,000,000 under $5,000,000",242.0,15in21id.xls,BM30,65,BM,30 +1792,2015_tab21_id_medical_uncapped_count_nz_all,2015,tab21,id_medical_uncapped,count,Medical expenses (total/uncapped) — number of returns,nz,filers,all,22,"$5,000,000 under $10,000,000",22.0,15in21id.xls,BM31,65,BM,31 +1793,2015_tab21_id_medical_uncapped_count_nz_all,2015,tab21,id_medical_uncapped,count,Medical expenses (total/uncapped) — number of returns,nz,filers,all,23,"$10,000,000 or more",0.0,15in21id.xls,BM32,65,BM,32 +1794,2015_tab21_id_mortgage_amount_nz_all,2015,tab21,id_mortgage,amount,Home mortgage interest,nz,filers,all,1,"All returns, total",283004465000.0,15in21id.xls,CH10,86,CH,10 +1795,2015_tab21_id_mortgage_amount_nz_all,2015,tab21,id_mortgage,amount,Home mortgage interest,nz,filers,all,2,"Under $5,000",1174521000.0,15in21id.xls,CH11,86,CH,11 +1796,2015_tab21_id_mortgage_amount_nz_all,2015,tab21,id_mortgage,amount,Home mortgage interest,nz,filers,all,3,"$5,000 under $10,000",1237451000.0,15in21id.xls,CH12,86,CH,12 +1797,2015_tab21_id_mortgage_amount_nz_all,2015,tab21,id_mortgage,amount,Home mortgage interest,nz,filers,all,4,"$10,000 under $15,000",2083827000.0,15in21id.xls,CH13,86,CH,13 +1798,2015_tab21_id_mortgage_amount_nz_all,2015,tab21,id_mortgage,amount,Home mortgage interest,nz,filers,all,5,"$15,000 under $20,000",2589295000.0,15in21id.xls,CH14,86,CH,14 +1799,2015_tab21_id_mortgage_amount_nz_all,2015,tab21,id_mortgage,amount,Home mortgage interest,nz,filers,all,6,"$20,000 under $25,000",2992991000.0,15in21id.xls,CH15,86,CH,15 +1800,2015_tab21_id_mortgage_amount_nz_all,2015,tab21,id_mortgage,amount,Home mortgage interest,nz,filers,all,7,"$25,000 under $30,000",3591380000.0,15in21id.xls,CH16,86,CH,16 +1801,2015_tab21_id_mortgage_amount_nz_all,2015,tab21,id_mortgage,amount,Home mortgage interest,nz,filers,all,8,"$30,000 under $35,000",3946351000.0,15in21id.xls,CH17,86,CH,17 +1802,2015_tab21_id_mortgage_amount_nz_all,2015,tab21,id_mortgage,amount,Home mortgage interest,nz,filers,all,9,"$35,000 under $40,000",5122692000.0,15in21id.xls,CH18,86,CH,18 +1803,2015_tab21_id_mortgage_amount_nz_all,2015,tab21,id_mortgage,amount,Home mortgage interest,nz,filers,all,10,"$40,000 under $45,000",5651139000.0,15in21id.xls,CH19,86,CH,19 +1804,2015_tab21_id_mortgage_amount_nz_all,2015,tab21,id_mortgage,amount,Home mortgage interest,nz,filers,all,11,"$45,000 under $50,000",6411648000.0,15in21id.xls,CH20,86,CH,20 +1805,2015_tab21_id_mortgage_amount_nz_all,2015,tab21,id_mortgage,amount,Home mortgage interest,nz,filers,all,12,"$50,000 under $55,000",6543517000.0,15in21id.xls,CH21,86,CH,21 +1806,2015_tab21_id_mortgage_amount_nz_all,2015,tab21,id_mortgage,amount,Home mortgage interest,nz,filers,all,13,"$55,000 under $60,000",6985554000.0,15in21id.xls,CH22,86,CH,22 +1807,2015_tab21_id_mortgage_amount_nz_all,2015,tab21,id_mortgage,amount,Home mortgage interest,nz,filers,all,14,"$60,000 under $75,000",21825640000.0,15in21id.xls,CH23,86,CH,23 +1808,2015_tab21_id_mortgage_amount_nz_all,2015,tab21,id_mortgage,amount,Home mortgage interest,nz,filers,all,15,"$75,000 under $100,000",40897449000.0,15in21id.xls,CH24,86,CH,24 +1809,2015_tab21_id_mortgage_amount_nz_all,2015,tab21,id_mortgage,amount,Home mortgage interest,nz,filers,all,16,"$100,000 under $200,000",103319155000.0,15in21id.xls,CH25,86,CH,25 +1810,2015_tab21_id_mortgage_amount_nz_all,2015,tab21,id_mortgage,amount,Home mortgage interest,nz,filers,all,17,"$200,000 under $500,000",51606382000.0,15in21id.xls,CH26,86,CH,26 +1811,2015_tab21_id_mortgage_amount_nz_all,2015,tab21,id_mortgage,amount,Home mortgage interest,nz,filers,all,18,"$500,000 under $1,000,000",11335153000.0,15in21id.xls,CH27,86,CH,27 +1812,2015_tab21_id_mortgage_amount_nz_all,2015,tab21,id_mortgage,amount,Home mortgage interest,nz,filers,all,19,"$1,000,000 under $1,500,000",2559360000.0,15in21id.xls,CH28,86,CH,28 +1813,2015_tab21_id_mortgage_amount_nz_all,2015,tab21,id_mortgage,amount,Home mortgage interest,nz,filers,all,20,"$1,500,000 under $2,000,000",1043154000.0,15in21id.xls,CH29,86,CH,29 +1814,2015_tab21_id_mortgage_amount_nz_all,2015,tab21,id_mortgage,amount,Home mortgage interest,nz,filers,all,21,"$2,000,000 under $5,000,000",1521570000.0,15in21id.xls,CH30,86,CH,30 +1815,2015_tab21_id_mortgage_amount_nz_all,2015,tab21,id_mortgage,amount,Home mortgage interest,nz,filers,all,22,"$5,000,000 under $10,000,000",360807000.0,15in21id.xls,CH31,86,CH,31 +1816,2015_tab21_id_mortgage_amount_nz_all,2015,tab21,id_mortgage,amount,Home mortgage interest,nz,filers,all,23,"$10,000,000 or more",205431000.0,15in21id.xls,CH32,86,CH,32 +1817,2015_tab21_id_mortgage_count_nz_all,2015,tab21,id_mortgage,count,Home mortgage interest — number of returns,nz,filers,all,1,"All returns, total",32715927.0,15in21id.xls,CG10,85,CG,10 +1818,2015_tab21_id_mortgage_count_nz_all,2015,tab21,id_mortgage,count,Home mortgage interest — number of returns,nz,filers,all,2,"Under $5,000",167028.0,15in21id.xls,CG11,85,CG,11 +1819,2015_tab21_id_mortgage_count_nz_all,2015,tab21,id_mortgage,count,Home mortgage interest — number of returns,nz,filers,all,3,"$5,000 under $10,000",185501.0,15in21id.xls,CG12,85,CG,12 +1820,2015_tab21_id_mortgage_count_nz_all,2015,tab21,id_mortgage,count,Home mortgage interest — number of returns,nz,filers,all,4,"$10,000 under $15,000",338276.0,15in21id.xls,CG13,85,CG,13 +1821,2015_tab21_id_mortgage_count_nz_all,2015,tab21,id_mortgage,count,Home mortgage interest — number of returns,nz,filers,all,5,"$15,000 under $20,000",418199.0,15in21id.xls,CG14,85,CG,14 +1822,2015_tab21_id_mortgage_count_nz_all,2015,tab21,id_mortgage,count,Home mortgage interest — number of returns,nz,filers,all,6,"$20,000 under $25,000",447688.0,15in21id.xls,CG15,85,CG,15 +1823,2015_tab21_id_mortgage_count_nz_all,2015,tab21,id_mortgage,count,Home mortgage interest — number of returns,nz,filers,all,7,"$25,000 under $30,000",578143.0,15in21id.xls,CG16,85,CG,16 +1824,2015_tab21_id_mortgage_count_nz_all,2015,tab21,id_mortgage,count,Home mortgage interest — number of returns,nz,filers,all,8,"$30,000 under $35,000",654008.0,15in21id.xls,CG17,85,CG,17 +1825,2015_tab21_id_mortgage_count_nz_all,2015,tab21,id_mortgage,count,Home mortgage interest — number of returns,nz,filers,all,9,"$35,000 under $40,000",830762.0,15in21id.xls,CG18,85,CG,18 +1826,2015_tab21_id_mortgage_count_nz_all,2015,tab21,id_mortgage,count,Home mortgage interest — number of returns,nz,filers,all,10,"$40,000 under $45,000",939209.0,15in21id.xls,CG19,85,CG,19 +1827,2015_tab21_id_mortgage_count_nz_all,2015,tab21,id_mortgage,count,Home mortgage interest — number of returns,nz,filers,all,11,"$45,000 under $50,000",1036215.0,15in21id.xls,CG20,85,CG,20 +1828,2015_tab21_id_mortgage_count_nz_all,2015,tab21,id_mortgage,count,Home mortgage interest — number of returns,nz,filers,all,12,"$50,000 under $55,000",1064122.0,15in21id.xls,CG21,85,CG,21 +1829,2015_tab21_id_mortgage_count_nz_all,2015,tab21,id_mortgage,count,Home mortgage interest — number of returns,nz,filers,all,13,"$55,000 under $60,000",1119573.0,15in21id.xls,CG22,85,CG,22 +1830,2015_tab21_id_mortgage_count_nz_all,2015,tab21,id_mortgage,count,Home mortgage interest — number of returns,nz,filers,all,14,"$60,000 under $75,000",3210259.0,15in21id.xls,CG23,85,CG,23 +1831,2015_tab21_id_mortgage_count_nz_all,2015,tab21,id_mortgage,count,Home mortgage interest — number of returns,nz,filers,all,15,"$75,000 under $100,000",5392086.0,15in21id.xls,CG24,85,CG,24 +1832,2015_tab21_id_mortgage_count_nz_all,2015,tab21,id_mortgage,count,Home mortgage interest — number of returns,nz,filers,all,16,"$100,000 under $200,000",11482206.0,15in21id.xls,CG25,85,CG,25 +1833,2015_tab21_id_mortgage_count_nz_all,2015,tab21,id_mortgage,count,Home mortgage interest — number of returns,nz,filers,all,17,"$200,000 under $500,000",3988588.0,15in21id.xls,CG26,85,CG,26 +1834,2015_tab21_id_mortgage_count_nz_all,2015,tab21,id_mortgage,count,Home mortgage interest — number of returns,nz,filers,all,18,"$500,000 under $1,000,000",608613.0,15in21id.xls,CG27,85,CG,27 +1835,2015_tab21_id_mortgage_count_nz_all,2015,tab21,id_mortgage,count,Home mortgage interest — number of returns,nz,filers,all,19,"$1,000,000 under $1,500,000",119694.0,15in21id.xls,CG28,85,CG,28 +1836,2015_tab21_id_mortgage_count_nz_all,2015,tab21,id_mortgage,count,Home mortgage interest — number of returns,nz,filers,all,20,"$1,500,000 under $2,000,000",47055.0,15in21id.xls,CG29,85,CG,29 +1837,2015_tab21_id_mortgage_count_nz_all,2015,tab21,id_mortgage,count,Home mortgage interest — number of returns,nz,filers,all,21,"$2,000,000 under $5,000,000",65385.0,15in21id.xls,CG30,85,CG,30 +1838,2015_tab21_id_mortgage_count_nz_all,2015,tab21,id_mortgage,count,Home mortgage interest — number of returns,nz,filers,all,22,"$5,000,000 under $10,000,000",15000.0,15in21id.xls,CG31,85,CG,31 +1839,2015_tab21_id_mortgage_count_nz_all,2015,tab21,id_mortgage,count,Home mortgage interest — number of returns,nz,filers,all,23,"$10,000,000 or more",8316.0,15in21id.xls,CG32,85,CG,32 +1840,2015_tab21_id_pit_amount_nz_all,2015,tab21,id_pit,amount,State income taxes,nz,filers,all,1,"All returns, total",335060168000.0,15in21id.xls,BV10,74,BV,10 +1841,2015_tab21_id_pit_amount_nz_all,2015,tab21,id_pit,amount,State income taxes,nz,filers,all,2,"Under $5,000",247368000.0,15in21id.xls,BV11,74,BV,11 +1842,2015_tab21_id_pit_amount_nz_all,2015,tab21,id_pit,amount,State income taxes,nz,filers,all,3,"$5,000 under $10,000",144224000.0,15in21id.xls,BV12,74,BV,12 +1843,2015_tab21_id_pit_amount_nz_all,2015,tab21,id_pit,amount,State income taxes,nz,filers,all,4,"$10,000 under $15,000",242932000.0,15in21id.xls,BV13,74,BV,13 +1844,2015_tab21_id_pit_amount_nz_all,2015,tab21,id_pit,amount,State income taxes,nz,filers,all,5,"$15,000 under $20,000",352591000.0,15in21id.xls,BV14,74,BV,14 +1845,2015_tab21_id_pit_amount_nz_all,2015,tab21,id_pit,amount,State income taxes,nz,filers,all,6,"$20,000 under $25,000",503057000.0,15in21id.xls,BV15,74,BV,15 +1846,2015_tab21_id_pit_amount_nz_all,2015,tab21,id_pit,amount,State income taxes,nz,filers,all,7,"$25,000 under $30,000",766251000.0,15in21id.xls,BV16,74,BV,16 +1847,2015_tab21_id_pit_amount_nz_all,2015,tab21,id_pit,amount,State income taxes,nz,filers,all,8,"$30,000 under $35,000",1041293000.0,15in21id.xls,BV17,74,BV,17 +1848,2015_tab21_id_pit_amount_nz_all,2015,tab21,id_pit,amount,State income taxes,nz,filers,all,9,"$35,000 under $40,000",1511583000.0,15in21id.xls,BV18,74,BV,18 +1849,2015_tab21_id_pit_amount_nz_all,2015,tab21,id_pit,amount,State income taxes,nz,filers,all,10,"$40,000 under $45,000",1985224000.0,15in21id.xls,BV19,74,BV,19 +1850,2015_tab21_id_pit_amount_nz_all,2015,tab21,id_pit,amount,State income taxes,nz,filers,all,11,"$45,000 under $50,000",2305387000.0,15in21id.xls,BV20,74,BV,20 +1851,2015_tab21_id_pit_amount_nz_all,2015,tab21,id_pit,amount,State income taxes,nz,filers,all,12,"$50,000 under $55,000",2749265000.0,15in21id.xls,BV21,74,BV,21 +1852,2015_tab21_id_pit_amount_nz_all,2015,tab21,id_pit,amount,State income taxes,nz,filers,all,13,"$55,000 under $60,000",3107467000.0,15in21id.xls,BV22,74,BV,22 +1853,2015_tab21_id_pit_amount_nz_all,2015,tab21,id_pit,amount,State income taxes,nz,filers,all,14,"$60,000 under $75,000",10587597000.0,15in21id.xls,BV23,74,BV,23 +1854,2015_tab21_id_pit_amount_nz_all,2015,tab21,id_pit,amount,State income taxes,nz,filers,all,15,"$75,000 under $100,000",23415401000.0,15in21id.xls,BV24,74,BV,24 +1855,2015_tab21_id_pit_amount_nz_all,2015,tab21,id_pit,amount,State income taxes,nz,filers,all,16,"$100,000 under $200,000",82897472000.0,15in21id.xls,BV25,74,BV,25 +1856,2015_tab21_id_pit_amount_nz_all,2015,tab21,id_pit,amount,State income taxes,nz,filers,all,17,"$200,000 under $500,000",72653258000.0,15in21id.xls,BV26,74,BV,26 +1857,2015_tab21_id_pit_amount_nz_all,2015,tab21,id_pit,amount,State income taxes,nz,filers,all,18,"$500,000 under $1,000,000",32864770000.0,15in21id.xls,BV27,74,BV,27 +1858,2015_tab21_id_pit_amount_nz_all,2015,tab21,id_pit,amount,State income taxes,nz,filers,all,19,"$1,000,000 under $1,500,000",14294115000.0,15in21id.xls,BV28,74,BV,28 +1859,2015_tab21_id_pit_amount_nz_all,2015,tab21,id_pit,amount,State income taxes,nz,filers,all,20,"$1,500,000 under $2,000,000",8670169000.0,15in21id.xls,BV29,74,BV,29 +1860,2015_tab21_id_pit_amount_nz_all,2015,tab21,id_pit,amount,State income taxes,nz,filers,all,21,"$2,000,000 under $5,000,000",23164930000.0,15in21id.xls,BV30,74,BV,30 +1861,2015_tab21_id_pit_amount_nz_all,2015,tab21,id_pit,amount,State income taxes,nz,filers,all,22,"$5,000,000 under $10,000,000",13447411000.0,15in21id.xls,BV31,74,BV,31 +1862,2015_tab21_id_pit_amount_nz_all,2015,tab21,id_pit,amount,State income taxes,nz,filers,all,23,"$10,000,000 or more",38108401000.0,15in21id.xls,BV32,74,BV,32 +1863,2015_tab21_id_pit_count_nz_all,2015,tab21,id_pit,count,State income taxes — number of returns,nz,filers,all,1,"All returns, total",33063383.0,15in21id.xls,BU10,73,BU,10 +1864,2015_tab21_id_pit_count_nz_all,2015,tab21,id_pit,count,State income taxes — number of returns,nz,filers,all,2,"Under $5,000",74184.0,15in21id.xls,BU11,73,BU,11 +1865,2015_tab21_id_pit_count_nz_all,2015,tab21,id_pit,count,State income taxes — number of returns,nz,filers,all,3,"$5,000 under $10,000",98328.0,15in21id.xls,BU12,73,BU,12 +1866,2015_tab21_id_pit_count_nz_all,2015,tab21,id_pit,count,State income taxes — number of returns,nz,filers,all,4,"$10,000 under $15,000",192403.0,15in21id.xls,BU13,73,BU,13 +1867,2015_tab21_id_pit_count_nz_all,2015,tab21,id_pit,count,State income taxes — number of returns,nz,filers,all,5,"$15,000 under $20,000",313094.0,15in21id.xls,BU14,73,BU,14 +1868,2015_tab21_id_pit_count_nz_all,2015,tab21,id_pit,count,State income taxes — number of returns,nz,filers,all,6,"$20,000 under $25,000",406796.0,15in21id.xls,BU15,73,BU,15 +1869,2015_tab21_id_pit_count_nz_all,2015,tab21,id_pit,count,State income taxes — number of returns,nz,filers,all,7,"$25,000 under $30,000",557060.0,15in21id.xls,BU16,73,BU,16 +1870,2015_tab21_id_pit_count_nz_all,2015,tab21,id_pit,count,State income taxes — number of returns,nz,filers,all,8,"$30,000 under $35,000",693840.0,15in21id.xls,BU17,73,BU,17 +1871,2015_tab21_id_pit_count_nz_all,2015,tab21,id_pit,count,State income taxes — number of returns,nz,filers,all,9,"$35,000 under $40,000",899962.0,15in21id.xls,BU18,73,BU,18 +1872,2015_tab21_id_pit_count_nz_all,2015,tab21,id_pit,count,State income taxes — number of returns,nz,filers,all,10,"$40,000 under $45,000",955900.0,15in21id.xls,BU19,73,BU,19 +1873,2015_tab21_id_pit_count_nz_all,2015,tab21,id_pit,count,State income taxes — number of returns,nz,filers,all,11,"$45,000 under $50,000",1049616.0,15in21id.xls,BU20,73,BU,20 +1874,2015_tab21_id_pit_count_nz_all,2015,tab21,id_pit,count,State income taxes — number of returns,nz,filers,all,12,"$50,000 under $55,000",1103076.0,15in21id.xls,BU21,73,BU,21 +1875,2015_tab21_id_pit_count_nz_all,2015,tab21,id_pit,count,State income taxes — number of returns,nz,filers,all,13,"$55,000 under $60,000",1126872.0,15in21id.xls,BU22,73,BU,22 +1876,2015_tab21_id_pit_count_nz_all,2015,tab21,id_pit,count,State income taxes — number of returns,nz,filers,all,14,"$60,000 under $75,000",3290380.0,15in21id.xls,BU23,73,BU,23 +1877,2015_tab21_id_pit_count_nz_all,2015,tab21,id_pit,count,State income taxes — number of returns,nz,filers,all,15,"$75,000 under $100,000",5511568.0,15in21id.xls,BU24,73,BU,24 +1878,2015_tab21_id_pit_count_nz_all,2015,tab21,id_pit,count,State income taxes — number of returns,nz,filers,all,16,"$100,000 under $200,000",11533393.0,15in21id.xls,BU25,73,BU,25 +1879,2015_tab21_id_pit_count_nz_all,2015,tab21,id_pit,count,State income taxes — number of returns,nz,filers,all,17,"$200,000 under $500,000",4212361.0,15in21id.xls,BU26,73,BU,26 +1880,2015_tab21_id_pit_count_nz_all,2015,tab21,id_pit,count,State income taxes — number of returns,nz,filers,all,18,"$500,000 under $1,000,000",696445.0,15in21id.xls,BU27,73,BU,27 +1881,2015_tab21_id_pit_count_nz_all,2015,tab21,id_pit,count,State income taxes — number of returns,nz,filers,all,19,"$1,000,000 under $1,500,000",152902.0,15in21id.xls,BU28,73,BU,28 +1882,2015_tab21_id_pit_count_nz_all,2015,tab21,id_pit,count,State income taxes — number of returns,nz,filers,all,20,"$1,500,000 under $2,000,000",62412.0,15in21id.xls,BU29,73,BU,29 +1883,2015_tab21_id_pit_count_nz_all,2015,tab21,id_pit,count,State income taxes — number of returns,nz,filers,all,21,"$2,000,000 under $5,000,000",93602.0,15in21id.xls,BU30,73,BU,30 +1884,2015_tab21_id_pit_count_nz_all,2015,tab21,id_pit,count,State income taxes — number of returns,nz,filers,all,22,"$5,000,000 under $10,000,000",23772.0,15in21id.xls,BU31,73,BU,31 +1885,2015_tab21_id_pit_count_nz_all,2015,tab21,id_pit,count,State income taxes — number of returns,nz,filers,all,23,"$10,000,000 or more",15419.0,15in21id.xls,BU32,73,BU,32 +1886,2015_tab21_id_retax_amount_nz_all,2015,tab21,id_retax,amount,Real estate taxes,nz,filers,all,1,"All returns, total",188605843000.0,15in21id.xls,BZ10,78,BZ,10 +1887,2015_tab21_id_retax_amount_nz_all,2015,tab21,id_retax,amount,Real estate taxes,nz,filers,all,2,"Under $5,000",824302000.0,15in21id.xls,BZ11,78,BZ,11 +1888,2015_tab21_id_retax_amount_nz_all,2015,tab21,id_retax,amount,Real estate taxes,nz,filers,all,3,"$5,000 under $10,000",1007214000.0,15in21id.xls,BZ12,78,BZ,12 +1889,2015_tab21_id_retax_amount_nz_all,2015,tab21,id_retax,amount,Real estate taxes,nz,filers,all,4,"$10,000 under $15,000",1604278000.0,15in21id.xls,BZ13,78,BZ,13 +1890,2015_tab21_id_retax_amount_nz_all,2015,tab21,id_retax,amount,Real estate taxes,nz,filers,all,5,"$15,000 under $20,000",1916831000.0,15in21id.xls,BZ14,78,BZ,14 +1891,2015_tab21_id_retax_amount_nz_all,2015,tab21,id_retax,amount,Real estate taxes,nz,filers,all,6,"$20,000 under $25,000",2079351000.0,15in21id.xls,BZ15,78,BZ,15 +1892,2015_tab21_id_retax_amount_nz_all,2015,tab21,id_retax,amount,Real estate taxes,nz,filers,all,7,"$25,000 under $30,000",2261238000.0,15in21id.xls,BZ16,78,BZ,16 +1893,2015_tab21_id_retax_amount_nz_all,2015,tab21,id_retax,amount,Real estate taxes,nz,filers,all,8,"$30,000 under $35,000",2593568000.0,15in21id.xls,BZ17,78,BZ,17 +1894,2015_tab21_id_retax_amount_nz_all,2015,tab21,id_retax,amount,Real estate taxes,nz,filers,all,9,"$35,000 under $40,000",3149207000.0,15in21id.xls,BZ18,78,BZ,18 +1895,2015_tab21_id_retax_amount_nz_all,2015,tab21,id_retax,amount,Real estate taxes,nz,filers,all,10,"$40,000 under $45,000",3272842000.0,15in21id.xls,BZ19,78,BZ,19 +1896,2015_tab21_id_retax_amount_nz_all,2015,tab21,id_retax,amount,Real estate taxes,nz,filers,all,11,"$45,000 under $50,000",3506541000.0,15in21id.xls,BZ20,78,BZ,20 +1897,2015_tab21_id_retax_amount_nz_all,2015,tab21,id_retax,amount,Real estate taxes,nz,filers,all,12,"$50,000 under $55,000",3703059000.0,15in21id.xls,BZ21,78,BZ,21 +1898,2015_tab21_id_retax_amount_nz_all,2015,tab21,id_retax,amount,Real estate taxes,nz,filers,all,13,"$55,000 under $60,000",4220038000.0,15in21id.xls,BZ22,78,BZ,22 +1899,2015_tab21_id_retax_amount_nz_all,2015,tab21,id_retax,amount,Real estate taxes,nz,filers,all,14,"$60,000 under $75,000",12521110000.0,15in21id.xls,BZ23,78,BZ,23 +1900,2015_tab21_id_retax_amount_nz_all,2015,tab21,id_retax,amount,Real estate taxes,nz,filers,all,15,"$75,000 under $100,000",22612411000.0,15in21id.xls,BZ24,78,BZ,24 +1901,2015_tab21_id_retax_amount_nz_all,2015,tab21,id_retax,amount,Real estate taxes,nz,filers,all,16,"$100,000 under $200,000",63372425000.0,15in21id.xls,BZ25,78,BZ,25 +1902,2015_tab21_id_retax_amount_nz_all,2015,tab21,id_retax,amount,Real estate taxes,nz,filers,all,17,"$200,000 under $500,000",38337098000.0,15in21id.xls,BZ26,78,BZ,26 +1903,2015_tab21_id_retax_amount_nz_all,2015,tab21,id_retax,amount,Real estate taxes,nz,filers,all,18,"$500,000 under $1,000,000",10816724000.0,15in21id.xls,BZ27,78,BZ,27 +1904,2015_tab21_id_retax_amount_nz_all,2015,tab21,id_retax,amount,Real estate taxes,nz,filers,all,19,"$1,000,000 under $1,500,000",3286406000.0,15in21id.xls,BZ28,78,BZ,28 +1905,2015_tab21_id_retax_amount_nz_all,2015,tab21,id_retax,amount,Real estate taxes,nz,filers,all,20,"$1,500,000 under $2,000,000",1649775000.0,15in21id.xls,BZ29,78,BZ,29 +1906,2015_tab21_id_retax_amount_nz_all,2015,tab21,id_retax,amount,Real estate taxes,nz,filers,all,21,"$2,000,000 under $5,000,000",3177001000.0,15in21id.xls,BZ30,78,BZ,30 +1907,2015_tab21_id_retax_amount_nz_all,2015,tab21,id_retax,amount,Real estate taxes,nz,filers,all,22,"$5,000,000 under $10,000,000",1218981000.0,15in21id.xls,BZ31,78,BZ,31 +1908,2015_tab21_id_retax_amount_nz_all,2015,tab21,id_retax,amount,Real estate taxes,nz,filers,all,23,"$10,000,000 or more",1475443000.0,15in21id.xls,BZ32,78,BZ,32 +1909,2015_tab21_id_retax_count_nz_all,2015,tab21,id_retax,count,Real estate taxes — number of returns,nz,filers,all,1,"All returns, total",37613402.0,15in21id.xls,BY10,77,BY,10 +1910,2015_tab21_id_retax_count_nz_all,2015,tab21,id_retax,count,Real estate taxes — number of returns,nz,filers,all,2,"Under $5,000",218583.0,15in21id.xls,BY11,77,BY,11 +1911,2015_tab21_id_retax_count_nz_all,2015,tab21,id_retax,count,Real estate taxes — number of returns,nz,filers,all,3,"$5,000 under $10,000",280431.0,15in21id.xls,BY12,77,BY,12 +1912,2015_tab21_id_retax_count_nz_all,2015,tab21,id_retax,count,Real estate taxes — number of returns,nz,filers,all,4,"$10,000 under $15,000",472620.0,15in21id.xls,BY13,77,BY,13 +1913,2015_tab21_id_retax_count_nz_all,2015,tab21,id_retax,count,Real estate taxes — number of returns,nz,filers,all,5,"$15,000 under $20,000",557094.0,15in21id.xls,BY14,77,BY,14 +1914,2015_tab21_id_retax_count_nz_all,2015,tab21,id_retax,count,Real estate taxes — number of returns,nz,filers,all,6,"$20,000 under $25,000",616136.0,15in21id.xls,BY15,77,BY,15 +1915,2015_tab21_id_retax_count_nz_all,2015,tab21,id_retax,count,Real estate taxes — number of returns,nz,filers,all,7,"$25,000 under $30,000",689101.0,15in21id.xls,BY16,77,BY,16 +1916,2015_tab21_id_retax_count_nz_all,2015,tab21,id_retax,count,Real estate taxes — number of returns,nz,filers,all,8,"$30,000 under $35,000",810615.0,15in21id.xls,BY17,77,BY,17 +1917,2015_tab21_id_retax_count_nz_all,2015,tab21,id_retax,count,Real estate taxes — number of returns,nz,filers,all,9,"$35,000 under $40,000",974691.0,15in21id.xls,BY18,77,BY,18 +1918,2015_tab21_id_retax_count_nz_all,2015,tab21,id_retax,count,Real estate taxes — number of returns,nz,filers,all,10,"$40,000 under $45,000",1069338.0,15in21id.xls,BY19,77,BY,19 +1919,2015_tab21_id_retax_count_nz_all,2015,tab21,id_retax,count,Real estate taxes — number of returns,nz,filers,all,11,"$45,000 under $50,000",1168152.0,15in21id.xls,BY20,77,BY,20 +1920,2015_tab21_id_retax_count_nz_all,2015,tab21,id_retax,count,Real estate taxes — number of returns,nz,filers,all,12,"$50,000 under $55,000",1190018.0,15in21id.xls,BY21,77,BY,21 +1921,2015_tab21_id_retax_count_nz_all,2015,tab21,id_retax,count,Real estate taxes — number of returns,nz,filers,all,13,"$55,000 under $60,000",1265965.0,15in21id.xls,BY22,77,BY,22 +1922,2015_tab21_id_retax_count_nz_all,2015,tab21,id_retax,count,Real estate taxes — number of returns,nz,filers,all,14,"$60,000 under $75,000",3667656.0,15in21id.xls,BY23,77,BY,23 +1923,2015_tab21_id_retax_count_nz_all,2015,tab21,id_retax,count,Real estate taxes — number of returns,nz,filers,all,15,"$75,000 under $100,000",6008425.0,15in21id.xls,BY24,77,BY,24 +1924,2015_tab21_id_retax_count_nz_all,2015,tab21,id_retax,count,Real estate taxes — number of returns,nz,filers,all,16,"$100,000 under $200,000",12792762.0,15in21id.xls,BY25,77,BY,25 +1925,2015_tab21_id_retax_count_nz_all,2015,tab21,id_retax,count,Real estate taxes — number of returns,nz,filers,all,17,"$200,000 under $500,000",4680598.0,15in21id.xls,BY26,77,BY,26 +1926,2015_tab21_id_retax_count_nz_all,2015,tab21,id_retax,count,Real estate taxes — number of returns,nz,filers,all,18,"$500,000 under $1,000,000",773517.0,15in21id.xls,BY27,77,BY,27 +1927,2015_tab21_id_retax_count_nz_all,2015,tab21,id_retax,count,Real estate taxes — number of returns,nz,filers,all,19,"$1,000,000 under $1,500,000",166703.0,15in21id.xls,BY28,77,BY,28 +1928,2015_tab21_id_retax_count_nz_all,2015,tab21,id_retax,count,Real estate taxes — number of returns,nz,filers,all,20,"$1,500,000 under $2,000,000",67912.0,15in21id.xls,BY29,77,BY,29 +1929,2015_tab21_id_retax_count_nz_all,2015,tab21,id_retax,count,Real estate taxes — number of returns,nz,filers,all,21,"$2,000,000 under $5,000,000",100774.0,15in21id.xls,BY30,77,BY,30 +1930,2015_tab21_id_retax_count_nz_all,2015,tab21,id_retax,count,Real estate taxes — number of returns,nz,filers,all,22,"$5,000,000 under $10,000,000",25647.0,15in21id.xls,BY31,77,BY,31 +1931,2015_tab21_id_retax_count_nz_all,2015,tab21,id_retax,count,Real estate taxes — number of returns,nz,filers,all,23,"$10,000,000 or more",16663.0,15in21id.xls,BY32,77,BY,32 +1932,2015_tab21_id_salt_amount_nz_all,2015,tab21,id_salt,amount,State and local taxes (SALT),nz,filers,all,1,"All returns, total",352701327000.0,15in21id.xls,BT10,72,BT,10 +1933,2015_tab21_id_salt_amount_nz_all,2015,tab21,id_salt,amount,State and local taxes (SALT),nz,filers,all,2,"Under $5,000",334608000.0,15in21id.xls,BT11,72,BT,11 +1934,2015_tab21_id_salt_amount_nz_all,2015,tab21,id_salt,amount,State and local taxes (SALT),nz,filers,all,3,"$5,000 under $10,000",254813000.0,15in21id.xls,BT12,72,BT,12 +1935,2015_tab21_id_salt_amount_nz_all,2015,tab21,id_salt,amount,State and local taxes (SALT),nz,filers,all,4,"$10,000 under $15,000",484707000.0,15in21id.xls,BT13,72,BT,13 +1936,2015_tab21_id_salt_amount_nz_all,2015,tab21,id_salt,amount,State and local taxes (SALT),nz,filers,all,5,"$15,000 under $20,000",646722000.0,15in21id.xls,BT14,72,BT,14 +1937,2015_tab21_id_salt_amount_nz_all,2015,tab21,id_salt,amount,State and local taxes (SALT),nz,filers,all,6,"$20,000 under $25,000",862394000.0,15in21id.xls,BT15,72,BT,15 +1938,2015_tab21_id_salt_amount_nz_all,2015,tab21,id_salt,amount,State and local taxes (SALT),nz,filers,all,7,"$25,000 under $30,000",1167016000.0,15in21id.xls,BT16,72,BT,16 +1939,2015_tab21_id_salt_amount_nz_all,2015,tab21,id_salt,amount,State and local taxes (SALT),nz,filers,all,8,"$30,000 under $35,000",1444306000.0,15in21id.xls,BT17,72,BT,17 +1940,2015_tab21_id_salt_amount_nz_all,2015,tab21,id_salt,amount,State and local taxes (SALT),nz,filers,all,9,"$35,000 under $40,000",1951818000.0,15in21id.xls,BT18,72,BT,18 +1941,2015_tab21_id_salt_amount_nz_all,2015,tab21,id_salt,amount,State and local taxes (SALT),nz,filers,all,10,"$40,000 under $45,000",2475885000.0,15in21id.xls,BT19,72,BT,19 +1942,2015_tab21_id_salt_amount_nz_all,2015,tab21,id_salt,amount,State and local taxes (SALT),nz,filers,all,11,"$45,000 under $50,000",2773525000.0,15in21id.xls,BT20,72,BT,20 +1943,2015_tab21_id_salt_amount_nz_all,2015,tab21,id_salt,amount,State and local taxes (SALT),nz,filers,all,12,"$50,000 under $55,000",3222481000.0,15in21id.xls,BT21,72,BT,21 +1944,2015_tab21_id_salt_amount_nz_all,2015,tab21,id_salt,amount,State and local taxes (SALT),nz,filers,all,13,"$55,000 under $60,000",3569080000.0,15in21id.xls,BT22,72,BT,22 +1945,2015_tab21_id_salt_amount_nz_all,2015,tab21,id_salt,amount,State and local taxes (SALT),nz,filers,all,14,"$60,000 under $75,000",12039359000.0,15in21id.xls,BT23,72,BT,23 +1946,2015_tab21_id_salt_amount_nz_all,2015,tab21,id_salt,amount,State and local taxes (SALT),nz,filers,all,15,"$75,000 under $100,000",25702146000.0,15in21id.xls,BT24,72,BT,24 +1947,2015_tab21_id_salt_amount_nz_all,2015,tab21,id_salt,amount,State and local taxes (SALT),nz,filers,all,16,"$100,000 under $200,000",88169074000.0,15in21id.xls,BT25,72,BT,25 +1948,2015_tab21_id_salt_amount_nz_all,2015,tab21,id_salt,amount,State and local taxes (SALT),nz,filers,all,17,"$200,000 under $500,000",75495221000.0,15in21id.xls,BT26,72,BT,26 +1949,2015_tab21_id_salt_amount_nz_all,2015,tab21,id_salt,amount,State and local taxes (SALT),nz,filers,all,18,"$500,000 under $1,000,000",33498075000.0,15in21id.xls,BT27,72,BT,27 +1950,2015_tab21_id_salt_amount_nz_all,2015,tab21,id_salt,amount,State and local taxes (SALT),nz,filers,all,19,"$1,000,000 under $1,500,000",14501840000.0,15in21id.xls,BT28,72,BT,28 +1951,2015_tab21_id_salt_amount_nz_all,2015,tab21,id_salt,amount,State and local taxes (SALT),nz,filers,all,20,"$1,500,000 under $2,000,000",8760268000.0,15in21id.xls,BT29,72,BT,29 +1952,2015_tab21_id_salt_amount_nz_all,2015,tab21,id_salt,amount,State and local taxes (SALT),nz,filers,all,21,"$2,000,000 under $5,000,000",23381334000.0,15in21id.xls,BT30,72,BT,30 +1953,2015_tab21_id_salt_amount_nz_all,2015,tab21,id_salt,amount,State and local taxes (SALT),nz,filers,all,22,"$5,000,000 under $10,000,000",13555298000.0,15in21id.xls,BT31,72,BT,31 +1954,2015_tab21_id_salt_amount_nz_all,2015,tab21,id_salt,amount,State and local taxes (SALT),nz,filers,all,23,"$10,000,000 or more",38411360000.0,15in21id.xls,BT32,72,BT,32 +1955,2015_tab21_id_salt_count_nz_all,2015,tab21,id_salt,count,State and local taxes (SALT) — number of returns,nz,filers,all,1,"All returns, total",42690831.0,15in21id.xls,BS10,71,BS,10 +1956,2015_tab21_id_salt_count_nz_all,2015,tab21,id_salt,count,State and local taxes (SALT) — number of returns,nz,filers,all,2,"Under $5,000",246102.0,15in21id.xls,BS11,71,BS,11 +1957,2015_tab21_id_salt_count_nz_all,2015,tab21,id_salt,count,State and local taxes (SALT) — number of returns,nz,filers,all,3,"$5,000 under $10,000",320279.0,15in21id.xls,BS12,71,BS,12 +1958,2015_tab21_id_salt_count_nz_all,2015,tab21,id_salt,count,State and local taxes (SALT) — number of returns,nz,filers,all,4,"$10,000 under $15,000",558434.0,15in21id.xls,BS13,71,BS,13 +1959,2015_tab21_id_salt_count_nz_all,2015,tab21,id_salt,count,State and local taxes (SALT) — number of returns,nz,filers,all,5,"$15,000 under $20,000",713832.0,15in21id.xls,BS14,71,BS,14 +1960,2015_tab21_id_salt_count_nz_all,2015,tab21,id_salt,count,State and local taxes (SALT) — number of returns,nz,filers,all,6,"$20,000 under $25,000",843241.0,15in21id.xls,BS15,71,BS,15 +1961,2015_tab21_id_salt_count_nz_all,2015,tab21,id_salt,count,State and local taxes (SALT) — number of returns,nz,filers,all,7,"$25,000 under $30,000",985616.0,15in21id.xls,BS16,71,BS,16 +1962,2015_tab21_id_salt_count_nz_all,2015,tab21,id_salt,count,State and local taxes (SALT) — number of returns,nz,filers,all,8,"$30,000 under $35,000",1102890.0,15in21id.xls,BS17,71,BS,17 +1963,2015_tab21_id_salt_count_nz_all,2015,tab21,id_salt,count,State and local taxes (SALT) — number of returns,nz,filers,all,9,"$35,000 under $40,000",1272689.0,15in21id.xls,BS18,71,BS,18 +1964,2015_tab21_id_salt_count_nz_all,2015,tab21,id_salt,count,State and local taxes (SALT) — number of returns,nz,filers,all,10,"$40,000 under $45,000",1367500.0,15in21id.xls,BS19,71,BS,19 +1965,2015_tab21_id_salt_count_nz_all,2015,tab21,id_salt,count,State and local taxes (SALT) — number of returns,nz,filers,all,11,"$45,000 under $50,000",1441232.0,15in21id.xls,BS20,71,BS,20 +1966,2015_tab21_id_salt_count_nz_all,2015,tab21,id_salt,count,State and local taxes (SALT) — number of returns,nz,filers,all,12,"$50,000 under $55,000",1458211.0,15in21id.xls,BS21,71,BS,21 +1967,2015_tab21_id_salt_count_nz_all,2015,tab21,id_salt,count,State and local taxes (SALT) — number of returns,nz,filers,all,13,"$55,000 under $60,000",1487190.0,15in21id.xls,BS22,71,BS,22 +1968,2015_tab21_id_salt_count_nz_all,2015,tab21,id_salt,count,State and local taxes (SALT) — number of returns,nz,filers,all,14,"$60,000 under $75,000",4246802.0,15in21id.xls,BS23,71,BS,23 +1969,2015_tab21_id_salt_count_nz_all,2015,tab21,id_salt,count,State and local taxes (SALT) — number of returns,nz,filers,all,15,"$75,000 under $100,000",6750154.0,15in21id.xls,BS24,71,BS,24 +1970,2015_tab21_id_salt_count_nz_all,2015,tab21,id_salt,count,State and local taxes (SALT) — number of returns,nz,filers,all,16,"$100,000 under $200,000",13687177.0,15in21id.xls,BS25,71,BS,25 +1971,2015_tab21_id_salt_count_nz_all,2015,tab21,id_salt,count,State and local taxes (SALT) — number of returns,nz,filers,all,17,"$200,000 under $500,000",4996108.0,15in21id.xls,BS26,71,BS,26 +1972,2015_tab21_id_salt_count_nz_all,2015,tab21,id_salt,count,State and local taxes (SALT) — number of returns,nz,filers,all,18,"$500,000 under $1,000,000",815393.0,15in21id.xls,BS27,71,BS,27 +1973,2015_tab21_id_salt_count_nz_all,2015,tab21,id_salt,count,State and local taxes (SALT) — number of returns,nz,filers,all,19,"$1,000,000 under $1,500,000",176304.0,15in21id.xls,BS28,71,BS,28 +1974,2015_tab21_id_salt_count_nz_all,2015,tab21,id_salt,count,State and local taxes (SALT) — number of returns,nz,filers,all,20,"$1,500,000 under $2,000,000",71240.0,15in21id.xls,BS29,71,BS,29 +1975,2015_tab21_id_salt_count_nz_all,2015,tab21,id_salt,count,State and local taxes (SALT) — number of returns,nz,filers,all,21,"$2,000,000 under $5,000,000",106105.0,15in21id.xls,BS30,71,BS,30 +1976,2015_tab21_id_salt_count_nz_all,2015,tab21,id_salt,count,State and local taxes (SALT) — number of returns,nz,filers,all,22,"$5,000,000 under $10,000,000",26956.0,15in21id.xls,BS31,71,BS,31 +1977,2015_tab21_id_salt_count_nz_all,2015,tab21,id_salt,count,State and local taxes (SALT) — number of returns,nz,filers,all,23,"$10,000,000 or more",17376.0,15in21id.xls,BS32,71,BS,32 +1978,2015_tab21_id_taxpaid_amount_nz_all,2015,tab21,id_taxpaid,amount,Taxes paid deduction,nz,filers,all,1,"All returns, total",553015621000.0,15in21id.xls,BR10,70,BR,10 +1979,2015_tab21_id_taxpaid_amount_nz_all,2015,tab21,id_taxpaid,amount,Taxes paid deduction,nz,filers,all,2,"Under $5,000",1202092000.0,15in21id.xls,BR11,70,BR,11 +1980,2015_tab21_id_taxpaid_amount_nz_all,2015,tab21,id_taxpaid,amount,Taxes paid deduction,nz,filers,all,3,"$5,000 under $10,000",1341118000.0,15in21id.xls,BR12,70,BR,12 +1981,2015_tab21_id_taxpaid_amount_nz_all,2015,tab21,id_taxpaid,amount,Taxes paid deduction,nz,filers,all,4,"$10,000 under $15,000",2181494000.0,15in21id.xls,BR13,70,BR,13 +1982,2015_tab21_id_taxpaid_amount_nz_all,2015,tab21,id_taxpaid,amount,Taxes paid deduction,nz,filers,all,5,"$15,000 under $20,000",2687159000.0,15in21id.xls,BR14,70,BR,14 +1983,2015_tab21_id_taxpaid_amount_nz_all,2015,tab21,id_taxpaid,amount,Taxes paid deduction,nz,filers,all,6,"$20,000 under $25,000",3074264000.0,15in21id.xls,BR15,70,BR,15 +1984,2015_tab21_id_taxpaid_amount_nz_all,2015,tab21,id_taxpaid,amount,Taxes paid deduction,nz,filers,all,7,"$25,000 under $30,000",3612496000.0,15in21id.xls,BR16,70,BR,16 +1985,2015_tab21_id_taxpaid_amount_nz_all,2015,tab21,id_taxpaid,amount,Taxes paid deduction,nz,filers,all,8,"$30,000 under $35,000",4280465000.0,15in21id.xls,BR17,70,BR,17 +1986,2015_tab21_id_taxpaid_amount_nz_all,2015,tab21,id_taxpaid,amount,Taxes paid deduction,nz,filers,all,9,"$35,000 under $40,000",5378442000.0,15in21id.xls,BR18,70,BR,18 +1987,2015_tab21_id_taxpaid_amount_nz_all,2015,tab21,id_taxpaid,amount,Taxes paid deduction,nz,filers,all,10,"$40,000 under $45,000",6020858000.0,15in21id.xls,BR19,70,BR,19 +1988,2015_tab21_id_taxpaid_amount_nz_all,2015,tab21,id_taxpaid,amount,Taxes paid deduction,nz,filers,all,11,"$45,000 under $50,000",6570716000.0,15in21id.xls,BR20,70,BR,20 +1989,2015_tab21_id_taxpaid_amount_nz_all,2015,tab21,id_taxpaid,amount,Taxes paid deduction,nz,filers,all,12,"$50,000 under $55,000",7333689000.0,15in21id.xls,BR21,70,BR,21 +1990,2015_tab21_id_taxpaid_amount_nz_all,2015,tab21,id_taxpaid,amount,Taxes paid deduction,nz,filers,all,13,"$55,000 under $60,000",8121461000.0,15in21id.xls,BR22,70,BR,22 +1991,2015_tab21_id_taxpaid_amount_nz_all,2015,tab21,id_taxpaid,amount,Taxes paid deduction,nz,filers,all,14,"$60,000 under $75,000",25543705000.0,15in21id.xls,BR23,70,BR,23 +1992,2015_tab21_id_taxpaid_amount_nz_all,2015,tab21,id_taxpaid,amount,Taxes paid deduction,nz,filers,all,15,"$75,000 under $100,000",49969183000.0,15in21id.xls,BR24,70,BR,24 +1993,2015_tab21_id_taxpaid_amount_nz_all,2015,tab21,id_taxpaid,amount,Taxes paid deduction,nz,filers,all,16,"$100,000 under $200,000",155473408000.0,15in21id.xls,BR25,70,BR,25 +1994,2015_tab21_id_taxpaid_amount_nz_all,2015,tab21,id_taxpaid,amount,Taxes paid deduction,nz,filers,all,17,"$200,000 under $500,000",115531174000.0,15in21id.xls,BR26,70,BR,26 +1995,2015_tab21_id_taxpaid_amount_nz_all,2015,tab21,id_taxpaid,amount,Taxes paid deduction,nz,filers,all,18,"$500,000 under $1,000,000",44741560000.0,15in21id.xls,BR27,70,BR,27 +1996,2015_tab21_id_taxpaid_amount_nz_all,2015,tab21,id_taxpaid,amount,Taxes paid deduction,nz,filers,all,19,"$1,000,000 under $1,500,000",17925210000.0,15in21id.xls,BR28,70,BR,28 +1997,2015_tab21_id_taxpaid_amount_nz_all,2015,tab21,id_taxpaid,amount,Taxes paid deduction,nz,filers,all,20,"$1,500,000 under $2,000,000",10477365000.0,15in21id.xls,BR29,70,BR,29 +1998,2015_tab21_id_taxpaid_amount_nz_all,2015,tab21,id_taxpaid,amount,Taxes paid deduction,nz,filers,all,21,"$2,000,000 under $5,000,000",26710615000.0,15in21id.xls,BR30,70,BR,30 +1999,2015_tab21_id_taxpaid_amount_nz_all,2015,tab21,id_taxpaid,amount,Taxes paid deduction,nz,filers,all,22,"$5,000,000 under $10,000,000",14830289000.0,15in21id.xls,BR31,70,BR,31 +2000,2015_tab21_id_taxpaid_amount_nz_all,2015,tab21,id_taxpaid,amount,Taxes paid deduction,nz,filers,all,23,"$10,000,000 or more",40008857000.0,15in21id.xls,BR32,70,BR,32 +2001,2015_tab21_id_taxpaid_count_nz_all,2015,tab21,id_taxpaid,count,Taxes paid deduction — number of returns,nz,filers,all,1,"All returns, total",44191436.0,15in21id.xls,BQ10,69,BQ,10 +2002,2015_tab21_id_taxpaid_count_nz_all,2015,tab21,id_taxpaid,count,Taxes paid deduction — number of returns,nz,filers,all,2,"Under $5,000",297983.0,15in21id.xls,BQ11,69,BQ,11 +2003,2015_tab21_id_taxpaid_count_nz_all,2015,tab21,id_taxpaid,count,Taxes paid deduction — number of returns,nz,filers,all,3,"$5,000 under $10,000",366055.0,15in21id.xls,BQ12,69,BQ,12 +2004,2015_tab21_id_taxpaid_count_nz_all,2015,tab21,id_taxpaid,count,Taxes paid deduction — number of returns,nz,filers,all,4,"$10,000 under $15,000",627733.0,15in21id.xls,BQ13,69,BQ,13 +2005,2015_tab21_id_taxpaid_count_nz_all,2015,tab21,id_taxpaid,count,Taxes paid deduction — number of returns,nz,filers,all,5,"$15,000 under $20,000",774558.0,15in21id.xls,BQ14,69,BQ,14 +2006,2015_tab21_id_taxpaid_count_nz_all,2015,tab21,id_taxpaid,count,Taxes paid deduction — number of returns,nz,filers,all,6,"$20,000 under $25,000",909333.0,15in21id.xls,BQ15,69,BQ,15 +2007,2015_tab21_id_taxpaid_count_nz_all,2015,tab21,id_taxpaid,count,Taxes paid deduction — number of returns,nz,filers,all,7,"$25,000 under $30,000",1055485.0,15in21id.xls,BQ16,69,BQ,16 +2008,2015_tab21_id_taxpaid_count_nz_all,2015,tab21,id_taxpaid,count,Taxes paid deduction — number of returns,nz,filers,all,8,"$30,000 under $35,000",1172960.0,15in21id.xls,BQ17,69,BQ,17 +2009,2015_tab21_id_taxpaid_count_nz_all,2015,tab21,id_taxpaid,count,Taxes paid deduction — number of returns,nz,filers,all,9,"$35,000 under $40,000",1348557.0,15in21id.xls,BQ18,69,BQ,18 +2010,2015_tab21_id_taxpaid_count_nz_all,2015,tab21,id_taxpaid,count,Taxes paid deduction — number of returns,nz,filers,all,10,"$40,000 under $45,000",1433569.0,15in21id.xls,BQ19,69,BQ,19 +2011,2015_tab21_id_taxpaid_count_nz_all,2015,tab21,id_taxpaid,count,Taxes paid deduction — number of returns,nz,filers,all,11,"$45,000 under $50,000",1508367.0,15in21id.xls,BQ20,69,BQ,20 +2012,2015_tab21_id_taxpaid_count_nz_all,2015,tab21,id_taxpaid,count,Taxes paid deduction — number of returns,nz,filers,all,12,"$50,000 under $55,000",1513839.0,15in21id.xls,BQ21,69,BQ,21 +2013,2015_tab21_id_taxpaid_count_nz_all,2015,tab21,id_taxpaid,count,Taxes paid deduction — number of returns,nz,filers,all,13,"$55,000 under $60,000",1531024.0,15in21id.xls,BQ22,69,BQ,22 +2014,2015_tab21_id_taxpaid_count_nz_all,2015,tab21,id_taxpaid,count,Taxes paid deduction — number of returns,nz,filers,all,14,"$60,000 under $75,000",4408450.0,15in21id.xls,BQ23,69,BQ,23 +2015,2015_tab21_id_taxpaid_count_nz_all,2015,tab21,id_taxpaid,count,Taxes paid deduction — number of returns,nz,filers,all,15,"$75,000 under $100,000",6930059.0,15in21id.xls,BQ24,69,BQ,24 +2016,2015_tab21_id_taxpaid_count_nz_all,2015,tab21,id_taxpaid,count,Taxes paid deduction — number of returns,nz,filers,all,16,"$100,000 under $200,000",14013820.0,15in21id.xls,BQ25,69,BQ,25 +2017,2015_tab21_id_taxpaid_count_nz_all,2015,tab21,id_taxpaid,count,Taxes paid deduction — number of returns,nz,filers,all,17,"$200,000 under $500,000",5078493.0,15in21id.xls,BQ26,69,BQ,26 +2018,2015_tab21_id_taxpaid_count_nz_all,2015,tab21,id_taxpaid,count,Taxes paid deduction — number of returns,nz,filers,all,18,"$500,000 under $1,000,000",821083.0,15in21id.xls,BQ27,69,BQ,27 +2019,2015_tab21_id_taxpaid_count_nz_all,2015,tab21,id_taxpaid,count,Taxes paid deduction — number of returns,nz,filers,all,19,"$1,000,000 under $1,500,000",177352.0,15in21id.xls,BQ28,69,BQ,28 +2020,2015_tab21_id_taxpaid_count_nz_all,2015,tab21,id_taxpaid,count,Taxes paid deduction — number of returns,nz,filers,all,20,"$1,500,000 under $2,000,000",71618.0,15in21id.xls,BQ29,69,BQ,29 +2021,2015_tab21_id_taxpaid_count_nz_all,2015,tab21,id_taxpaid,count,Taxes paid deduction — number of returns,nz,filers,all,21,"$2,000,000 under $5,000,000",106564.0,15in21id.xls,BQ30,69,BQ,30 +2022,2015_tab21_id_taxpaid_count_nz_all,2015,tab21,id_taxpaid,count,Taxes paid deduction — number of returns,nz,filers,all,22,"$5,000,000 under $10,000,000",27086.0,15in21id.xls,BQ31,69,BQ,31 +2023,2015_tab21_id_taxpaid_count_nz_all,2015,tab21,id_taxpaid,count,Taxes paid deduction — number of returns,nz,filers,all,23,"$10,000,000 or more",17449.0,15in21id.xls,BQ32,69,BQ,32 +2024,2021_tab11_agi_amount_all_all,2021,tab11,agi,amount,Adjusted gross income,all,filers,all,1,All returns,14795614070000.0,21in11si.xls,D10,4,D,10 +2025,2021_tab11_agi_amount_all_all,2021,tab11,agi,amount,Adjusted gross income,all,filers,all,2,No adjusted gross income,-171836364000.0,21in11si.xls,D11,4,D,11 +2026,2021_tab11_agi_amount_all_all,2021,tab11,agi,amount,Adjusted gross income,all,filers,all,3,"$1 under $5,000",19987243000.0,21in11si.xls,D12,4,D,12 +2027,2021_tab11_agi_amount_all_all,2021,tab11,agi,amount,Adjusted gross income,all,filers,all,4,"$5,000 under $10,000",67651359000.0,21in11si.xls,D13,4,D,13 +2028,2021_tab11_agi_amount_all_all,2021,tab11,agi,amount,Adjusted gross income,all,filers,all,5,"$10,000 under $15,000",125912056000.0,21in11si.xls,D14,4,D,14 +2029,2021_tab11_agi_amount_all_all,2021,tab11,agi,amount,Adjusted gross income,all,filers,all,6,"$15,000 under $20,000",170836129000.0,21in11si.xls,D15,4,D,15 +2030,2021_tab11_agi_amount_all_all,2021,tab11,agi,amount,Adjusted gross income,all,filers,all,7,"$20,000 under $25,000",199508960000.0,21in11si.xls,D16,4,D,16 +2031,2021_tab11_agi_amount_all_all,2021,tab11,agi,amount,Adjusted gross income,all,filers,all,8,"$25,000 under $30,000",241347179000.0,21in11si.xls,D17,4,D,17 +2032,2021_tab11_agi_amount_all_all,2021,tab11,agi,amount,Adjusted gross income,all,filers,all,9,"$30,000 under $40,000",561386434000.0,21in11si.xls,D18,4,D,18 +2033,2021_tab11_agi_amount_all_all,2021,tab11,agi,amount,Adjusted gross income,all,filers,all,10,"$40,000 under $50,000",573155378000.0,21in11si.xls,D19,4,D,19 +2034,2021_tab11_agi_amount_all_all,2021,tab11,agi,amount,Adjusted gross income,all,filers,all,11,"$50,000 under $75,000",1392395599000.0,21in11si.xls,D20,4,D,20 +2035,2021_tab11_agi_amount_all_all,2021,tab11,agi,amount,Adjusted gross income,all,filers,all,12,"$75,000 under $100,000",1271699391000.0,21in11si.xls,D21,4,D,21 +2036,2021_tab11_agi_amount_all_all,2021,tab11,agi,amount,Adjusted gross income,all,filers,all,13,"$100,000 under $200,000",3297058075000.0,21in11si.xls,D22,4,D,22 +2037,2021_tab11_agi_amount_all_all,2021,tab11,agi,amount,Adjusted gross income,all,filers,all,14,"$200,000 under $500,000",2619188471000.0,21in11si.xls,D23,4,D,23 +2038,2021_tab11_agi_amount_all_all,2021,tab11,agi,amount,Adjusted gross income,all,filers,all,15,"$500,000 under $1,000,000",1092599034000.0,21in11si.xls,D24,4,D,24 +2039,2021_tab11_agi_amount_all_all,2021,tab11,agi,amount,Adjusted gross income,all,filers,all,16,"$1,000,000 under $1,500,000",454552875000.0,21in11si.xls,D25,4,D,25 +2040,2021_tab11_agi_amount_all_all,2021,tab11,agi,amount,Adjusted gross income,all,filers,all,17,"$1,500,000 under $2,000,000",268278123000.0,21in11si.xls,D26,4,D,26 +2041,2021_tab11_agi_amount_all_all,2021,tab11,agi,amount,Adjusted gross income,all,filers,all,18,"$2,000,000 under $5,000,000",698923219000.0,21in11si.xls,D27,4,D,27 +2042,2021_tab11_agi_amount_all_all,2021,tab11,agi,amount,Adjusted gross income,all,filers,all,19,"$5,000,000 under $10,000,000",435242550000.0,21in11si.xls,D28,4,D,28 +2043,2021_tab11_agi_amount_all_all,2021,tab11,agi,amount,Adjusted gross income,all,filers,all,20,"$10,000,000 or more",1477728359000.0,21in11si.xls,D29,4,D,29 +2044,2021_tab11_agi_count_all_all,2021,tab11,agi,count,Number of returns,all,filers,all,1,All returns,160824340.0,21in11si.xls,B10,2,B,10 +2045,2021_tab11_agi_count_all_all,2021,tab11,agi,count,Number of returns,all,filers,all,2,No adjusted gross income,4098522.0,21in11si.xls,B11,2,B,11 +2046,2021_tab11_agi_count_all_all,2021,tab11,agi,count,Number of returns,all,filers,all,3,"$1 under $5,000",8487025.0,21in11si.xls,B12,2,B,12 +2047,2021_tab11_agi_count_all_all,2021,tab11,agi,count,Number of returns,all,filers,all,4,"$5,000 under $10,000",8944908.0,21in11si.xls,B13,2,B,13 +2048,2021_tab11_agi_count_all_all,2021,tab11,agi,count,Number of returns,all,filers,all,5,"$10,000 under $15,000",10056377.0,21in11si.xls,B14,2,B,14 +2049,2021_tab11_agi_count_all_all,2021,tab11,agi,count,Number of returns,all,filers,all,6,"$15,000 under $20,000",9786580.0,21in11si.xls,B15,2,B,15 +2050,2021_tab11_agi_count_all_all,2021,tab11,agi,count,Number of returns,all,filers,all,7,"$20,000 under $25,000",8863570.0,21in11si.xls,B16,2,B,16 +2051,2021_tab11_agi_count_all_all,2021,tab11,agi,count,Number of returns,all,filers,all,8,"$25,000 under $30,000",8787576.0,21in11si.xls,B17,2,B,17 +2052,2021_tab11_agi_count_all_all,2021,tab11,agi,count,Number of returns,all,filers,all,9,"$30,000 under $40,000",16123068.0,21in11si.xls,B18,2,B,18 +2053,2021_tab11_agi_count_all_all,2021,tab11,agi,count,Number of returns,all,filers,all,10,"$40,000 under $50,000",12782334.0,21in11si.xls,B19,2,B,19 +2054,2021_tab11_agi_count_all_all,2021,tab11,agi,count,Number of returns,all,filers,all,11,"$50,000 under $75,000",22653934.0,21in11si.xls,B20,2,B,20 +2055,2021_tab11_agi_count_all_all,2021,tab11,agi,count,Number of returns,all,filers,all,12,"$75,000 under $100,000",14657726.0,21in11si.xls,B21,2,B,21 +2056,2021_tab11_agi_count_all_all,2021,tab11,agi,count,Number of returns,all,filers,all,13,"$100,000 under $200,000",24044481.0,21in11si.xls,B22,2,B,22 +2057,2021_tab11_agi_count_all_all,2021,tab11,agi,count,Number of returns,all,filers,all,14,"$200,000 under $500,000",9045567.0,21in11si.xls,B23,2,B,23 +2058,2021_tab11_agi_count_all_all,2021,tab11,agi,count,Number of returns,all,filers,all,15,"$500,000 under $1,000,000",1617144.0,21in11si.xls,B24,2,B,24 +2059,2021_tab11_agi_count_all_all,2021,tab11,agi,count,Number of returns,all,filers,all,16,"$1,000,000 under $1,500,000",376859.0,21in11si.xls,B25,2,B,25 +2060,2021_tab11_agi_count_all_all,2021,tab11,agi,count,Number of returns,all,filers,all,17,"$1,500,000 under $2,000,000",156020.0,21in11si.xls,B26,2,B,26 +2061,2021_tab11_agi_count_all_all,2021,tab11,agi,count,Number of returns,all,filers,all,18,"$2,000,000 under $5,000,000",233838.0,21in11si.xls,B27,2,B,27 +2062,2021_tab11_agi_count_all_all,2021,tab11,agi,count,Number of returns,all,filers,all,19,"$5,000,000 under $10,000,000",63406.0,21in11si.xls,B28,2,B,28 +2063,2021_tab11_agi_count_all_all,2021,tab11,agi,count,Number of returns,all,filers,all,20,"$10,000,000 or more",45404.0,21in11si.xls,B29,2,B,29 +2064,2021_tab12_agi_amount_all_all,2021,tab12,agi,amount,Adjusted gross income,all,filers,all,1,"All returns, total",14795614070000.0,21in12ms.xls,C9,3,C,9 +2065,2021_tab12_agi_amount_all_all,2021,tab12,agi,amount,Adjusted gross income,all,filers,all,2,No adjusted gross income (includes deficits),-171836364000.0,21in12ms.xls,C10,3,C,10 +2066,2021_tab12_agi_amount_all_all,2021,tab12,agi,amount,Adjusted gross income,all,filers,all,3,"$1 under $5,000",19987243000.0,21in12ms.xls,C11,3,C,11 +2067,2021_tab12_agi_amount_all_all,2021,tab12,agi,amount,Adjusted gross income,all,filers,all,4,"$5,000 under $10,000",67651359000.0,21in12ms.xls,C12,3,C,12 +2068,2021_tab12_agi_amount_all_all,2021,tab12,agi,amount,Adjusted gross income,all,filers,all,5,"$10,000 under $15,000",125912056000.0,21in12ms.xls,C13,3,C,13 +2069,2021_tab12_agi_amount_all_all,2021,tab12,agi,amount,Adjusted gross income,all,filers,all,6,"$15,000 under $20,000",170836129000.0,21in12ms.xls,C14,3,C,14 +2070,2021_tab12_agi_amount_all_all,2021,tab12,agi,amount,Adjusted gross income,all,filers,all,7,"$20,000 under $25,000",199508960000.0,21in12ms.xls,C15,3,C,15 +2071,2021_tab12_agi_amount_all_all,2021,tab12,agi,amount,Adjusted gross income,all,filers,all,8,"$25,000 under $30,000",241347179000.0,21in12ms.xls,C16,3,C,16 +2072,2021_tab12_agi_amount_all_all,2021,tab12,agi,amount,Adjusted gross income,all,filers,all,9,"$30,000 under $40,000",561386434000.0,21in12ms.xls,C17,3,C,17 +2073,2021_tab12_agi_amount_all_all,2021,tab12,agi,amount,Adjusted gross income,all,filers,all,10,"$40,000 under $50,000",573155378000.0,21in12ms.xls,C18,3,C,18 +2074,2021_tab12_agi_amount_all_all,2021,tab12,agi,amount,Adjusted gross income,all,filers,all,11,"$50,000 under $75,000",1392395599000.0,21in12ms.xls,C19,3,C,19 +2075,2021_tab12_agi_amount_all_all,2021,tab12,agi,amount,Adjusted gross income,all,filers,all,12,"$75,000 under $100,000",1271699391000.0,21in12ms.xls,C20,3,C,20 +2076,2021_tab12_agi_amount_all_all,2021,tab12,agi,amount,Adjusted gross income,all,filers,all,13,"$100,000 under $200,000",3297058075000.0,21in12ms.xls,C21,3,C,21 +2077,2021_tab12_agi_amount_all_all,2021,tab12,agi,amount,Adjusted gross income,all,filers,all,14,"$200,000 under $500,000",2619188471000.0,21in12ms.xls,C22,3,C,22 +2078,2021_tab12_agi_amount_all_all,2021,tab12,agi,amount,Adjusted gross income,all,filers,all,15,"$500,000 under $1,000,000",1092599034000.0,21in12ms.xls,C23,3,C,23 +2079,2021_tab12_agi_amount_all_all,2021,tab12,agi,amount,Adjusted gross income,all,filers,all,16,"$1,000,000 under $1,500,000",454552875000.0,21in12ms.xls,C24,3,C,24 +2080,2021_tab12_agi_amount_all_all,2021,tab12,agi,amount,Adjusted gross income,all,filers,all,17,"$1,500,000 under $2,000,000",268278123000.0,21in12ms.xls,C25,3,C,25 +2081,2021_tab12_agi_amount_all_all,2021,tab12,agi,amount,Adjusted gross income,all,filers,all,18,"$2,000,000 under $5,000,000",698923219000.0,21in12ms.xls,C26,3,C,26 +2082,2021_tab12_agi_amount_all_all,2021,tab12,agi,amount,Adjusted gross income,all,filers,all,19,"$5,000,000 under $10,000,000",435242550000.0,21in12ms.xls,C27,3,C,27 +2083,2021_tab12_agi_amount_all_all,2021,tab12,agi,amount,Adjusted gross income,all,filers,all,20,"$10,000,000 or more",1477728359000.0,21in12ms.xls,C28,3,C,28 +2084,2021_tab12_agi_amount_all_hoh,2021,tab12,agi,amount,Adjusted gross income — head of household,all,filers,hoh,1,"All returns, total",1037010822000.0,21in12ms.xls,AM9,39,AM,9 +2085,2021_tab12_agi_amount_all_hoh,2021,tab12,agi,amount,Adjusted gross income — head of household,all,filers,hoh,2,No adjusted gross income (includes deficits),-5663364000.0,21in12ms.xls,AM10,39,AM,10 +2086,2021_tab12_agi_amount_all_hoh,2021,tab12,agi,amount,Adjusted gross income — head of household,all,filers,hoh,3,"$1 under $5,000",1500478000.0,21in12ms.xls,AM11,39,AM,11 +2087,2021_tab12_agi_amount_all_hoh,2021,tab12,agi,amount,Adjusted gross income — head of household,all,filers,hoh,4,"$5,000 under $10,000",7050139000.0,21in12ms.xls,AM12,39,AM,12 +2088,2021_tab12_agi_amount_all_hoh,2021,tab12,agi,amount,Adjusted gross income — head of household,all,filers,hoh,5,"$10,000 under $15,000",20151818000.0,21in12ms.xls,AM13,39,AM,13 +2089,2021_tab12_agi_amount_all_hoh,2021,tab12,agi,amount,Adjusted gross income — head of household,all,filers,hoh,6,"$15,000 under $20,000",33387804000.0,21in12ms.xls,AM14,39,AM,14 +2090,2021_tab12_agi_amount_all_hoh,2021,tab12,agi,amount,Adjusted gross income — head of household,all,filers,hoh,7,"$20,000 under $25,000",42143232000.0,21in12ms.xls,AM15,39,AM,15 +2091,2021_tab12_agi_amount_all_hoh,2021,tab12,agi,amount,Adjusted gross income — head of household,all,filers,hoh,8,"$25,000 under $30,000",53516222000.0,21in12ms.xls,AM16,39,AM,16 +2092,2021_tab12_agi_amount_all_hoh,2021,tab12,agi,amount,Adjusted gross income — head of household,all,filers,hoh,9,"$30,000 under $40,000",123133503000.0,21in12ms.xls,AM17,39,AM,17 +2093,2021_tab12_agi_amount_all_hoh,2021,tab12,agi,amount,Adjusted gross income — head of household,all,filers,hoh,10,"$40,000 under $50,000",99654083000.0,21in12ms.xls,AM18,39,AM,18 +2094,2021_tab12_agi_amount_all_hoh,2021,tab12,agi,amount,Adjusted gross income — head of household,all,filers,hoh,11,"$50,000 under $75,000",190923665000.0,21in12ms.xls,AM19,39,AM,19 +2095,2021_tab12_agi_amount_all_hoh,2021,tab12,agi,amount,Adjusted gross income — head of household,all,filers,hoh,12,"$75,000 under $100,000",121571248000.0,21in12ms.xls,AM20,39,AM,20 +2096,2021_tab12_agi_amount_all_hoh,2021,tab12,agi,amount,Adjusted gross income — head of household,all,filers,hoh,13,"$100,000 under $200,000",169608771000.0,21in12ms.xls,AM21,39,AM,21 +2097,2021_tab12_agi_amount_all_hoh,2021,tab12,agi,amount,Adjusted gross income — head of household,all,filers,hoh,14,"$200,000 under $500,000",73740677000.0,21in12ms.xls,AM22,39,AM,22 +2098,2021_tab12_agi_amount_all_hoh,2021,tab12,agi,amount,Adjusted gross income — head of household,all,filers,hoh,15,"$500,000 under $1,000,000",27867019000.0,21in12ms.xls,AM23,39,AM,23 +2099,2021_tab12_agi_amount_all_hoh,2021,tab12,agi,amount,Adjusted gross income — head of household,all,filers,hoh,16,"$1,000,000 under $1,500,000",10735679000.0,21in12ms.xls,AM24,39,AM,24 +2100,2021_tab12_agi_amount_all_hoh,2021,tab12,agi,amount,Adjusted gross income — head of household,all,filers,hoh,17,"$1,500,000 under $2,000,000",6312826000.0,21in12ms.xls,AM25,39,AM,25 +2101,2021_tab12_agi_amount_all_hoh,2021,tab12,agi,amount,Adjusted gross income — head of household,all,filers,hoh,18,"$2,000,000 under $5,000,000",16591282000.0,21in12ms.xls,AM26,39,AM,26 +2102,2021_tab12_agi_amount_all_hoh,2021,tab12,agi,amount,Adjusted gross income — head of household,all,filers,hoh,19,"$5,000,000 under $10,000,000",10364542000.0,21in12ms.xls,AM27,39,AM,27 +2103,2021_tab12_agi_amount_all_hoh,2021,tab12,agi,amount,Adjusted gross income — head of household,all,filers,hoh,20,"$10,000,000 or more",34421197000.0,21in12ms.xls,AM28,39,AM,28 +2104,2021_tab12_agi_amount_all_mfjss,2021,tab12,agi,amount,Adjusted gross income — married filing jointly/SS,all,filers,mfjss,1,"All returns, total",9496757833000.0,21in12ms.xls,O9,15,O,9 +2105,2021_tab12_agi_amount_all_mfjss,2021,tab12,agi,amount,Adjusted gross income — married filing jointly/SS,all,filers,mfjss,2,No adjusted gross income (includes deficits),-104261187000.0,21in12ms.xls,O10,15,O,10 +2106,2021_tab12_agi_amount_all_mfjss,2021,tab12,agi,amount,Adjusted gross income — married filing jointly/SS,all,filers,mfjss,3,"$1 under $5,000",1572736000.0,21in12ms.xls,O11,15,O,11 +2107,2021_tab12_agi_amount_all_mfjss,2021,tab12,agi,amount,Adjusted gross income — married filing jointly/SS,all,filers,mfjss,4,"$5,000 under $10,000",5618512000.0,21in12ms.xls,O12,15,O,12 +2108,2021_tab12_agi_amount_all_mfjss,2021,tab12,agi,amount,Adjusted gross income — married filing jointly/SS,all,filers,mfjss,5,"$10,000 under $15,000",12030518000.0,21in12ms.xls,O13,15,O,13 +2109,2021_tab12_agi_amount_all_mfjss,2021,tab12,agi,amount,Adjusted gross income — married filing jointly/SS,all,filers,mfjss,6,"$15,000 under $20,000",18128929000.0,21in12ms.xls,O14,15,O,14 +2110,2021_tab12_agi_amount_all_mfjss,2021,tab12,agi,amount,Adjusted gross income — married filing jointly/SS,all,filers,mfjss,7,"$20,000 under $25,000",27927390000.0,21in12ms.xls,O15,15,O,15 +2111,2021_tab12_agi_amount_all_mfjss,2021,tab12,agi,amount,Adjusted gross income — married filing jointly/SS,all,filers,mfjss,8,"$25,000 under $30,000",37000617000.0,21in12ms.xls,O16,15,O,16 +2112,2021_tab12_agi_amount_all_mfjss,2021,tab12,agi,amount,Adjusted gross income — married filing jointly/SS,all,filers,mfjss,9,"$30,000 under $40,000",97902867000.0,21in12ms.xls,O17,15,O,17 +2113,2021_tab12_agi_amount_all_mfjss,2021,tab12,agi,amount,Adjusted gross income — married filing jointly/SS,all,filers,mfjss,10,"$40,000 under $50,000",129639187000.0,21in12ms.xls,O18,15,O,18 +2114,2021_tab12_agi_amount_all_mfjss,2021,tab12,agi,amount,Adjusted gross income — married filing jointly/SS,all,filers,mfjss,11,"$50,000 under $75,000",466603588000.0,21in12ms.xls,O19,15,O,19 +2115,2021_tab12_agi_amount_all_mfjss,2021,tab12,agi,amount,Adjusted gross income — married filing jointly/SS,all,filers,mfjss,12,"$75,000 under $100,000",676922080000.0,21in12ms.xls,O20,15,O,20 +2116,2021_tab12_agi_amount_all_mfjss,2021,tab12,agi,amount,Adjusted gross income — married filing jointly/SS,all,filers,mfjss,13,"$100,000 under $200,000",2402518137000.0,21in12ms.xls,O21,15,O,21 +2117,2021_tab12_agi_amount_all_mfjss,2021,tab12,agi,amount,Adjusted gross income — married filing jointly/SS,all,filers,mfjss,14,"$200,000 under $500,000",2128764355000.0,21in12ms.xls,O22,15,O,22 +2118,2021_tab12_agi_amount_all_mfjss,2021,tab12,agi,amount,Adjusted gross income — married filing jointly/SS,all,filers,mfjss,15,"$500,000 under $1,000,000",908210770000.0,21in12ms.xls,O23,15,O,23 +2119,2021_tab12_agi_amount_all_mfjss,2021,tab12,agi,amount,Adjusted gross income — married filing jointly/SS,all,filers,mfjss,16,"$1,000,000 under $1,500,000",382588291000.0,21in12ms.xls,O24,15,O,24 +2120,2021_tab12_agi_amount_all_mfjss,2021,tab12,agi,amount,Adjusted gross income — married filing jointly/SS,all,filers,mfjss,17,"$1,500,000 under $2,000,000",223211644000.0,21in12ms.xls,O25,15,O,25 +2121,2021_tab12_agi_amount_all_mfjss,2021,tab12,agi,amount,Adjusted gross income — married filing jointly/SS,all,filers,mfjss,18,"$2,000,000 under $5,000,000",571344173000.0,21in12ms.xls,O26,15,O,26 +2122,2021_tab12_agi_amount_all_mfjss,2021,tab12,agi,amount,Adjusted gross income — married filing jointly/SS,all,filers,mfjss,19,"$5,000,000 under $10,000,000",354206871000.0,21in12ms.xls,O27,15,O,27 +2123,2021_tab12_agi_amount_all_mfjss,2021,tab12,agi,amount,Adjusted gross income — married filing jointly/SS,all,filers,mfjss,20,"$10,000,000 or more",1156828354000.0,21in12ms.xls,O28,15,O,28 +2124,2021_tab12_agi_amount_all_mfs,2021,tab12,agi,amount,Adjusted gross income — married filing separately,all,filers,mfs,1,"All returns, total",349173490000.0,21in12ms.xls,AA9,27,AA,9 +2125,2021_tab12_agi_amount_all_mfs,2021,tab12,agi,amount,Adjusted gross income — married filing separately,all,filers,mfs,2,No adjusted gross income (includes deficits),-10308919000.0,21in12ms.xls,AA10,27,AA,10 +2126,2021_tab12_agi_amount_all_mfs,2021,tab12,agi,amount,Adjusted gross income — married filing separately,all,filers,mfs,3,"$1 under $5,000",339626000.0,21in12ms.xls,AA11,27,AA,11 +2127,2021_tab12_agi_amount_all_mfs,2021,tab12,agi,amount,Adjusted gross income — married filing separately,all,filers,mfs,4,"$5,000 under $10,000",1052349000.0,21in12ms.xls,AA12,27,AA,12 +2128,2021_tab12_agi_amount_all_mfs,2021,tab12,agi,amount,Adjusted gross income — married filing separately,all,filers,mfs,5,"$10,000 under $15,000",1980767000.0,21in12ms.xls,AA13,27,AA,13 +2129,2021_tab12_agi_amount_all_mfs,2021,tab12,agi,amount,Adjusted gross income — married filing separately,all,filers,mfs,6,"$15,000 under $20,000",2841995000.0,21in12ms.xls,AA14,27,AA,14 +2130,2021_tab12_agi_amount_all_mfs,2021,tab12,agi,amount,Adjusted gross income — married filing separately,all,filers,mfs,7,"$20,000 under $25,000",4090074000.0,21in12ms.xls,AA15,27,AA,15 +2131,2021_tab12_agi_amount_all_mfs,2021,tab12,agi,amount,Adjusted gross income — married filing separately,all,filers,mfs,8,"$25,000 under $30,000",6062013000.0,21in12ms.xls,AA16,27,AA,16 +2132,2021_tab12_agi_amount_all_mfs,2021,tab12,agi,amount,Adjusted gross income — married filing separately,all,filers,mfs,9,"$30,000 under $40,000",17234995000.0,21in12ms.xls,AA17,27,AA,17 +2133,2021_tab12_agi_amount_all_mfs,2021,tab12,agi,amount,Adjusted gross income — married filing separately,all,filers,mfs,10,"$40,000 under $50,000",21379178000.0,21in12ms.xls,AA18,27,AA,18 +2134,2021_tab12_agi_amount_all_mfs,2021,tab12,agi,amount,Adjusted gross income — married filing separately,all,filers,mfs,11,"$50,000 under $75,000",52103375000.0,21in12ms.xls,AA19,27,AA,19 +2135,2021_tab12_agi_amount_all_mfs,2021,tab12,agi,amount,Adjusted gross income — married filing separately,all,filers,mfs,12,"$75,000 under $100,000",30369694000.0,21in12ms.xls,AA20,27,AA,20 +2136,2021_tab12_agi_amount_all_mfs,2021,tab12,agi,amount,Adjusted gross income — married filing separately,all,filers,mfs,13,"$100,000 under $200,000",59902172000.0,21in12ms.xls,AA21,27,AA,21 +2137,2021_tab12_agi_amount_all_mfs,2021,tab12,agi,amount,Adjusted gross income — married filing separately,all,filers,mfs,14,"$200,000 under $500,000",28525110000.0,21in12ms.xls,AA22,27,AA,22 +2138,2021_tab12_agi_amount_all_mfs,2021,tab12,agi,amount,Adjusted gross income — married filing separately,all,filers,mfs,15,"$500,000 under $1,000,000",13063263000.0,21in12ms.xls,AA23,27,AA,23 +2139,2021_tab12_agi_amount_all_mfs,2021,tab12,agi,amount,Adjusted gross income — married filing separately,all,filers,mfs,16,"$1,000,000 under $1,500,000",6934037000.0,21in12ms.xls,AA24,27,AA,24 +2140,2021_tab12_agi_amount_all_mfs,2021,tab12,agi,amount,Adjusted gross income — married filing separately,all,filers,mfs,17,"$1,500,000 under $2,000,000",5061198000.0,21in12ms.xls,AA25,27,AA,25 +2141,2021_tab12_agi_amount_all_mfs,2021,tab12,agi,amount,Adjusted gross income — married filing separately,all,filers,mfs,18,"$2,000,000 under $5,000,000",16332731000.0,21in12ms.xls,AA26,27,AA,26 +2142,2021_tab12_agi_amount_all_mfs,2021,tab12,agi,amount,Adjusted gross income — married filing separately,all,filers,mfs,19,"$5,000,000 under $10,000,000",11765312000.0,21in12ms.xls,AA27,27,AA,27 +2143,2021_tab12_agi_amount_all_mfs,2021,tab12,agi,amount,Adjusted gross income — married filing separately,all,filers,mfs,20,"$10,000,000 or more",80444520000.0,21in12ms.xls,AA28,27,AA,28 +2144,2021_tab12_agi_amount_all_single,2021,tab12,agi,amount,Adjusted gross income — single,all,filers,single,1,"All returns, total",3912671925000.0,21in12ms.xls,AY9,51,AY,9 +2145,2021_tab12_agi_amount_all_single,2021,tab12,agi,amount,Adjusted gross income — single,all,filers,single,2,No adjusted gross income (includes deficits),-51602893000.0,21in12ms.xls,AY10,51,AY,10 +2146,2021_tab12_agi_amount_all_single,2021,tab12,agi,amount,Adjusted gross income — single,all,filers,single,3,"$1 under $5,000",16574403000.0,21in12ms.xls,AY11,51,AY,11 +2147,2021_tab12_agi_amount_all_single,2021,tab12,agi,amount,Adjusted gross income — single,all,filers,single,4,"$5,000 under $10,000",53930358000.0,21in12ms.xls,AY12,51,AY,12 +2148,2021_tab12_agi_amount_all_single,2021,tab12,agi,amount,Adjusted gross income — single,all,filers,single,5,"$10,000 under $15,000",91748952000.0,21in12ms.xls,AY13,51,AY,13 +2149,2021_tab12_agi_amount_all_single,2021,tab12,agi,amount,Adjusted gross income — single,all,filers,single,6,"$15,000 under $20,000",116477401000.0,21in12ms.xls,AY14,51,AY,14 +2150,2021_tab12_agi_amount_all_single,2021,tab12,agi,amount,Adjusted gross income — single,all,filers,single,7,"$20,000 under $25,000",125348264000.0,21in12ms.xls,AY15,51,AY,15 +2151,2021_tab12_agi_amount_all_single,2021,tab12,agi,amount,Adjusted gross income — single,all,filers,single,8,"$25,000 under $30,000",144768327000.0,21in12ms.xls,AY16,51,AY,16 +2152,2021_tab12_agi_amount_all_single,2021,tab12,agi,amount,Adjusted gross income — single,all,filers,single,9,"$30,000 under $40,000",323115069000.0,21in12ms.xls,AY17,51,AY,17 +2153,2021_tab12_agi_amount_all_single,2021,tab12,agi,amount,Adjusted gross income — single,all,filers,single,10,"$40,000 under $50,000",322482930000.0,21in12ms.xls,AY18,51,AY,18 +2154,2021_tab12_agi_amount_all_single,2021,tab12,agi,amount,Adjusted gross income — single,all,filers,single,11,"$50,000 under $75,000",682764971000.0,21in12ms.xls,AY19,51,AY,19 +2155,2021_tab12_agi_amount_all_single,2021,tab12,agi,amount,Adjusted gross income — single,all,filers,single,12,"$75,000 under $100,000",442836369000.0,21in12ms.xls,AY20,51,AY,20 +2156,2021_tab12_agi_amount_all_single,2021,tab12,agi,amount,Adjusted gross income — single,all,filers,single,13,"$100,000 under $200,000",665028995000.0,21in12ms.xls,AY21,51,AY,21 +2157,2021_tab12_agi_amount_all_single,2021,tab12,agi,amount,Adjusted gross income — single,all,filers,single,14,"$200,000 under $500,000",388158330000.0,21in12ms.xls,AY22,51,AY,22 +2158,2021_tab12_agi_amount_all_single,2021,tab12,agi,amount,Adjusted gross income — single,all,filers,single,15,"$500,000 under $1,000,000",143457981000.0,21in12ms.xls,AY23,51,AY,23 +2159,2021_tab12_agi_amount_all_single,2021,tab12,agi,amount,Adjusted gross income — single,all,filers,single,16,"$1,000,000 under $1,500,000",54294868000.0,21in12ms.xls,AY24,51,AY,24 +2160,2021_tab12_agi_amount_all_single,2021,tab12,agi,amount,Adjusted gross income — single,all,filers,single,17,"$1,500,000 under $2,000,000",33692456000.0,21in12ms.xls,AY25,51,AY,25 +2161,2021_tab12_agi_amount_all_single,2021,tab12,agi,amount,Adjusted gross income — single,all,filers,single,18,"$2,000,000 under $5,000,000",94655032000.0,21in12ms.xls,AY26,51,AY,26 +2162,2021_tab12_agi_amount_all_single,2021,tab12,agi,amount,Adjusted gross income — single,all,filers,single,19,"$5,000,000 under $10,000,000",58905825000.0,21in12ms.xls,AY27,51,AY,27 +2163,2021_tab12_agi_amount_all_single,2021,tab12,agi,amount,Adjusted gross income — single,all,filers,single,20,"$10,000,000 or more",206034288000.0,21in12ms.xls,AY28,51,AY,28 +2164,2021_tab12_agi_count_all_all,2021,tab12,agi,count,Number of returns,all,filers,all,1,"All returns, total",160824340.0,21in12ms.xls,B9,2,B,9 +2165,2021_tab12_agi_count_all_all,2021,tab12,agi,count,Number of returns,all,filers,all,2,No adjusted gross income (includes deficits),4098522.0,21in12ms.xls,B10,2,B,10 +2166,2021_tab12_agi_count_all_all,2021,tab12,agi,count,Number of returns,all,filers,all,3,"$1 under $5,000",8487025.0,21in12ms.xls,B11,2,B,11 +2167,2021_tab12_agi_count_all_all,2021,tab12,agi,count,Number of returns,all,filers,all,4,"$5,000 under $10,000",8944908.0,21in12ms.xls,B12,2,B,12 +2168,2021_tab12_agi_count_all_all,2021,tab12,agi,count,Number of returns,all,filers,all,5,"$10,000 under $15,000",10056377.0,21in12ms.xls,B13,2,B,13 +2169,2021_tab12_agi_count_all_all,2021,tab12,agi,count,Number of returns,all,filers,all,6,"$15,000 under $20,000",9786580.0,21in12ms.xls,B14,2,B,14 +2170,2021_tab12_agi_count_all_all,2021,tab12,agi,count,Number of returns,all,filers,all,7,"$20,000 under $25,000",8863570.0,21in12ms.xls,B15,2,B,15 +2171,2021_tab12_agi_count_all_all,2021,tab12,agi,count,Number of returns,all,filers,all,8,"$25,000 under $30,000",8787576.0,21in12ms.xls,B16,2,B,16 +2172,2021_tab12_agi_count_all_all,2021,tab12,agi,count,Number of returns,all,filers,all,9,"$30,000 under $40,000",16123068.0,21in12ms.xls,B17,2,B,17 +2173,2021_tab12_agi_count_all_all,2021,tab12,agi,count,Number of returns,all,filers,all,10,"$40,000 under $50,000",12782334.0,21in12ms.xls,B18,2,B,18 +2174,2021_tab12_agi_count_all_all,2021,tab12,agi,count,Number of returns,all,filers,all,11,"$50,000 under $75,000",22653934.0,21in12ms.xls,B19,2,B,19 +2175,2021_tab12_agi_count_all_all,2021,tab12,agi,count,Number of returns,all,filers,all,12,"$75,000 under $100,000",14657726.0,21in12ms.xls,B20,2,B,20 +2176,2021_tab12_agi_count_all_all,2021,tab12,agi,count,Number of returns,all,filers,all,13,"$100,000 under $200,000",24044481.0,21in12ms.xls,B21,2,B,21 +2177,2021_tab12_agi_count_all_all,2021,tab12,agi,count,Number of returns,all,filers,all,14,"$200,000 under $500,000",9045567.0,21in12ms.xls,B22,2,B,22 +2178,2021_tab12_agi_count_all_all,2021,tab12,agi,count,Number of returns,all,filers,all,15,"$500,000 under $1,000,000",1617144.0,21in12ms.xls,B23,2,B,23 +2179,2021_tab12_agi_count_all_all,2021,tab12,agi,count,Number of returns,all,filers,all,16,"$1,000,000 under $1,500,000",376859.0,21in12ms.xls,B24,2,B,24 +2180,2021_tab12_agi_count_all_all,2021,tab12,agi,count,Number of returns,all,filers,all,17,"$1,500,000 under $2,000,000",156020.0,21in12ms.xls,B25,2,B,25 +2181,2021_tab12_agi_count_all_all,2021,tab12,agi,count,Number of returns,all,filers,all,18,"$2,000,000 under $5,000,000",233838.0,21in12ms.xls,B26,2,B,26 +2182,2021_tab12_agi_count_all_all,2021,tab12,agi,count,Number of returns,all,filers,all,19,"$5,000,000 under $10,000,000",63406.0,21in12ms.xls,B27,2,B,27 +2183,2021_tab12_agi_count_all_all,2021,tab12,agi,count,Number of returns,all,filers,all,20,"$10,000,000 or more",45404.0,21in12ms.xls,B28,2,B,28 +2184,2021_tab12_agi_count_all_hoh,2021,tab12,agi,count,Number of returns — head of household,all,filers,hoh,1,"All returns, total",21240317.0,21in12ms.xls,AL9,38,AL,9 +2185,2021_tab12_agi_count_all_hoh,2021,tab12,agi,count,Number of returns — head of household,all,filers,hoh,2,No adjusted gross income (includes deficits),418044.0,21in12ms.xls,AL10,38,AL,10 +2186,2021_tab12_agi_count_all_hoh,2021,tab12,agi,count,Number of returns — head of household,all,filers,hoh,3,"$1 under $5,000",644578.0,21in12ms.xls,AL11,38,AL,11 +2187,2021_tab12_agi_count_all_hoh,2021,tab12,agi,count,Number of returns — head of household,all,filers,hoh,4,"$5,000 under $10,000",905840.0,21in12ms.xls,AL12,38,AL,12 +2188,2021_tab12_agi_count_all_hoh,2021,tab12,agi,count,Number of returns — head of household,all,filers,hoh,5,"$10,000 under $15,000",1606806.0,21in12ms.xls,AL13,38,AL,13 +2189,2021_tab12_agi_count_all_hoh,2021,tab12,agi,count,Number of returns — head of household,all,filers,hoh,6,"$15,000 under $20,000",1906721.0,21in12ms.xls,AL14,38,AL,14 +2190,2021_tab12_agi_count_all_hoh,2021,tab12,agi,count,Number of returns — head of household,all,filers,hoh,7,"$20,000 under $25,000",1870213.0,21in12ms.xls,AL15,38,AL,15 +2191,2021_tab12_agi_count_all_hoh,2021,tab12,agi,count,Number of returns — head of household,all,filers,hoh,8,"$25,000 under $30,000",1947419.0,21in12ms.xls,AL16,38,AL,16 +2192,2021_tab12_agi_count_all_hoh,2021,tab12,agi,count,Number of returns — head of household,all,filers,hoh,9,"$30,000 under $40,000",3546653.0,21in12ms.xls,AL17,38,AL,17 +2193,2021_tab12_agi_count_all_hoh,2021,tab12,agi,count,Number of returns — head of household,all,filers,hoh,10,"$40,000 under $50,000",2232401.0,21in12ms.xls,AL18,38,AL,18 +2194,2021_tab12_agi_count_all_hoh,2021,tab12,agi,count,Number of returns — head of household,all,filers,hoh,11,"$50,000 under $75,000",3130763.0,21in12ms.xls,AL19,38,AL,19 +2195,2021_tab12_agi_count_all_hoh,2021,tab12,agi,count,Number of returns — head of household,all,filers,hoh,12,"$75,000 under $100,000",1418570.0,21in12ms.xls,AL20,38,AL,20 +2196,2021_tab12_agi_count_all_hoh,2021,tab12,agi,count,Number of returns — head of household,all,filers,hoh,13,"$100,000 under $200,000",1289413.0,21in12ms.xls,AL21,38,AL,21 +2197,2021_tab12_agi_count_all_hoh,2021,tab12,agi,count,Number of returns — head of household,all,filers,hoh,14,"$200,000 under $500,000",260151.0,21in12ms.xls,AL22,38,AL,22 +2198,2021_tab12_agi_count_all_hoh,2021,tab12,agi,count,Number of returns — head of household,all,filers,hoh,15,"$500,000 under $1,000,000",42124.0,21in12ms.xls,AL23,38,AL,23 +2199,2021_tab12_agi_count_all_hoh,2021,tab12,agi,count,Number of returns — head of household,all,filers,hoh,16,"$1,000,000 under $1,500,000",8811.0,21in12ms.xls,AL24,38,AL,24 +2200,2021_tab12_agi_count_all_hoh,2021,tab12,agi,count,Number of returns — head of household,all,filers,hoh,17,"$1,500,000 under $2,000,000",3695.0,21in12ms.xls,AL25,38,AL,25 +2201,2021_tab12_agi_count_all_hoh,2021,tab12,agi,count,Number of returns — head of household,all,filers,hoh,18,"$2,000,000 under $5,000,000",5488.0,21in12ms.xls,AL26,38,AL,26 +2202,2021_tab12_agi_count_all_hoh,2021,tab12,agi,count,Number of returns — head of household,all,filers,hoh,19,"$5,000,000 under $10,000,000",1505.0,21in12ms.xls,AL27,38,AL,27 +2203,2021_tab12_agi_count_all_hoh,2021,tab12,agi,count,Number of returns — head of household,all,filers,hoh,20,"$10,000,000 or more",1125.0,21in12ms.xls,AL28,38,AL,28 +2204,2021_tab12_agi_count_all_mfjss,2021,tab12,agi,count,Number of returns — married filing jointly/SS,all,filers,mfjss,1,"All returns, total",54248325.0,21in12ms.xls,N9,14,N,9 +2205,2021_tab12_agi_count_all_mfjss,2021,tab12,agi,count,Number of returns — married filing jointly/SS,all,filers,mfjss,2,No adjusted gross income (includes deficits),706064.0,21in12ms.xls,N10,14,N,10 +2206,2021_tab12_agi_count_all_mfjss,2021,tab12,agi,count,Number of returns — married filing jointly/SS,all,filers,mfjss,3,"$1 under $5,000",709447.0,21in12ms.xls,N11,14,N,11 +2207,2021_tab12_agi_count_all_mfjss,2021,tab12,agi,count,Number of returns — married filing jointly/SS,all,filers,mfjss,4,"$5,000 under $10,000",735637.0,21in12ms.xls,N12,14,N,12 +2208,2021_tab12_agi_count_all_mfjss,2021,tab12,agi,count,Number of returns — married filing jointly/SS,all,filers,mfjss,5,"$10,000 under $15,000",954527.0,21in12ms.xls,N13,14,N,13 +2209,2021_tab12_agi_count_all_mfjss,2021,tab12,agi,count,Number of returns — married filing jointly/SS,all,filers,mfjss,6,"$15,000 under $20,000",1035746.0,21in12ms.xls,N14,14,N,14 +2210,2021_tab12_agi_count_all_mfjss,2021,tab12,agi,count,Number of returns — married filing jointly/SS,all,filers,mfjss,7,"$20,000 under $25,000",1239738.0,21in12ms.xls,N15,14,N,15 +2211,2021_tab12_agi_count_all_mfjss,2021,tab12,agi,count,Number of returns — married filing jointly/SS,all,filers,mfjss,8,"$25,000 under $30,000",1346593.0,21in12ms.xls,N16,14,N,16 +2212,2021_tab12_agi_count_all_mfjss,2021,tab12,agi,count,Number of returns — married filing jointly/SS,all,filers,mfjss,9,"$30,000 under $40,000",2792745.0,21in12ms.xls,N17,14,N,17 +2213,2021_tab12_agi_count_all_mfjss,2021,tab12,agi,count,Number of returns — married filing jointly/SS,all,filers,mfjss,10,"$40,000 under $50,000",2878772.0,21in12ms.xls,N18,14,N,18 +2214,2021_tab12_agi_count_all_mfjss,2021,tab12,agi,count,Number of returns — married filing jointly/SS,all,filers,mfjss,11,"$50,000 under $75,000",7435237.0,21in12ms.xls,N19,14,N,19 +2215,2021_tab12_agi_count_all_mfjss,2021,tab12,agi,count,Number of returns — married filing jointly/SS,all,filers,mfjss,12,"$75,000 under $100,000",7735156.0,21in12ms.xls,N20,14,N,20 +2216,2021_tab12_agi_count_all_mfjss,2021,tab12,agi,count,Number of returns — married filing jointly/SS,all,filers,mfjss,13,"$100,000 under $200,000",17274270.0,21in12ms.xls,N21,14,N,21 +2217,2021_tab12_agi_count_all_mfjss,2021,tab12,agi,count,Number of returns — married filing jointly/SS,all,filers,mfjss,14,"$200,000 under $500,000",7335493.0,21in12ms.xls,N22,14,N,22 +2218,2021_tab12_agi_count_all_mfjss,2021,tab12,agi,count,Number of returns — married filing jointly/SS,all,filers,mfjss,15,"$500,000 under $1,000,000",1342189.0,21in12ms.xls,N23,14,N,23 +2219,2021_tab12_agi_count_all_mfjss,2021,tab12,agi,count,Number of returns — married filing jointly/SS,all,filers,mfjss,16,"$1,000,000 under $1,500,000",317361.0,21in12ms.xls,N24,14,N,24 +2220,2021_tab12_agi_count_all_mfjss,2021,tab12,agi,count,Number of returns — married filing jointly/SS,all,filers,mfjss,17,"$1,500,000 under $2,000,000",129835.0,21in12ms.xls,N25,14,N,25 +2221,2021_tab12_agi_count_all_mfjss,2021,tab12,agi,count,Number of returns — married filing jointly/SS,all,filers,mfjss,18,"$2,000,000 under $5,000,000",191346.0,21in12ms.xls,N26,14,N,26 +2222,2021_tab12_agi_count_all_mfjss,2021,tab12,agi,count,Number of returns — married filing jointly/SS,all,filers,mfjss,19,"$5,000,000 under $10,000,000",51648.0,21in12ms.xls,N27,14,N,27 +2223,2021_tab12_agi_count_all_mfjss,2021,tab12,agi,count,Number of returns — married filing jointly/SS,all,filers,mfjss,20,"$10,000,000 or more",36520.0,21in12ms.xls,N28,14,N,28 +2224,2021_tab12_agi_count_all_mfs,2021,tab12,agi,count,Number of returns — married filing separately,all,filers,mfs,1,"All returns, total",3912940.0,21in12ms.xls,Z9,26,Z,9 +2225,2021_tab12_agi_count_all_mfs,2021,tab12,agi,count,Number of returns — married filing separately,all,filers,mfs,2,No adjusted gross income (includes deficits),123238.0,21in12ms.xls,Z10,26,Z,10 +2226,2021_tab12_agi_count_all_mfs,2021,tab12,agi,count,Number of returns — married filing separately,all,filers,mfs,3,"$1 under $5,000",154821.0,21in12ms.xls,Z11,26,Z,11 +2227,2021_tab12_agi_count_all_mfs,2021,tab12,agi,count,Number of returns — married filing separately,all,filers,mfs,4,"$5,000 under $10,000",142096.0,21in12ms.xls,Z12,26,Z,12 +2228,2021_tab12_agi_count_all_mfs,2021,tab12,agi,count,Number of returns — married filing separately,all,filers,mfs,5,"$10,000 under $15,000",157599.0,21in12ms.xls,Z13,26,Z,13 +2229,2021_tab12_agi_count_all_mfs,2021,tab12,agi,count,Number of returns — married filing separately,all,filers,mfs,6,"$15,000 under $20,000",161811.0,21in12ms.xls,Z14,26,Z,14 +2230,2021_tab12_agi_count_all_mfs,2021,tab12,agi,count,Number of returns — married filing separately,all,filers,mfs,7,"$20,000 under $25,000",181840.0,21in12ms.xls,Z15,26,Z,15 +2231,2021_tab12_agi_count_all_mfs,2021,tab12,agi,count,Number of returns — married filing separately,all,filers,mfs,8,"$25,000 under $30,000",220057.0,21in12ms.xls,Z16,26,Z,16 +2232,2021_tab12_agi_count_all_mfs,2021,tab12,agi,count,Number of returns — married filing separately,all,filers,mfs,9,"$30,000 under $40,000",491569.0,21in12ms.xls,Z17,26,Z,17 +2233,2021_tab12_agi_count_all_mfs,2021,tab12,agi,count,Number of returns — married filing separately,all,filers,mfs,10,"$40,000 under $50,000",478125.0,21in12ms.xls,Z18,26,Z,18 +2234,2021_tab12_agi_count_all_mfs,2021,tab12,agi,count,Number of returns — married filing separately,all,filers,mfs,11,"$50,000 under $75,000",860888.0,21in12ms.xls,Z19,26,Z,19 +2235,2021_tab12_agi_count_all_mfs,2021,tab12,agi,count,Number of returns — married filing separately,all,filers,mfs,12,"$75,000 under $100,000",351192.0,21in12ms.xls,Z20,26,Z,20 +2236,2021_tab12_agi_count_all_mfs,2021,tab12,agi,count,Number of returns — married filing separately,all,filers,mfs,13,"$100,000 under $200,000",455335.0,21in12ms.xls,Z21,26,Z,21 +2237,2021_tab12_agi_count_all_mfs,2021,tab12,agi,count,Number of returns — married filing separately,all,filers,mfs,14,"$200,000 under $500,000",97466.0,21in12ms.xls,Z22,26,Z,22 +2238,2021_tab12_agi_count_all_mfs,2021,tab12,agi,count,Number of returns — married filing separately,all,filers,mfs,15,"$500,000 under $1,000,000",19437.0,21in12ms.xls,Z23,26,Z,23 +2239,2021_tab12_agi_count_all_mfs,2021,tab12,agi,count,Number of returns — married filing separately,all,filers,mfs,16,"$1,000,000 under $1,500,000",5761.0,21in12ms.xls,Z24,26,Z,24 +2240,2021_tab12_agi_count_all_mfs,2021,tab12,agi,count,Number of returns — married filing separately,all,filers,mfs,17,"$1,500,000 under $2,000,000",2947.0,21in12ms.xls,Z25,26,Z,25 +2241,2021_tab12_agi_count_all_mfs,2021,tab12,agi,count,Number of returns — married filing separately,all,filers,mfs,18,"$2,000,000 under $5,000,000",5365.0,21in12ms.xls,Z26,26,Z,26 +2242,2021_tab12_agi_count_all_mfs,2021,tab12,agi,count,Number of returns — married filing separately,all,filers,mfs,19,"$5,000,000 under $10,000,000",1687.0,21in12ms.xls,Z27,26,Z,27 +2243,2021_tab12_agi_count_all_mfs,2021,tab12,agi,count,Number of returns — married filing separately,all,filers,mfs,20,"$10,000,000 or more",1707.0,21in12ms.xls,Z28,26,Z,28 +2244,2021_tab12_agi_count_all_single,2021,tab12,agi,count,Number of returns — single,all,filers,single,1,"All returns, total",81422759.0,21in12ms.xls,AX9,50,AX,9 +2245,2021_tab12_agi_count_all_single,2021,tab12,agi,count,Number of returns — single,all,filers,single,2,No adjusted gross income (includes deficits),2851176.0,21in12ms.xls,AX10,50,AX,10 +2246,2021_tab12_agi_count_all_single,2021,tab12,agi,count,Number of returns — single,all,filers,single,3,"$1 under $5,000",6978179.0,21in12ms.xls,AX11,50,AX,11 +2247,2021_tab12_agi_count_all_single,2021,tab12,agi,count,Number of returns — single,all,filers,single,4,"$5,000 under $10,000",7161336.0,21in12ms.xls,AX12,50,AX,12 +2248,2021_tab12_agi_count_all_single,2021,tab12,agi,count,Number of returns — single,all,filers,single,5,"$10,000 under $15,000",7337444.0,21in12ms.xls,AX13,50,AX,13 +2249,2021_tab12_agi_count_all_single,2021,tab12,agi,count,Number of returns — single,all,filers,single,6,"$15,000 under $20,000",6682302.0,21in12ms.xls,AX14,50,AX,14 +2250,2021_tab12_agi_count_all_single,2021,tab12,agi,count,Number of returns — single,all,filers,single,7,"$20,000 under $25,000",5571779.0,21in12ms.xls,AX15,50,AX,15 +2251,2021_tab12_agi_count_all_single,2021,tab12,agi,count,Number of returns — single,all,filers,single,8,"$25,000 under $30,000",5273508.0,21in12ms.xls,AX16,50,AX,16 +2252,2021_tab12_agi_count_all_single,2021,tab12,agi,count,Number of returns — single,all,filers,single,9,"$30,000 under $40,000",9292101.0,21in12ms.xls,AX17,50,AX,17 +2253,2021_tab12_agi_count_all_single,2021,tab12,agi,count,Number of returns — single,all,filers,single,10,"$40,000 under $50,000",7193036.0,21in12ms.xls,AX18,50,AX,18 +2254,2021_tab12_agi_count_all_single,2021,tab12,agi,count,Number of returns — single,all,filers,single,11,"$50,000 under $75,000",11227046.0,21in12ms.xls,AX19,50,AX,19 +2255,2021_tab12_agi_count_all_single,2021,tab12,agi,count,Number of returns — single,all,filers,single,12,"$75,000 under $100,000",5152809.0,21in12ms.xls,AX20,50,AX,20 +2256,2021_tab12_agi_count_all_single,2021,tab12,agi,count,Number of returns — single,all,filers,single,13,"$100,000 under $200,000",5025462.0,21in12ms.xls,AX21,50,AX,21 +2257,2021_tab12_agi_count_all_single,2021,tab12,agi,count,Number of returns — single,all,filers,single,14,"$200,000 under $500,000",1352457.0,21in12ms.xls,AX22,50,AX,22 +2258,2021_tab12_agi_count_all_single,2021,tab12,agi,count,Number of returns — single,all,filers,single,15,"$500,000 under $1,000,000",213394.0,21in12ms.xls,AX23,50,AX,23 +2259,2021_tab12_agi_count_all_single,2021,tab12,agi,count,Number of returns — single,all,filers,single,16,"$1,000,000 under $1,500,000",44926.0,21in12ms.xls,AX24,50,AX,24 +2260,2021_tab12_agi_count_all_single,2021,tab12,agi,count,Number of returns — single,all,filers,single,17,"$1,500,000 under $2,000,000",19543.0,21in12ms.xls,AX25,50,AX,25 +2261,2021_tab12_agi_count_all_single,2021,tab12,agi,count,Number of returns — single,all,filers,single,18,"$2,000,000 under $5,000,000",31640.0,21in12ms.xls,AX26,50,AX,26 +2262,2021_tab12_agi_count_all_single,2021,tab12,agi,count,Number of returns — single,all,filers,single,19,"$5,000,000 under $10,000,000",8567.0,21in12ms.xls,AX27,50,AX,27 +2263,2021_tab12_agi_count_all_single,2021,tab12,agi,count,Number of returns — single,all,filers,single,20,"$10,000,000 or more",6052.0,21in12ms.xls,AX28,50,AX,28 +2264,2021_tab12_itemded_amount_nz_all,2021,tab12,itemded,amount,Total itemized deductions,nz,filers,all,1,"All returns, total",659680547000.0,21in12ms.xls,E9,5,E,9 +2265,2021_tab12_itemded_amount_nz_all,2021,tab12,itemded,amount,Total itemized deductions,nz,filers,all,2,No adjusted gross income (includes deficits),0.0,21in12ms.xls,E10,5,E,10 +2266,2021_tab12_itemded_amount_nz_all,2021,tab12,itemded,amount,Total itemized deductions,nz,filers,all,3,"$1 under $5,000",1871637000.0,21in12ms.xls,E11,5,E,11 +2267,2021_tab12_itemded_amount_nz_all,2021,tab12,itemded,amount,Total itemized deductions,nz,filers,all,4,"$5,000 under $10,000",2292492000.0,21in12ms.xls,E12,5,E,12 +2268,2021_tab12_itemded_amount_nz_all,2021,tab12,itemded,amount,Total itemized deductions,nz,filers,all,5,"$10,000 under $15,000",2804369000.0,21in12ms.xls,E13,5,E,13 +2269,2021_tab12_itemded_amount_nz_all,2021,tab12,itemded,amount,Total itemized deductions,nz,filers,all,6,"$15,000 under $20,000",4775555000.0,21in12ms.xls,E14,5,E,14 +2270,2021_tab12_itemded_amount_nz_all,2021,tab12,itemded,amount,Total itemized deductions,nz,filers,all,7,"$20,000 under $25,000",4285472000.0,21in12ms.xls,E15,5,E,15 +2271,2021_tab12_itemded_amount_nz_all,2021,tab12,itemded,amount,Total itemized deductions,nz,filers,all,8,"$25,000 under $30,000",4765016000.0,21in12ms.xls,E16,5,E,16 +2272,2021_tab12_itemded_amount_nz_all,2021,tab12,itemded,amount,Total itemized deductions,nz,filers,all,9,"$30,000 under $40,000",12606528000.0,21in12ms.xls,E17,5,E,17 +2273,2021_tab12_itemded_amount_nz_all,2021,tab12,itemded,amount,Total itemized deductions,nz,filers,all,10,"$40,000 under $50,000",15706593000.0,21in12ms.xls,E18,5,E,18 +2274,2021_tab12_itemded_amount_nz_all,2021,tab12,itemded,amount,Total itemized deductions,nz,filers,all,11,"$50,000 under $75,000",47466699000.0,21in12ms.xls,E19,5,E,19 +2275,2021_tab12_itemded_amount_nz_all,2021,tab12,itemded,amount,Total itemized deductions,nz,filers,all,12,"$75,000 under $100,000",54706812000.0,21in12ms.xls,E20,5,E,20 +2276,2021_tab12_itemded_amount_nz_all,2021,tab12,itemded,amount,Total itemized deductions,nz,filers,all,13,"$100,000 under $200,000",138751518000.0,21in12ms.xls,E21,5,E,21 +2277,2021_tab12_itemded_amount_nz_all,2021,tab12,itemded,amount,Total itemized deductions,nz,filers,all,14,"$200,000 under $500,000",124480962000.0,21in12ms.xls,E22,5,E,22 +2278,2021_tab12_itemded_amount_nz_all,2021,tab12,itemded,amount,Total itemized deductions,nz,filers,all,15,"$500,000 under $1,000,000",49971545000.0,21in12ms.xls,E23,5,E,23 +2279,2021_tab12_itemded_amount_nz_all,2021,tab12,itemded,amount,Total itemized deductions,nz,filers,all,16,"$1,000,000 under $1,500,000",20103248000.0,21in12ms.xls,E24,5,E,24 +2280,2021_tab12_itemded_amount_nz_all,2021,tab12,itemded,amount,Total itemized deductions,nz,filers,all,17,"$1,500,000 under $2,000,000",11864113000.0,21in12ms.xls,E25,5,E,25 +2281,2021_tab12_itemded_amount_nz_all,2021,tab12,itemded,amount,Total itemized deductions,nz,filers,all,18,"$2,000,000 under $5,000,000",31470281000.0,21in12ms.xls,E26,5,E,26 +2282,2021_tab12_itemded_amount_nz_all,2021,tab12,itemded,amount,Total itemized deductions,nz,filers,all,19,"$5,000,000 under $10,000,000",19991637000.0,21in12ms.xls,E27,5,E,27 +2283,2021_tab12_itemded_amount_nz_all,2021,tab12,itemded,amount,Total itemized deductions,nz,filers,all,20,"$10,000,000 or more",111766070000.0,21in12ms.xls,E28,5,E,28 +2284,2021_tab12_itemded_count_nz_all,2021,tab12,itemded,count,Itemized deductions — number of returns,nz,filers,all,1,"All returns, total",14842685.0,21in12ms.xls,D9,4,D,9 +2285,2021_tab12_itemded_count_nz_all,2021,tab12,itemded,count,Itemized deductions — number of returns,nz,filers,all,2,No adjusted gross income (includes deficits),0.0,21in12ms.xls,D10,4,D,10 +2286,2021_tab12_itemded_count_nz_all,2021,tab12,itemded,count,Itemized deductions — number of returns,nz,filers,all,3,"$1 under $5,000",80236.0,21in12ms.xls,D11,4,D,11 +2287,2021_tab12_itemded_count_nz_all,2021,tab12,itemded,count,Itemized deductions — number of returns,nz,filers,all,4,"$5,000 under $10,000",93583.0,21in12ms.xls,D12,4,D,12 +2288,2021_tab12_itemded_count_nz_all,2021,tab12,itemded,count,Itemized deductions — number of returns,nz,filers,all,5,"$10,000 under $15,000",109149.0,21in12ms.xls,D13,4,D,13 +2289,2021_tab12_itemded_count_nz_all,2021,tab12,itemded,count,Itemized deductions — number of returns,nz,filers,all,6,"$15,000 under $20,000",161030.0,21in12ms.xls,D14,4,D,14 +2290,2021_tab12_itemded_count_nz_all,2021,tab12,itemded,count,Itemized deductions — number of returns,nz,filers,all,7,"$20,000 under $25,000",167731.0,21in12ms.xls,D15,4,D,15 +2291,2021_tab12_itemded_count_nz_all,2021,tab12,itemded,count,Itemized deductions — number of returns,nz,filers,all,8,"$25,000 under $30,000",193007.0,21in12ms.xls,D16,4,D,16 +2292,2021_tab12_itemded_count_nz_all,2021,tab12,itemded,count,Itemized deductions — number of returns,nz,filers,all,9,"$30,000 under $40,000",467215.0,21in12ms.xls,D17,4,D,17 +2293,2021_tab12_itemded_count_nz_all,2021,tab12,itemded,count,Itemized deductions — number of returns,nz,filers,all,10,"$40,000 under $50,000",614463.0,21in12ms.xls,D18,4,D,18 +2294,2021_tab12_itemded_count_nz_all,2021,tab12,itemded,count,Itemized deductions — number of returns,nz,filers,all,11,"$50,000 under $75,000",1841364.0,21in12ms.xls,D19,4,D,19 +2295,2021_tab12_itemded_count_nz_all,2021,tab12,itemded,count,Itemized deductions — number of returns,nz,filers,all,12,"$75,000 under $100,000",1985056.0,21in12ms.xls,D20,4,D,20 +2296,2021_tab12_itemded_count_nz_all,2021,tab12,itemded,count,Itemized deductions — number of returns,nz,filers,all,13,"$100,000 under $200,000",4513652.0,21in12ms.xls,D21,4,D,21 +2297,2021_tab12_itemded_count_nz_all,2021,tab12,itemded,count,Itemized deductions — number of returns,nz,filers,all,14,"$200,000 under $500,000",3134769.0,21in12ms.xls,D22,4,D,22 +2298,2021_tab12_itemded_count_nz_all,2021,tab12,itemded,count,Itemized deductions — number of returns,nz,filers,all,15,"$500,000 under $1,000,000",874181.0,21in12ms.xls,D23,4,D,23 +2299,2021_tab12_itemded_count_nz_all,2021,tab12,itemded,count,Itemized deductions — number of returns,nz,filers,all,16,"$1,000,000 under $1,500,000",236902.0,21in12ms.xls,D24,4,D,24 +2300,2021_tab12_itemded_count_nz_all,2021,tab12,itemded,count,Itemized deductions — number of returns,nz,filers,all,17,"$1,500,000 under $2,000,000",107470.0,21in12ms.xls,D25,4,D,25 +2301,2021_tab12_itemded_count_nz_all,2021,tab12,itemded,count,Itemized deductions — number of returns,nz,filers,all,18,"$2,000,000 under $5,000,000",172234.0,21in12ms.xls,D26,4,D,26 +2302,2021_tab12_itemded_count_nz_all,2021,tab12,itemded,count,Itemized deductions — number of returns,nz,filers,all,19,"$5,000,000 under $10,000,000",51030.0,21in12ms.xls,D27,4,D,27 +2303,2021_tab12_itemded_count_nz_all,2021,tab12,itemded,count,Itemized deductions — number of returns,nz,filers,all,20,"$10,000,000 or more",39613.0,21in12ms.xls,D28,4,D,28 +2304,2021_tab12_sd_amount_nz_all,2021,tab12,sd,amount,Standard deduction,nz,filers,all,1,"All returns, total",2506538615000.0,21in12ms.xls,G9,7,G,9 +2305,2021_tab12_sd_amount_nz_all,2021,tab12,sd,amount,Standard deduction,nz,filers,all,2,No adjusted gross income (includes deficits),0.0,21in12ms.xls,G10,7,G,10 +2306,2021_tab12_sd_amount_nz_all,2021,tab12,sd,amount,Standard deduction,nz,filers,all,3,"$1 under $5,000",98120053000.0,21in12ms.xls,G11,7,G,11 +2307,2021_tab12_sd_amount_nz_all,2021,tab12,sd,amount,Standard deduction,nz,filers,all,4,"$5,000 under $10,000",116961807000.0,21in12ms.xls,G12,7,G,12 +2308,2021_tab12_sd_amount_nz_all,2021,tab12,sd,amount,Standard deduction,nz,filers,all,5,"$10,000 under $15,000",148143828000.0,21in12ms.xls,G13,7,G,13 +2309,2021_tab12_sd_amount_nz_all,2021,tab12,sd,amount,Standard deduction,nz,filers,all,6,"$15,000 under $20,000",147511432000.0,21in12ms.xls,G14,7,G,14 +2310,2021_tab12_sd_amount_nz_all,2021,tab12,sd,amount,Standard deduction,nz,filers,all,7,"$20,000 under $25,000",138067676000.0,21in12ms.xls,G15,7,G,15 +2311,2021_tab12_sd_amount_nz_all,2021,tab12,sd,amount,Standard deduction,nz,filers,all,8,"$25,000 under $30,000",138563570000.0,21in12ms.xls,G16,7,G,16 +2312,2021_tab12_sd_amount_nz_all,2021,tab12,sd,amount,Standard deduction,nz,filers,all,9,"$30,000 under $40,000",256213310000.0,21in12ms.xls,G17,7,G,17 +2313,2021_tab12_sd_amount_nz_all,2021,tab12,sd,amount,Standard deduction,nz,filers,all,10,"$40,000 under $50,000",204664807000.0,21in12ms.xls,G18,7,G,18 +2314,2021_tab12_sd_amount_nz_all,2021,tab12,sd,amount,Standard deduction,nz,filers,all,11,"$50,000 under $75,000",376778774000.0,21in12ms.xls,G19,7,G,19 +2315,2021_tab12_sd_amount_nz_all,2021,tab12,sd,amount,Standard deduction,nz,filers,all,12,"$75,000 under $100,000",263917424000.0,21in12ms.xls,G20,7,G,20 +2316,2021_tab12_sd_amount_nz_all,2021,tab12,sd,amount,Standard deduction,nz,filers,all,13,"$100,000 under $200,000",451428959000.0,21in12ms.xls,G21,7,G,21 +2317,2021_tab12_sd_amount_nz_all,2021,tab12,sd,amount,Standard deduction,nz,filers,all,14,"$200,000 under $500,000",141816314000.0,21in12ms.xls,G22,7,G,22 +2318,2021_tab12_sd_amount_nz_all,2021,tab12,sd,amount,Standard deduction,nz,filers,all,15,"$500,000 under $1,000,000",17931209000.0,21in12ms.xls,G23,7,G,23 +2319,2021_tab12_sd_amount_nz_all,2021,tab12,sd,amount,Standard deduction,nz,filers,all,16,"$1,000,000 under $1,500,000",3374835000.0,21in12ms.xls,G24,7,G,24 +2320,2021_tab12_sd_amount_nz_all,2021,tab12,sd,amount,Standard deduction,nz,filers,all,17,"$1,500,000 under $2,000,000",1162935000.0,21in12ms.xls,G25,7,G,25 +2321,2021_tab12_sd_amount_nz_all,2021,tab12,sd,amount,Standard deduction,nz,filers,all,18,"$2,000,000 under $5,000,000",1456808000.0,21in12ms.xls,G26,7,G,26 +2322,2021_tab12_sd_amount_nz_all,2021,tab12,sd,amount,Standard deduction,nz,filers,all,19,"$5,000,000 under $10,000,000",290838000.0,21in12ms.xls,G27,7,G,27 +2323,2021_tab12_sd_amount_nz_all,2021,tab12,sd,amount,Standard deduction,nz,filers,all,20,"$10,000,000 or more",134035000.0,21in12ms.xls,G28,7,G,28 +2324,2021_tab12_sd_count_nz_all,2021,tab12,sd,count,Standard deduction — number of returns,nz,filers,all,1,"All returns, total",141872935.0,21in12ms.xls,F9,6,F,9 +2325,2021_tab12_sd_count_nz_all,2021,tab12,sd,count,Standard deduction — number of returns,nz,filers,all,2,No adjusted gross income (includes deficits),0.0,21in12ms.xls,F10,6,F,10 +2326,2021_tab12_sd_count_nz_all,2021,tab12,sd,count,Standard deduction — number of returns,nz,filers,all,3,"$1 under $5,000",8401693.0,21in12ms.xls,F11,6,F,11 +2327,2021_tab12_sd_count_nz_all,2021,tab12,sd,count,Standard deduction — number of returns,nz,filers,all,4,"$5,000 under $10,000",8851325.0,21in12ms.xls,F12,6,F,12 +2328,2021_tab12_sd_count_nz_all,2021,tab12,sd,count,Standard deduction — number of returns,nz,filers,all,5,"$10,000 under $15,000",9946220.0,21in12ms.xls,F13,6,F,13 +2329,2021_tab12_sd_count_nz_all,2021,tab12,sd,count,Standard deduction — number of returns,nz,filers,all,6,"$15,000 under $20,000",9625550.0,21in12ms.xls,F14,6,F,14 +2330,2021_tab12_sd_count_nz_all,2021,tab12,sd,count,Standard deduction — number of returns,nz,filers,all,7,"$20,000 under $25,000",8695838.0,21in12ms.xls,F15,6,F,15 +2331,2021_tab12_sd_count_nz_all,2021,tab12,sd,count,Standard deduction — number of returns,nz,filers,all,8,"$25,000 under $30,000",8593575.0,21in12ms.xls,F16,6,F,16 +2332,2021_tab12_sd_count_nz_all,2021,tab12,sd,count,Standard deduction — number of returns,nz,filers,all,9,"$30,000 under $40,000",15654845.0,21in12ms.xls,F17,6,F,17 +2333,2021_tab12_sd_count_nz_all,2021,tab12,sd,count,Standard deduction — number of returns,nz,filers,all,10,"$40,000 under $50,000",12167871.0,21in12ms.xls,F18,6,F,18 +2334,2021_tab12_sd_count_nz_all,2021,tab12,sd,count,Standard deduction — number of returns,nz,filers,all,11,"$50,000 under $75,000",20810563.0,21in12ms.xls,F19,6,F,19 +2335,2021_tab12_sd_count_nz_all,2021,tab12,sd,count,Standard deduction — number of returns,nz,filers,all,12,"$75,000 under $100,000",12672652.0,21in12ms.xls,F20,6,F,20 +2336,2021_tab12_sd_count_nz_all,2021,tab12,sd,count,Standard deduction — number of returns,nz,filers,all,13,"$100,000 under $200,000",19530803.0,21in12ms.xls,F21,6,F,21 +2337,2021_tab12_sd_count_nz_all,2021,tab12,sd,count,Standard deduction — number of returns,nz,filers,all,14,"$200,000 under $500,000",5910788.0,21in12ms.xls,F22,6,F,22 +2338,2021_tab12_sd_count_nz_all,2021,tab12,sd,count,Standard deduction — number of returns,nz,filers,all,15,"$500,000 under $1,000,000",742962.0,21in12ms.xls,F23,6,F,23 +2339,2021_tab12_sd_count_nz_all,2021,tab12,sd,count,Standard deduction — number of returns,nz,filers,all,16,"$1,000,000 under $1,500,000",139954.0,21in12ms.xls,F24,6,F,24 +2340,2021_tab12_sd_count_nz_all,2021,tab12,sd,count,Standard deduction — number of returns,nz,filers,all,17,"$1,500,000 under $2,000,000",48550.0,21in12ms.xls,F25,6,F,25 +2341,2021_tab12_sd_count_nz_all,2021,tab12,sd,count,Standard deduction — number of returns,nz,filers,all,18,"$2,000,000 under $5,000,000",61583.0,21in12ms.xls,F26,6,F,26 +2342,2021_tab12_sd_count_nz_all,2021,tab12,sd,count,Standard deduction — number of returns,nz,filers,all,19,"$5,000,000 under $10,000,000",12376.0,21in12ms.xls,F27,6,F,27 +2343,2021_tab12_sd_count_nz_all,2021,tab12,sd,count,Standard deduction — number of returns,nz,filers,all,20,"$10,000,000 or more",5789.0,21in12ms.xls,F28,6,F,28 +2344,2021_tab12_taxac_amount_nz_all,2021,tab12,taxac,amount,Income tax after credits,nz,filers,all,1,"All returns, total",2136650742000.0,21in12ms.xls,K9,11,K,9 +2345,2021_tab12_taxac_amount_nz_all,2021,tab12,taxac,amount,Income tax after credits,nz,filers,all,2,No adjusted gross income (includes deficits),186617000.0,21in12ms.xls,K10,11,K,10 +2346,2021_tab12_taxac_amount_nz_all,2021,tab12,taxac,amount,Income tax after credits,nz,filers,all,3,"$1 under $5,000",73072000.0,21in12ms.xls,K11,11,K,11 +2347,2021_tab12_taxac_amount_nz_all,2021,tab12,taxac,amount,Income tax after credits,nz,filers,all,4,"$5,000 under $10,000",78223000.0,21in12ms.xls,K12,11,K,12 +2348,2021_tab12_taxac_amount_nz_all,2021,tab12,taxac,amount,Income tax after credits,nz,filers,all,5,"$10,000 under $15,000",211113000.0,21in12ms.xls,K13,11,K,13 +2349,2021_tab12_taxac_amount_nz_all,2021,tab12,taxac,amount,Income tax after credits,nz,filers,all,6,"$15,000 under $20,000",1247479000.0,21in12ms.xls,K14,11,K,14 +2350,2021_tab12_taxac_amount_nz_all,2021,tab12,taxac,amount,Income tax after credits,nz,filers,all,7,"$20,000 under $25,000",4047553000.0,21in12ms.xls,K15,11,K,15 +2351,2021_tab12_taxac_amount_nz_all,2021,tab12,taxac,amount,Income tax after credits,nz,filers,all,8,"$25,000 under $30,000",6837013000.0,21in12ms.xls,K16,11,K,16 +2352,2021_tab12_taxac_amount_nz_all,2021,tab12,taxac,amount,Income tax after credits,nz,filers,all,9,"$30,000 under $40,000",21563554000.0,21in12ms.xls,K17,11,K,17 +2353,2021_tab12_taxac_amount_nz_all,2021,tab12,taxac,amount,Income tax after credits,nz,filers,all,10,"$40,000 under $50,000",28872618000.0,21in12ms.xls,K18,11,K,18 +2354,2021_tab12_taxac_amount_nz_all,2021,tab12,taxac,amount,Income tax after credits,nz,filers,all,11,"$50,000 under $75,000",93196258000.0,21in12ms.xls,K19,11,K,19 +2355,2021_tab12_taxac_amount_nz_all,2021,tab12,taxac,amount,Income tax after credits,nz,filers,all,12,"$75,000 under $100,000",105625288000.0,21in12ms.xls,K20,11,K,20 +2356,2021_tab12_taxac_amount_nz_all,2021,tab12,taxac,amount,Income tax after credits,nz,filers,all,13,"$100,000 under $200,000",365139832000.0,21in12ms.xls,K21,11,K,21 +2357,2021_tab12_taxac_amount_nz_all,2021,tab12,taxac,amount,Income tax after credits,nz,filers,all,14,"$200,000 under $500,000",437089172000.0,21in12ms.xls,K22,11,K,22 +2358,2021_tab12_taxac_amount_nz_all,2021,tab12,taxac,amount,Income tax after credits,nz,filers,all,15,"$500,000 under $1,000,000",244827113000.0,21in12ms.xls,K23,11,K,23 +2359,2021_tab12_taxac_amount_nz_all,2021,tab12,taxac,amount,Income tax after credits,nz,filers,all,16,"$1,000,000 under $1,500,000",115008024000.0,21in12ms.xls,K24,11,K,24 +2360,2021_tab12_taxac_amount_nz_all,2021,tab12,taxac,amount,Income tax after credits,nz,filers,all,17,"$1,500,000 under $2,000,000",70041765000.0,21in12ms.xls,K25,11,K,25 +2361,2021_tab12_taxac_amount_nz_all,2021,tab12,taxac,amount,Income tax after credits,nz,filers,all,18,"$2,000,000 under $5,000,000",184436241000.0,21in12ms.xls,K26,11,K,26 +2362,2021_tab12_taxac_amount_nz_all,2021,tab12,taxac,amount,Income tax after credits,nz,filers,all,19,"$5,000,000 under $10,000,000",112972811000.0,21in12ms.xls,K27,11,K,27 +2363,2021_tab12_taxac_amount_nz_all,2021,tab12,taxac,amount,Income tax after credits,nz,filers,all,20,"$10,000,000 or more",345196995000.0,21in12ms.xls,K28,11,K,28 +2364,2021_tab12_taxac_count_nz_all,2021,tab12,taxac,count,Income tax after credits — number of returns,nz,filers,all,1,"All returns, total",104549808.0,21in12ms.xls,J9,10,J,9 +2365,2021_tab12_taxac_count_nz_all,2021,tab12,taxac,count,Income tax after credits — number of returns,nz,filers,all,2,No adjusted gross income (includes deficits),4361.0,21in12ms.xls,J10,10,J,10 +2366,2021_tab12_taxac_count_nz_all,2021,tab12,taxac,count,Income tax after credits — number of returns,nz,filers,all,3,"$1 under $5,000",142544.0,21in12ms.xls,J11,10,J,11 +2367,2021_tab12_taxac_count_nz_all,2021,tab12,taxac,count,Income tax after credits — number of returns,nz,filers,all,4,"$5,000 under $10,000",184757.0,21in12ms.xls,J12,10,J,12 +2368,2021_tab12_taxac_count_nz_all,2021,tab12,taxac,count,Income tax after credits — number of returns,nz,filers,all,5,"$10,000 under $15,000",1055682.0,21in12ms.xls,J13,10,J,13 +2369,2021_tab12_taxac_count_nz_all,2021,tab12,taxac,count,Income tax after credits — number of returns,nz,filers,all,6,"$15,000 under $20,000",3224915.0,21in12ms.xls,J14,10,J,14 +2370,2021_tab12_taxac_count_nz_all,2021,tab12,taxac,count,Income tax after credits — number of returns,nz,filers,all,7,"$20,000 under $25,000",4511505.0,21in12ms.xls,J15,10,J,15 +2371,2021_tab12_taxac_count_nz_all,2021,tab12,taxac,count,Income tax after credits — number of returns,nz,filers,all,8,"$25,000 under $30,000",5152093.0,21in12ms.xls,J16,10,J,16 +2372,2021_tab12_taxac_count_nz_all,2021,tab12,taxac,count,Income tax after credits — number of returns,nz,filers,all,9,"$30,000 under $40,000",10941846.0,21in12ms.xls,J17,10,J,17 +2373,2021_tab12_taxac_count_nz_all,2021,tab12,taxac,count,Income tax after credits — number of returns,nz,filers,all,10,"$40,000 under $50,000",10178852.0,21in12ms.xls,J18,10,J,18 +2374,2021_tab12_taxac_count_nz_all,2021,tab12,taxac,count,Income tax after credits — number of returns,nz,filers,all,11,"$50,000 under $75,000",20079918.0,21in12ms.xls,J19,10,J,19 +2375,2021_tab12_taxac_count_nz_all,2021,tab12,taxac,count,Income tax after credits — number of returns,nz,filers,all,12,"$75,000 under $100,000",13899298.0,21in12ms.xls,J20,10,J,20 +2376,2021_tab12_taxac_count_nz_all,2021,tab12,taxac,count,Income tax after credits — number of returns,nz,filers,all,13,"$100,000 under $200,000",23678030.0,21in12ms.xls,J21,10,J,21 +2377,2021_tab12_taxac_count_nz_all,2021,tab12,taxac,count,Income tax after credits — number of returns,nz,filers,all,14,"$200,000 under $500,000",9011428.0,21in12ms.xls,J22,10,J,22 +2378,2021_tab12_taxac_count_nz_all,2021,tab12,taxac,count,Income tax after credits — number of returns,nz,filers,all,15,"$500,000 under $1,000,000",1612396.0,21in12ms.xls,J23,10,J,23 +2379,2021_tab12_taxac_count_nz_all,2021,tab12,taxac,count,Income tax after credits — number of returns,nz,filers,all,16,"$1,000,000 under $1,500,000",375593.0,21in12ms.xls,J24,10,J,24 +2380,2021_tab12_taxac_count_nz_all,2021,tab12,taxac,count,Income tax after credits — number of returns,nz,filers,all,17,"$1,500,000 under $2,000,000",155353.0,21in12ms.xls,J25,10,J,25 +2381,2021_tab12_taxac_count_nz_all,2021,tab12,taxac,count,Income tax after credits — number of returns,nz,filers,all,18,"$2,000,000 under $5,000,000",232933.0,21in12ms.xls,J26,10,J,26 +2382,2021_tab12_taxac_count_nz_all,2021,tab12,taxac,count,Income tax after credits — number of returns,nz,filers,all,19,"$5,000,000 under $10,000,000",63155.0,21in12ms.xls,J27,10,J,27 +2383,2021_tab12_taxac_count_nz_all,2021,tab12,taxac,count,Income tax after credits — number of returns,nz,filers,all,20,"$10,000,000 or more",45149.0,21in12ms.xls,J28,10,J,28 +2384,2021_tab12_ti_amount_nz_all,2021,tab12,ti,amount,Taxable income,nz,filers,all,1,"All returns, total",11767185281000.0,21in12ms.xls,I9,9,I,9 +2385,2021_tab12_ti_amount_nz_all,2021,tab12,ti,amount,Taxable income,nz,filers,all,2,No adjusted gross income (includes deficits),0.0,21in12ms.xls,I10,9,I,10 +2386,2021_tab12_ti_amount_nz_all,2021,tab12,ti,amount,Taxable income,nz,filers,all,3,"$1 under $5,000",295328000.0,21in12ms.xls,I11,9,I,11 +2387,2021_tab12_ti_amount_nz_all,2021,tab12,ti,amount,Taxable income,nz,filers,all,4,"$5,000 under $10,000",842819000.0,21in12ms.xls,I12,9,I,12 +2388,2021_tab12_ti_amount_nz_all,2021,tab12,ti,amount,Taxable income,nz,filers,all,5,"$10,000 under $15,000",4468515000.0,21in12ms.xls,I13,9,I,13 +2389,2021_tab12_ti_amount_nz_all,2021,tab12,ti,amount,Taxable income,nz,filers,all,6,"$15,000 under $20,000",31348526000.0,21in12ms.xls,I14,9,I,14 +2390,2021_tab12_ti_amount_nz_all,2021,tab12,ti,amount,Taxable income,nz,filers,all,7,"$20,000 under $25,000",61206997000.0,21in12ms.xls,I15,9,I,15 +2391,2021_tab12_ti_amount_nz_all,2021,tab12,ti,amount,Taxable income,nz,filers,all,8,"$25,000 under $30,000",97212333000.0,21in12ms.xls,I16,9,I,16 +2392,2021_tab12_ti_amount_nz_all,2021,tab12,ti,amount,Taxable income,nz,filers,all,9,"$30,000 under $40,000",289923966000.0,21in12ms.xls,I17,9,I,17 +2393,2021_tab12_ti_amount_nz_all,2021,tab12,ti,amount,Taxable income,nz,filers,all,10,"$40,000 under $50,000",348974613000.0,21in12ms.xls,I18,9,I,18 +2394,2021_tab12_ti_amount_nz_all,2021,tab12,ti,amount,Taxable income,nz,filers,all,11,"$50,000 under $75,000",957673164000.0,21in12ms.xls,I19,9,I,19 +2395,2021_tab12_ti_amount_nz_all,2021,tab12,ti,amount,Taxable income,nz,filers,all,12,"$75,000 under $100,000",943012644000.0,21in12ms.xls,I20,9,I,20 +2396,2021_tab12_ti_amount_nz_all,2021,tab12,ti,amount,Taxable income,nz,filers,all,13,"$100,000 under $200,000",2672516594000.0,21in12ms.xls,I21,9,I,21 +2397,2021_tab12_ti_amount_nz_all,2021,tab12,ti,amount,Taxable income,nz,filers,all,14,"$200,000 under $500,000",2311714703000.0,21in12ms.xls,I22,9,I,22 +2398,2021_tab12_ti_amount_nz_all,2021,tab12,ti,amount,Taxable income,nz,filers,all,15,"$500,000 under $1,000,000",1005606850000.0,21in12ms.xls,I23,9,I,23 +2399,2021_tab12_ti_amount_nz_all,2021,tab12,ti,amount,Taxable income,nz,filers,all,16,"$1,000,000 under $1,500,000",419754109000.0,21in12ms.xls,I24,9,I,24 +2400,2021_tab12_ti_amount_nz_all,2021,tab12,ti,amount,Taxable income,nz,filers,all,17,"$1,500,000 under $2,000,000",247322898000.0,21in12ms.xls,I25,9,I,25 +2401,2021_tab12_ti_amount_nz_all,2021,tab12,ti,amount,Taxable income,nz,filers,all,18,"$2,000,000 under $5,000,000",642731428000.0,21in12ms.xls,I26,9,I,26 +2402,2021_tab12_ti_amount_nz_all,2021,tab12,ti,amount,Taxable income,nz,filers,all,19,"$5,000,000 under $10,000,000",400742701000.0,21in12ms.xls,I27,9,I,27 +2403,2021_tab12_ti_amount_nz_all,2021,tab12,ti,amount,Taxable income,nz,filers,all,20,"$10,000,000 or more",1331837093000.0,21in12ms.xls,I28,9,I,28 +2404,2021_tab12_ti_count_nz_all,2021,tab12,ti,count,Taxable income — number of returns,nz,filers,all,1,"All returns, total",128519569.0,21in12ms.xls,H9,8,H,9 +2405,2021_tab12_ti_count_nz_all,2021,tab12,ti,count,Taxable income — number of returns,nz,filers,all,2,No adjusted gross income (includes deficits),0.0,21in12ms.xls,H10,8,H,10 +2406,2021_tab12_ti_count_nz_all,2021,tab12,ti,count,Taxable income — number of returns,nz,filers,all,3,"$1 under $5,000",229950.0,21in12ms.xls,H11,8,H,11 +2407,2021_tab12_ti_count_nz_all,2021,tab12,ti,count,Taxable income — number of returns,nz,filers,all,4,"$5,000 under $10,000",256332.0,21in12ms.xls,H12,8,H,12 +2408,2021_tab12_ti_count_nz_all,2021,tab12,ti,count,Taxable income — number of returns,nz,filers,all,5,"$10,000 under $15,000",3274058.0,21in12ms.xls,H13,8,H,13 +2409,2021_tab12_ti_count_nz_all,2021,tab12,ti,count,Taxable income — number of returns,nz,filers,all,6,"$15,000 under $20,000",7213222.0,21in12ms.xls,H14,8,H,14 +2410,2021_tab12_ti_count_nz_all,2021,tab12,ti,count,Taxable income — number of returns,nz,filers,all,7,"$20,000 under $25,000",7565336.0,21in12ms.xls,H15,8,H,15 +2411,2021_tab12_ti_count_nz_all,2021,tab12,ti,count,Taxable income — number of returns,nz,filers,all,8,"$25,000 under $30,000",8419122.0,21in12ms.xls,H16,8,H,16 +2412,2021_tab12_ti_count_nz_all,2021,tab12,ti,count,Taxable income — number of returns,nz,filers,all,9,"$30,000 under $40,000",16053345.0,21in12ms.xls,H17,8,H,17 +2413,2021_tab12_ti_count_nz_all,2021,tab12,ti,count,Taxable income — number of returns,nz,filers,all,10,"$40,000 under $50,000",12742030.0,21in12ms.xls,H18,8,H,18 +2414,2021_tab12_ti_count_nz_all,2021,tab12,ti,count,Taxable income — number of returns,nz,filers,all,11,"$50,000 under $75,000",22580599.0,21in12ms.xls,H19,8,H,19 +2415,2021_tab12_ti_count_nz_all,2021,tab12,ti,count,Taxable income — number of returns,nz,filers,all,12,"$75,000 under $100,000",14628527.0,21in12ms.xls,H20,8,H,20 +2416,2021_tab12_ti_count_nz_all,2021,tab12,ti,count,Taxable income — number of returns,nz,filers,all,13,"$100,000 under $200,000",24025794.0,21in12ms.xls,H21,8,H,21 +2417,2021_tab12_ti_count_nz_all,2021,tab12,ti,count,Taxable income — number of returns,nz,filers,all,14,"$200,000 under $500,000",9040733.0,21in12ms.xls,H22,8,H,22 +2418,2021_tab12_ti_count_nz_all,2021,tab12,ti,count,Taxable income — number of returns,nz,filers,all,15,"$500,000 under $1,000,000",1616070.0,21in12ms.xls,H23,8,H,23 +2419,2021_tab12_ti_count_nz_all,2021,tab12,ti,count,Taxable income — number of returns,nz,filers,all,16,"$1,000,000 under $1,500,000",376559.0,21in12ms.xls,H24,8,H,24 +2420,2021_tab12_ti_count_nz_all,2021,tab12,ti,count,Taxable income — number of returns,nz,filers,all,17,"$1,500,000 under $2,000,000",155853.0,21in12ms.xls,H25,8,H,25 +2421,2021_tab12_ti_count_nz_all,2021,tab12,ti,count,Taxable income — number of returns,nz,filers,all,18,"$2,000,000 under $5,000,000",233500.0,21in12ms.xls,H26,8,H,26 +2422,2021_tab12_ti_count_nz_all,2021,tab12,ti,count,Taxable income — number of returns,nz,filers,all,19,"$5,000,000 under $10,000,000",63280.0,21in12ms.xls,H27,8,H,27 +2423,2021_tab12_ti_count_nz_all,2021,tab12,ti,count,Taxable income — number of returns,nz,filers,all,20,"$10,000,000 or more",45261.0,21in12ms.xls,H28,8,H,28 +2424,2021_tab12_tottax_amount_nz_all,2021,tab12,tottax,amount,Total tax,nz,filers,all,1,"All returns, total",2196348205000.0,21in12ms.xls,M9,13,M,9 +2425,2021_tab12_tottax_amount_nz_all,2021,tab12,tottax,amount,Total tax,nz,filers,all,2,No adjusted gross income (includes deficits),186881000.0,21in12ms.xls,M10,13,M,10 +2426,2021_tab12_tottax_amount_nz_all,2021,tab12,tottax,amount,Total tax,nz,filers,all,3,"$1 under $5,000",73079000.0,21in12ms.xls,M11,13,M,11 +2427,2021_tab12_tottax_amount_nz_all,2021,tab12,tottax,amount,Total tax,nz,filers,all,4,"$5,000 under $10,000",78223000.0,21in12ms.xls,M12,13,M,12 +2428,2021_tab12_tottax_amount_nz_all,2021,tab12,tottax,amount,Total tax,nz,filers,all,5,"$10,000 under $15,000",211113000.0,21in12ms.xls,M13,13,M,13 +2429,2021_tab12_tottax_amount_nz_all,2021,tab12,tottax,amount,Total tax,nz,filers,all,6,"$15,000 under $20,000",1247485000.0,21in12ms.xls,M14,13,M,14 +2430,2021_tab12_tottax_amount_nz_all,2021,tab12,tottax,amount,Total tax,nz,filers,all,7,"$20,000 under $25,000",4047630000.0,21in12ms.xls,M15,13,M,15 +2431,2021_tab12_tottax_amount_nz_all,2021,tab12,tottax,amount,Total tax,nz,filers,all,8,"$25,000 under $30,000",6837046000.0,21in12ms.xls,M16,13,M,16 +2432,2021_tab12_tottax_amount_nz_all,2021,tab12,tottax,amount,Total tax,nz,filers,all,9,"$30,000 under $40,000",21563813000.0,21in12ms.xls,M17,13,M,17 +2433,2021_tab12_tottax_amount_nz_all,2021,tab12,tottax,amount,Total tax,nz,filers,all,10,"$40,000 under $50,000",28872871000.0,21in12ms.xls,M18,13,M,18 +2434,2021_tab12_tottax_amount_nz_all,2021,tab12,tottax,amount,Total tax,nz,filers,all,11,"$50,000 under $75,000",93197007000.0,21in12ms.xls,M19,13,M,19 +2435,2021_tab12_tottax_amount_nz_all,2021,tab12,tottax,amount,Total tax,nz,filers,all,12,"$75,000 under $100,000",105626193000.0,21in12ms.xls,M20,13,M,20 +2436,2021_tab12_tottax_amount_nz_all,2021,tab12,tottax,amount,Total tax,nz,filers,all,13,"$100,000 under $200,000",365196521000.0,21in12ms.xls,M21,13,M,21 +2437,2021_tab12_tottax_amount_nz_all,2021,tab12,tottax,amount,Total tax,nz,filers,all,14,"$200,000 under $500,000",443362161000.0,21in12ms.xls,M22,13,M,22 +2438,2021_tab12_tottax_amount_nz_all,2021,tab12,tottax,amount,Total tax,nz,filers,all,15,"$500,000 under $1,000,000",252558323000.0,21in12ms.xls,M23,13,M,23 +2439,2021_tab12_tottax_amount_nz_all,2021,tab12,tottax,amount,Total tax,nz,filers,all,16,"$1,000,000 under $1,500,000",119130275000.0,21in12ms.xls,M24,13,M,24 +2440,2021_tab12_tottax_amount_nz_all,2021,tab12,tottax,amount,Total tax,nz,filers,all,17,"$1,500,000 under $2,000,000",72721172000.0,21in12ms.xls,M25,13,M,25 +2441,2021_tab12_tottax_amount_nz_all,2021,tab12,tottax,amount,Total tax,nz,filers,all,18,"$2,000,000 under $5,000,000",192544953000.0,21in12ms.xls,M26,13,M,26 +2442,2021_tab12_tottax_amount_nz_all,2021,tab12,tottax,amount,Total tax,nz,filers,all,19,"$5,000,000 under $10,000,000",118711991000.0,21in12ms.xls,M27,13,M,27 +2443,2021_tab12_tottax_amount_nz_all,2021,tab12,tottax,amount,Total tax,nz,filers,all,20,"$10,000,000 or more",370181469000.0,21in12ms.xls,M28,13,M,28 +2444,2021_tab12_tottax_count_nz_all,2021,tab12,tottax,count,Total tax — number of returns,nz,filers,all,1,"All returns, total",104573768.0,21in12ms.xls,L9,12,L,9 +2445,2021_tab12_tottax_count_nz_all,2021,tab12,tottax,count,Total tax — number of returns,nz,filers,all,2,No adjusted gross income (includes deficits),4367.0,21in12ms.xls,L10,12,L,10 +2446,2021_tab12_tottax_count_nz_all,2021,tab12,tottax,count,Total tax — number of returns,nz,filers,all,3,"$1 under $5,000",142593.0,21in12ms.xls,L11,12,L,11 +2447,2021_tab12_tottax_count_nz_all,2021,tab12,tottax,count,Total tax — number of returns,nz,filers,all,4,"$5,000 under $10,000",184757.0,21in12ms.xls,L12,12,L,12 +2448,2021_tab12_tottax_count_nz_all,2021,tab12,tottax,count,Total tax — number of returns,nz,filers,all,5,"$10,000 under $15,000",1055682.0,21in12ms.xls,L13,12,L,13 +2449,2021_tab12_tottax_count_nz_all,2021,tab12,tottax,count,Total tax — number of returns,nz,filers,all,6,"$15,000 under $20,000",3224975.0,21in12ms.xls,L14,12,L,14 +2450,2021_tab12_tottax_count_nz_all,2021,tab12,tottax,count,Total tax — number of returns,nz,filers,all,7,"$20,000 under $25,000",4511653.0,21in12ms.xls,L15,12,L,15 +2451,2021_tab12_tottax_count_nz_all,2021,tab12,tottax,count,Total tax — number of returns,nz,filers,all,8,"$25,000 under $30,000",5152142.0,21in12ms.xls,L16,12,L,16 +2452,2021_tab12_tottax_count_nz_all,2021,tab12,tottax,count,Total tax — number of returns,nz,filers,all,9,"$30,000 under $40,000",10942006.0,21in12ms.xls,L17,12,L,17 +2453,2021_tab12_tottax_count_nz_all,2021,tab12,tottax,count,Total tax — number of returns,nz,filers,all,10,"$40,000 under $50,000",10179035.0,21in12ms.xls,L18,12,L,18 +2454,2021_tab12_tottax_count_nz_all,2021,tab12,tottax,count,Total tax — number of returns,nz,filers,all,11,"$50,000 under $75,000",20080197.0,21in12ms.xls,L19,12,L,19 +2455,2021_tab12_tottax_count_nz_all,2021,tab12,tottax,count,Total tax — number of returns,nz,filers,all,12,"$75,000 under $100,000",13899732.0,21in12ms.xls,L20,12,L,20 +2456,2021_tab12_tottax_count_nz_all,2021,tab12,tottax,count,Total tax — number of returns,nz,filers,all,13,"$100,000 under $200,000",23680641.0,21in12ms.xls,L21,12,L,21 +2457,2021_tab12_tottax_count_nz_all,2021,tab12,tottax,count,Total tax — number of returns,nz,filers,all,14,"$200,000 under $500,000",9025608.0,21in12ms.xls,L22,12,L,22 +2458,2021_tab12_tottax_count_nz_all,2021,tab12,tottax,count,Total tax — number of returns,nz,filers,all,15,"$500,000 under $1,000,000",1615603.0,21in12ms.xls,L23,12,L,23 +2459,2021_tab12_tottax_count_nz_all,2021,tab12,tottax,count,Total tax — number of returns,nz,filers,all,16,"$1,000,000 under $1,500,000",376495.0,21in12ms.xls,L24,12,L,24 +2460,2021_tab12_tottax_count_nz_all,2021,tab12,tottax,count,Total tax — number of returns,nz,filers,all,17,"$1,500,000 under $2,000,000",155851.0,21in12ms.xls,L25,12,L,25 +2461,2021_tab12_tottax_count_nz_all,2021,tab12,tottax,count,Total tax — number of returns,nz,filers,all,18,"$2,000,000 under $5,000,000",233680.0,21in12ms.xls,L26,12,L,26 +2462,2021_tab12_tottax_count_nz_all,2021,tab12,tottax,count,Total tax — number of returns,nz,filers,all,19,"$5,000,000 under $10,000,000",63373.0,21in12ms.xls,L27,12,L,27 +2463,2021_tab12_tottax_count_nz_all,2021,tab12,tottax,count,Total tax — number of returns,nz,filers,all,20,"$10,000,000 or more",45376.0,21in12ms.xls,L28,12,L,28 +2464,2021_tab14_agi_amount_all_all,2021,tab14,agi,amount,Adjusted gross income,all,filers,all,1,"All returns, total",14795614070000.0,21in14ar.xls,C9,3,C,9 +2465,2021_tab14_agi_amount_all_all,2021,tab14,agi,amount,Adjusted gross income,all,filers,all,2,No adjusted gross income,-171836364000.0,21in14ar.xls,C10,3,C,10 +2466,2021_tab14_agi_amount_all_all,2021,tab14,agi,amount,Adjusted gross income,all,filers,all,3,"$1 under $5,000",19987243000.0,21in14ar.xls,C11,3,C,11 +2467,2021_tab14_agi_amount_all_all,2021,tab14,agi,amount,Adjusted gross income,all,filers,all,4,"$5,000 under $10,000",67651359000.0,21in14ar.xls,C12,3,C,12 +2468,2021_tab14_agi_amount_all_all,2021,tab14,agi,amount,Adjusted gross income,all,filers,all,5,"$10,000 under $15,000",125912056000.0,21in14ar.xls,C13,3,C,13 +2469,2021_tab14_agi_amount_all_all,2021,tab14,agi,amount,Adjusted gross income,all,filers,all,6,"$15,000 under $20,000",170836129000.0,21in14ar.xls,C14,3,C,14 +2470,2021_tab14_agi_amount_all_all,2021,tab14,agi,amount,Adjusted gross income,all,filers,all,7,"$20,000 under $25,000",199508960000.0,21in14ar.xls,C15,3,C,15 +2471,2021_tab14_agi_amount_all_all,2021,tab14,agi,amount,Adjusted gross income,all,filers,all,8,"$25,000 under $30,000",241347179000.0,21in14ar.xls,C16,3,C,16 +2472,2021_tab14_agi_amount_all_all,2021,tab14,agi,amount,Adjusted gross income,all,filers,all,9,"$30,000 under $40,000",561386434000.0,21in14ar.xls,C17,3,C,17 +2473,2021_tab14_agi_amount_all_all,2021,tab14,agi,amount,Adjusted gross income,all,filers,all,10,"$40,000 under $50,000",573155378000.0,21in14ar.xls,C18,3,C,18 +2474,2021_tab14_agi_amount_all_all,2021,tab14,agi,amount,Adjusted gross income,all,filers,all,11,"$50,000 under $75,000",1392395599000.0,21in14ar.xls,C19,3,C,19 +2475,2021_tab14_agi_amount_all_all,2021,tab14,agi,amount,Adjusted gross income,all,filers,all,12,"$75,000 under $100,000",1271699391000.0,21in14ar.xls,C20,3,C,20 +2476,2021_tab14_agi_amount_all_all,2021,tab14,agi,amount,Adjusted gross income,all,filers,all,13,"$100,000 under $200,000",3297058075000.0,21in14ar.xls,C21,3,C,21 +2477,2021_tab14_agi_amount_all_all,2021,tab14,agi,amount,Adjusted gross income,all,filers,all,14,"$200,000 under $500,000",2619188471000.0,21in14ar.xls,C22,3,C,22 +2478,2021_tab14_agi_amount_all_all,2021,tab14,agi,amount,Adjusted gross income,all,filers,all,15,"$500,000 under $1,000,000",1092599034000.0,21in14ar.xls,C23,3,C,23 +2479,2021_tab14_agi_amount_all_all,2021,tab14,agi,amount,Adjusted gross income,all,filers,all,16,"$1,000,000 under $1,500,000",454552875000.0,21in14ar.xls,C24,3,C,24 +2480,2021_tab14_agi_amount_all_all,2021,tab14,agi,amount,Adjusted gross income,all,filers,all,17,"$1,500,000 under $2,000,000",268278123000.0,21in14ar.xls,C25,3,C,25 +2481,2021_tab14_agi_amount_all_all,2021,tab14,agi,amount,Adjusted gross income,all,filers,all,18,"$2,000,000 under $5,000,000",698923219000.0,21in14ar.xls,C26,3,C,26 +2482,2021_tab14_agi_amount_all_all,2021,tab14,agi,amount,Adjusted gross income,all,filers,all,19,"$5,000,000 under $10,000,000",435242550000.0,21in14ar.xls,C27,3,C,27 +2483,2021_tab14_agi_amount_all_all,2021,tab14,agi,amount,Adjusted gross income,all,filers,all,20,"$10,000,000 or more",1477728359000.0,21in14ar.xls,C28,3,C,28 +2484,2021_tab14_agi_count_all_all,2021,tab14,agi,count,Number of returns,all,filers,all,1,"All returns, total",160824340.0,21in14ar.xls,B9,2,B,9 +2485,2021_tab14_agi_count_all_all,2021,tab14,agi,count,Number of returns,all,filers,all,2,No adjusted gross income,4098522.0,21in14ar.xls,B10,2,B,10 +2486,2021_tab14_agi_count_all_all,2021,tab14,agi,count,Number of returns,all,filers,all,3,"$1 under $5,000",8487025.0,21in14ar.xls,B11,2,B,11 +2487,2021_tab14_agi_count_all_all,2021,tab14,agi,count,Number of returns,all,filers,all,4,"$5,000 under $10,000",8944908.0,21in14ar.xls,B12,2,B,12 +2488,2021_tab14_agi_count_all_all,2021,tab14,agi,count,Number of returns,all,filers,all,5,"$10,000 under $15,000",10056377.0,21in14ar.xls,B13,2,B,13 +2489,2021_tab14_agi_count_all_all,2021,tab14,agi,count,Number of returns,all,filers,all,6,"$15,000 under $20,000",9786580.0,21in14ar.xls,B14,2,B,14 +2490,2021_tab14_agi_count_all_all,2021,tab14,agi,count,Number of returns,all,filers,all,7,"$20,000 under $25,000",8863570.0,21in14ar.xls,B15,2,B,15 +2491,2021_tab14_agi_count_all_all,2021,tab14,agi,count,Number of returns,all,filers,all,8,"$25,000 under $30,000",8787576.0,21in14ar.xls,B16,2,B,16 +2492,2021_tab14_agi_count_all_all,2021,tab14,agi,count,Number of returns,all,filers,all,9,"$30,000 under $40,000",16123068.0,21in14ar.xls,B17,2,B,17 +2493,2021_tab14_agi_count_all_all,2021,tab14,agi,count,Number of returns,all,filers,all,10,"$40,000 under $50,000",12782334.0,21in14ar.xls,B18,2,B,18 +2494,2021_tab14_agi_count_all_all,2021,tab14,agi,count,Number of returns,all,filers,all,11,"$50,000 under $75,000",22653934.0,21in14ar.xls,B19,2,B,19 +2495,2021_tab14_agi_count_all_all,2021,tab14,agi,count,Number of returns,all,filers,all,12,"$75,000 under $100,000",14657726.0,21in14ar.xls,B20,2,B,20 +2496,2021_tab14_agi_count_all_all,2021,tab14,agi,count,Number of returns,all,filers,all,13,"$100,000 under $200,000",24044481.0,21in14ar.xls,B21,2,B,21 +2497,2021_tab14_agi_count_all_all,2021,tab14,agi,count,Number of returns,all,filers,all,14,"$200,000 under $500,000",9045567.0,21in14ar.xls,B22,2,B,22 +2498,2021_tab14_agi_count_all_all,2021,tab14,agi,count,Number of returns,all,filers,all,15,"$500,000 under $1,000,000",1617144.0,21in14ar.xls,B23,2,B,23 +2499,2021_tab14_agi_count_all_all,2021,tab14,agi,count,Number of returns,all,filers,all,16,"$1,000,000 under $1,500,000",376859.0,21in14ar.xls,B24,2,B,24 +2500,2021_tab14_agi_count_all_all,2021,tab14,agi,count,Number of returns,all,filers,all,17,"$1,500,000 under $2,000,000",156020.0,21in14ar.xls,B25,2,B,25 +2501,2021_tab14_agi_count_all_all,2021,tab14,agi,count,Number of returns,all,filers,all,18,"$2,000,000 under $5,000,000",233838.0,21in14ar.xls,B26,2,B,26 +2502,2021_tab14_agi_count_all_all,2021,tab14,agi,count,Number of returns,all,filers,all,19,"$5,000,000 under $10,000,000",63406.0,21in14ar.xls,B27,2,B,27 +2503,2021_tab14_agi_count_all_all,2021,tab14,agi,count,Number of returns,all,filers,all,20,"$10,000,000 or more",45404.0,21in14ar.xls,B28,2,B,28 +2504,2021_tab14_amt_amount_nz_all,2021,tab14,amt,amount,Alternative minimum tax,nz,filers,all,1,"All returns, total",5598598000.0,21in14ar.xls,EE9,135,EE,9 +2505,2021_tab14_amt_amount_nz_all,2021,tab14,amt,amount,Alternative minimum tax,nz,filers,all,2,No adjusted gross income,173716000.0,21in14ar.xls,EE10,135,EE,10 +2506,2021_tab14_amt_amount_nz_all,2021,tab14,amt,amount,Alternative minimum tax,nz,filers,all,3,"$1 under $5,000",1480000.0,21in14ar.xls,EE11,135,EE,11 +2507,2021_tab14_amt_amount_nz_all,2021,tab14,amt,amount,Alternative minimum tax,nz,filers,all,4,"$5,000 under $10,000",0.0,21in14ar.xls,EE12,135,EE,12 +2508,2021_tab14_amt_amount_nz_all,2021,tab14,amt,amount,Alternative minimum tax,nz,filers,all,5,"$10,000 under $15,000",0.0,21in14ar.xls,EE13,135,EE,13 +2509,2021_tab14_amt_amount_nz_all,2021,tab14,amt,amount,Alternative minimum tax,nz,filers,all,6,"$15,000 under $20,000",434000.0,21in14ar.xls,EE14,135,EE,14 +2510,2021_tab14_amt_amount_nz_all,2021,tab14,amt,amount,Alternative minimum tax,nz,filers,all,7,"$20,000 under $25,000",0.0,21in14ar.xls,EE15,135,EE,15 +2511,2021_tab14_amt_amount_nz_all,2021,tab14,amt,amount,Alternative minimum tax,nz,filers,all,8,"$25,000 under $30,000",97684000.0,21in14ar.xls,EE16,135,EE,16 +2512,2021_tab14_amt_amount_nz_all,2021,tab14,amt,amount,Alternative minimum tax,nz,filers,all,9,"$30,000 under $40,000",872000.0,21in14ar.xls,EE17,135,EE,17 +2513,2021_tab14_amt_amount_nz_all,2021,tab14,amt,amount,Alternative minimum tax,nz,filers,all,10,"$40,000 under $50,000",1319000.0,21in14ar.xls,EE18,135,EE,18 +2514,2021_tab14_amt_amount_nz_all,2021,tab14,amt,amount,Alternative minimum tax,nz,filers,all,11,"$50,000 under $75,000",25173000.0,21in14ar.xls,EE19,135,EE,19 +2515,2021_tab14_amt_amount_nz_all,2021,tab14,amt,amount,Alternative minimum tax,nz,filers,all,12,"$75,000 under $100,000",9598000.0,21in14ar.xls,EE20,135,EE,20 +2516,2021_tab14_amt_amount_nz_all,2021,tab14,amt,amount,Alternative minimum tax,nz,filers,all,13,"$100,000 under $200,000",134503000.0,21in14ar.xls,EE21,135,EE,21 +2517,2021_tab14_amt_amount_nz_all,2021,tab14,amt,amount,Alternative minimum tax,nz,filers,all,14,"$200,000 under $500,000",870515000.0,21in14ar.xls,EE22,135,EE,22 +2518,2021_tab14_amt_amount_nz_all,2021,tab14,amt,amount,Alternative minimum tax,nz,filers,all,15,"$500,000 under $1,000,000",4283305000.0,21in14ar.xls,EE23,135,EE,23 +2519,2021_tab14_amt_amount_nz_all,2021,tab14,amt,amount,Alternative minimum tax,nz,filers,all,16,"$1,000,000 under $1,500,000",0.0,21in14ar.xls,EE24,135,EE,24 +2520,2021_tab14_amt_amount_nz_all,2021,tab14,amt,amount,Alternative minimum tax,nz,filers,all,17,"$1,500,000 under $2,000,000",0.0,21in14ar.xls,EE25,135,EE,25 +2521,2021_tab14_amt_amount_nz_all,2021,tab14,amt,amount,Alternative minimum tax,nz,filers,all,18,"$2,000,000 under $5,000,000",0.0,21in14ar.xls,EE26,135,EE,26 +2522,2021_tab14_amt_amount_nz_all,2021,tab14,amt,amount,Alternative minimum tax,nz,filers,all,19,"$5,000,000 under $10,000,000",0.0,21in14ar.xls,EE27,135,EE,27 +2523,2021_tab14_amt_amount_nz_all,2021,tab14,amt,amount,Alternative minimum tax,nz,filers,all,20,"$10,000,000 or more",0.0,21in14ar.xls,EE28,135,EE,28 +2524,2021_tab14_amt_count_nz_all,2021,tab14,amt,count,Alternative minimum tax — number of returns,nz,filers,all,1,"All returns, total",243550.0,21in14ar.xls,ED9,134,ED,9 +2525,2021_tab14_amt_count_nz_all,2021,tab14,amt,count,Alternative minimum tax — number of returns,nz,filers,all,2,No adjusted gross income,3867.0,21in14ar.xls,ED10,134,ED,10 +2526,2021_tab14_amt_count_nz_all,2021,tab14,amt,count,Alternative minimum tax — number of returns,nz,filers,all,3,"$1 under $5,000",18.0,21in14ar.xls,ED11,134,ED,11 +2527,2021_tab14_amt_count_nz_all,2021,tab14,amt,count,Alternative minimum tax — number of returns,nz,filers,all,4,"$5,000 under $10,000",0.0,21in14ar.xls,ED12,134,ED,12 +2528,2021_tab14_amt_count_nz_all,2021,tab14,amt,count,Alternative minimum tax — number of returns,nz,filers,all,5,"$10,000 under $15,000",0.0,21in14ar.xls,ED13,134,ED,13 +2529,2021_tab14_amt_count_nz_all,2021,tab14,amt,count,Alternative minimum tax — number of returns,nz,filers,all,6,"$15,000 under $20,000",13.0,21in14ar.xls,ED14,134,ED,14 +2530,2021_tab14_amt_count_nz_all,2021,tab14,amt,count,Alternative minimum tax — number of returns,nz,filers,all,7,"$20,000 under $25,000",0.0,21in14ar.xls,ED15,134,ED,15 +2531,2021_tab14_amt_count_nz_all,2021,tab14,amt,count,Alternative minimum tax — number of returns,nz,filers,all,8,"$25,000 under $30,000",1183.0,21in14ar.xls,ED16,134,ED,16 +2532,2021_tab14_amt_count_nz_all,2021,tab14,amt,count,Alternative minimum tax — number of returns,nz,filers,all,9,"$30,000 under $40,000",100.0,21in14ar.xls,ED17,134,ED,17 +2533,2021_tab14_amt_count_nz_all,2021,tab14,amt,count,Alternative minimum tax — number of returns,nz,filers,all,10,"$40,000 under $50,000",89.0,21in14ar.xls,ED18,134,ED,18 +2534,2021_tab14_amt_count_nz_all,2021,tab14,amt,count,Alternative minimum tax — number of returns,nz,filers,all,11,"$50,000 under $75,000",2897.0,21in14ar.xls,ED19,134,ED,19 +2535,2021_tab14_amt_count_nz_all,2021,tab14,amt,count,Alternative minimum tax — number of returns,nz,filers,all,12,"$75,000 under $100,000",3925.0,21in14ar.xls,ED20,134,ED,20 +2536,2021_tab14_amt_count_nz_all,2021,tab14,amt,count,Alternative minimum tax — number of returns,nz,filers,all,13,"$100,000 under $200,000",16341.0,21in14ar.xls,ED21,134,ED,21 +2537,2021_tab14_amt_count_nz_all,2021,tab14,amt,count,Alternative minimum tax — number of returns,nz,filers,all,14,"$200,000 under $500,000",38734.0,21in14ar.xls,ED22,134,ED,22 +2538,2021_tab14_amt_count_nz_all,2021,tab14,amt,count,Alternative minimum tax — number of returns,nz,filers,all,15,"$500,000 under $1,000,000",176382.0,21in14ar.xls,ED23,134,ED,23 +2539,2021_tab14_amt_count_nz_all,2021,tab14,amt,count,Alternative minimum tax — number of returns,nz,filers,all,16,"$1,000,000 under $1,500,000",0.0,21in14ar.xls,ED24,134,ED,24 +2540,2021_tab14_amt_count_nz_all,2021,tab14,amt,count,Alternative minimum tax — number of returns,nz,filers,all,17,"$1,500,000 under $2,000,000",0.0,21in14ar.xls,ED25,134,ED,25 +2541,2021_tab14_amt_count_nz_all,2021,tab14,amt,count,Alternative minimum tax — number of returns,nz,filers,all,18,"$2,000,000 under $5,000,000",0.0,21in14ar.xls,ED26,134,ED,26 +2542,2021_tab14_amt_count_nz_all,2021,tab14,amt,count,Alternative minimum tax — number of returns,nz,filers,all,19,"$5,000,000 under $10,000,000",0.0,21in14ar.xls,ED27,134,ED,27 +2543,2021_tab14_amt_count_nz_all,2021,tab14,amt,count,Alternative minimum tax — number of returns,nz,filers,all,20,"$10,000,000 or more",0.0,21in14ar.xls,ED28,134,ED,28 +2544,2021_tab14_busprofincome_amount_gt0_all,2021,tab14,busprofincome,amount,Business net income (profit),gt0,filers,all,1,"All returns, total",517081772000.0,21in14ar.xls,U9,21,U,9 +2545,2021_tab14_busprofincome_amount_gt0_all,2021,tab14,busprofincome,amount,Business net income (profit),gt0,filers,all,2,No adjusted gross income,4193499000.0,21in14ar.xls,U10,21,U,10 +2546,2021_tab14_busprofincome_amount_gt0_all,2021,tab14,busprofincome,amount,Business net income (profit),gt0,filers,all,3,"$1 under $5,000",3659049000.0,21in14ar.xls,U11,21,U,11 +2547,2021_tab14_busprofincome_amount_gt0_all,2021,tab14,busprofincome,amount,Business net income (profit),gt0,filers,all,4,"$5,000 under $10,000",10546179000.0,21in14ar.xls,U12,21,U,12 +2548,2021_tab14_busprofincome_amount_gt0_all,2021,tab14,busprofincome,amount,Business net income (profit),gt0,filers,all,5,"$10,000 under $15,000",20104970000.0,21in14ar.xls,U13,21,U,13 +2549,2021_tab14_busprofincome_amount_gt0_all,2021,tab14,busprofincome,amount,Business net income (profit),gt0,filers,all,6,"$15,000 under $20,000",18140645000.0,21in14ar.xls,U14,21,U,14 +2550,2021_tab14_busprofincome_amount_gt0_all,2021,tab14,busprofincome,amount,Business net income (profit),gt0,filers,all,7,"$20,000 under $25,000",16237426000.0,21in14ar.xls,U15,21,U,15 +2551,2021_tab14_busprofincome_amount_gt0_all,2021,tab14,busprofincome,amount,Business net income (profit),gt0,filers,all,8,"$25,000 under $30,000",15467287000.0,21in14ar.xls,U16,21,U,16 +2552,2021_tab14_busprofincome_amount_gt0_all,2021,tab14,busprofincome,amount,Business net income (profit),gt0,filers,all,9,"$30,000 under $40,000",26647935000.0,21in14ar.xls,U17,21,U,17 +2553,2021_tab14_busprofincome_amount_gt0_all,2021,tab14,busprofincome,amount,Business net income (profit),gt0,filers,all,10,"$40,000 under $50,000",22811556000.0,21in14ar.xls,U18,21,U,18 +2554,2021_tab14_busprofincome_amount_gt0_all,2021,tab14,busprofincome,amount,Business net income (profit),gt0,filers,all,11,"$50,000 under $75,000",48371161000.0,21in14ar.xls,U19,21,U,19 +2555,2021_tab14_busprofincome_amount_gt0_all,2021,tab14,busprofincome,amount,Business net income (profit),gt0,filers,all,12,"$75,000 under $100,000",36692610000.0,21in14ar.xls,U20,21,U,20 +2556,2021_tab14_busprofincome_amount_gt0_all,2021,tab14,busprofincome,amount,Business net income (profit),gt0,filers,all,13,"$100,000 under $200,000",97740921000.0,21in14ar.xls,U21,21,U,21 +2557,2021_tab14_busprofincome_amount_gt0_all,2021,tab14,busprofincome,amount,Business net income (profit),gt0,filers,all,14,"$200,000 under $500,000",98370059000.0,21in14ar.xls,U22,21,U,22 +2558,2021_tab14_busprofincome_amount_gt0_all,2021,tab14,busprofincome,amount,Business net income (profit),gt0,filers,all,15,"$500,000 under $1,000,000",40285196000.0,21in14ar.xls,U23,21,U,23 +2559,2021_tab14_busprofincome_amount_gt0_all,2021,tab14,busprofincome,amount,Business net income (profit),gt0,filers,all,16,"$1,000,000 under $1,500,000",14533100000.0,21in14ar.xls,U24,21,U,24 +2560,2021_tab14_busprofincome_amount_gt0_all,2021,tab14,busprofincome,amount,Business net income (profit),gt0,filers,all,17,"$1,500,000 under $2,000,000",8245025000.0,21in14ar.xls,U25,21,U,25 +2561,2021_tab14_busprofincome_amount_gt0_all,2021,tab14,busprofincome,amount,Business net income (profit),gt0,filers,all,18,"$2,000,000 under $5,000,000",16755437000.0,21in14ar.xls,U26,21,U,26 +2562,2021_tab14_busprofincome_amount_gt0_all,2021,tab14,busprofincome,amount,Business net income (profit),gt0,filers,all,19,"$5,000,000 under $10,000,000",7274231000.0,21in14ar.xls,U27,21,U,27 +2563,2021_tab14_busprofincome_amount_gt0_all,2021,tab14,busprofincome,amount,Business net income (profit),gt0,filers,all,20,"$10,000,000 or more",11005486000.0,21in14ar.xls,U28,21,U,28 +2564,2021_tab14_busprofincome_amount_lt0_all,2021,tab14,busprofincome,amount,Business net loss,lt0,filers,all,1,"All returns, total",105580403000.0,21in14ar.xls,W9,23,W,9 +2565,2021_tab14_busprofincome_amount_lt0_all,2021,tab14,busprofincome,amount,Business net loss,lt0,filers,all,2,No adjusted gross income,19401043000.0,21in14ar.xls,W10,23,W,10 +2566,2021_tab14_busprofincome_amount_lt0_all,2021,tab14,busprofincome,amount,Business net loss,lt0,filers,all,3,"$1 under $5,000",1090552000.0,21in14ar.xls,W11,23,W,11 +2567,2021_tab14_busprofincome_amount_lt0_all,2021,tab14,busprofincome,amount,Business net loss,lt0,filers,all,4,"$5,000 under $10,000",1934591000.0,21in14ar.xls,W12,23,W,12 +2568,2021_tab14_busprofincome_amount_lt0_all,2021,tab14,busprofincome,amount,Business net loss,lt0,filers,all,5,"$10,000 under $15,000",4550449000.0,21in14ar.xls,W13,23,W,13 +2569,2021_tab14_busprofincome_amount_lt0_all,2021,tab14,busprofincome,amount,Business net loss,lt0,filers,all,6,"$15,000 under $20,000",5821504000.0,21in14ar.xls,W14,23,W,14 +2570,2021_tab14_busprofincome_amount_lt0_all,2021,tab14,busprofincome,amount,Business net loss,lt0,filers,all,7,"$20,000 under $25,000",4398237000.0,21in14ar.xls,W15,23,W,15 +2571,2021_tab14_busprofincome_amount_lt0_all,2021,tab14,busprofincome,amount,Business net loss,lt0,filers,all,8,"$25,000 under $30,000",4249474000.0,21in14ar.xls,W16,23,W,16 +2572,2021_tab14_busprofincome_amount_lt0_all,2021,tab14,busprofincome,amount,Business net loss,lt0,filers,all,9,"$30,000 under $40,000",7839859000.0,21in14ar.xls,W17,23,W,17 +2573,2021_tab14_busprofincome_amount_lt0_all,2021,tab14,busprofincome,amount,Business net loss,lt0,filers,all,10,"$40,000 under $50,000",6422149000.0,21in14ar.xls,W18,23,W,18 +2574,2021_tab14_busprofincome_amount_lt0_all,2021,tab14,busprofincome,amount,Business net loss,lt0,filers,all,11,"$50,000 under $75,000",9576425000.0,21in14ar.xls,W19,23,W,19 +2575,2021_tab14_busprofincome_amount_lt0_all,2021,tab14,busprofincome,amount,Business net loss,lt0,filers,all,12,"$75,000 under $100,000",7506827000.0,21in14ar.xls,W20,23,W,20 +2576,2021_tab14_busprofincome_amount_lt0_all,2021,tab14,busprofincome,amount,Business net loss,lt0,filers,all,13,"$100,000 under $200,000",13077153000.0,21in14ar.xls,W21,23,W,21 +2577,2021_tab14_busprofincome_amount_lt0_all,2021,tab14,busprofincome,amount,Business net loss,lt0,filers,all,14,"$200,000 under $500,000",8282956000.0,21in14ar.xls,W22,23,W,22 +2578,2021_tab14_busprofincome_amount_lt0_all,2021,tab14,busprofincome,amount,Business net loss,lt0,filers,all,15,"$500,000 under $1,000,000",2797954000.0,21in14ar.xls,W23,23,W,23 +2579,2021_tab14_busprofincome_amount_lt0_all,2021,tab14,busprofincome,amount,Business net loss,lt0,filers,all,16,"$1,000,000 under $1,500,000",1176858000.0,21in14ar.xls,W24,23,W,24 +2580,2021_tab14_busprofincome_amount_lt0_all,2021,tab14,busprofincome,amount,Business net loss,lt0,filers,all,17,"$1,500,000 under $2,000,000",745854000.0,21in14ar.xls,W25,23,W,25 +2581,2021_tab14_busprofincome_amount_lt0_all,2021,tab14,busprofincome,amount,Business net loss,lt0,filers,all,18,"$2,000,000 under $5,000,000",2221287000.0,21in14ar.xls,W26,23,W,26 +2582,2021_tab14_busprofincome_amount_lt0_all,2021,tab14,busprofincome,amount,Business net loss,lt0,filers,all,19,"$5,000,000 under $10,000,000",1162557000.0,21in14ar.xls,W27,23,W,27 +2583,2021_tab14_busprofincome_amount_lt0_all,2021,tab14,busprofincome,amount,Business net loss,lt0,filers,all,20,"$10,000,000 or more",3324675000.0,21in14ar.xls,W28,23,W,28 +2584,2021_tab14_busprofincome_count_gt0_all,2021,tab14,busprofincome,count,Business income — number of returns with profit,gt0,filers,all,1,"All returns, total",21105685.0,21in14ar.xls,T9,20,T,9 +2585,2021_tab14_busprofincome_count_gt0_all,2021,tab14,busprofincome,count,Business income — number of returns with profit,gt0,filers,all,2,No adjusted gross income,177452.0,21in14ar.xls,T10,20,T,10 +2586,2021_tab14_busprofincome_count_gt0_all,2021,tab14,busprofincome,count,Business income — number of returns with profit,gt0,filers,all,3,"$1 under $5,000",1387699.0,21in14ar.xls,T11,20,T,11 +2587,2021_tab14_busprofincome_count_gt0_all,2021,tab14,busprofincome,count,Business income — number of returns with profit,gt0,filers,all,4,"$5,000 under $10,000",1562204.0,21in14ar.xls,T12,20,T,12 +2588,2021_tab14_busprofincome_count_gt0_all,2021,tab14,busprofincome,count,Business income — number of returns with profit,gt0,filers,all,5,"$10,000 under $15,000",2046193.0,21in14ar.xls,T13,20,T,13 +2589,2021_tab14_busprofincome_count_gt0_all,2021,tab14,busprofincome,count,Business income — number of returns with profit,gt0,filers,all,6,"$15,000 under $20,000",1574602.0,21in14ar.xls,T14,20,T,14 +2590,2021_tab14_busprofincome_count_gt0_all,2021,tab14,busprofincome,count,Business income — number of returns with profit,gt0,filers,all,7,"$20,000 under $25,000",1258745.0,21in14ar.xls,T15,20,T,15 +2591,2021_tab14_busprofincome_count_gt0_all,2021,tab14,busprofincome,count,Business income — number of returns with profit,gt0,filers,all,8,"$25,000 under $30,000",1060963.0,21in14ar.xls,T16,20,T,16 +2592,2021_tab14_busprofincome_count_gt0_all,2021,tab14,busprofincome,count,Business income — number of returns with profit,gt0,filers,all,9,"$30,000 under $40,000",1633405.0,21in14ar.xls,T17,20,T,17 +2593,2021_tab14_busprofincome_count_gt0_all,2021,tab14,busprofincome,count,Business income — number of returns with profit,gt0,filers,all,10,"$40,000 under $50,000",1255792.0,21in14ar.xls,T18,20,T,18 +2594,2021_tab14_busprofincome_count_gt0_all,2021,tab14,busprofincome,count,Business income — number of returns with profit,gt0,filers,all,11,"$50,000 under $75,000",2395327.0,21in14ar.xls,T19,20,T,19 +2595,2021_tab14_busprofincome_count_gt0_all,2021,tab14,busprofincome,count,Business income — number of returns with profit,gt0,filers,all,12,"$75,000 under $100,000",1620171.0,21in14ar.xls,T20,20,T,20 +2596,2021_tab14_busprofincome_count_gt0_all,2021,tab14,busprofincome,count,Business income — number of returns with profit,gt0,filers,all,13,"$100,000 under $200,000",3193268.0,21in14ar.xls,T21,20,T,21 +2597,2021_tab14_busprofincome_count_gt0_all,2021,tab14,busprofincome,count,Business income — number of returns with profit,gt0,filers,all,14,"$200,000 under $500,000",1464231.0,21in14ar.xls,T22,20,T,22 +2598,2021_tab14_busprofincome_count_gt0_all,2021,tab14,busprofincome,count,Business income — number of returns with profit,gt0,filers,all,15,"$500,000 under $1,000,000",310202.0,21in14ar.xls,T23,20,T,23 +2599,2021_tab14_busprofincome_count_gt0_all,2021,tab14,busprofincome,count,Business income — number of returns with profit,gt0,filers,all,16,"$1,000,000 under $1,500,000",72615.0,21in14ar.xls,T24,20,T,24 +2600,2021_tab14_busprofincome_count_gt0_all,2021,tab14,busprofincome,count,Business income — number of returns with profit,gt0,filers,all,17,"$1,500,000 under $2,000,000",29373.0,21in14ar.xls,T25,20,T,25 +2601,2021_tab14_busprofincome_count_gt0_all,2021,tab14,busprofincome,count,Business income — number of returns with profit,gt0,filers,all,18,"$2,000,000 under $5,000,000",43498.0,21in14ar.xls,T26,20,T,26 +2602,2021_tab14_busprofincome_count_gt0_all,2021,tab14,busprofincome,count,Business income — number of returns with profit,gt0,filers,all,19,"$5,000,000 under $10,000,000",11675.0,21in14ar.xls,T27,20,T,27 +2603,2021_tab14_busprofincome_count_gt0_all,2021,tab14,busprofincome,count,Business income — number of returns with profit,gt0,filers,all,20,"$10,000,000 or more",8271.0,21in14ar.xls,T28,20,T,28 +2604,2021_tab14_busprofincome_count_lt0_all,2021,tab14,busprofincome,count,Business income — number of returns with loss,lt0,filers,all,1,"All returns, total",7546660.0,21in14ar.xls,V9,22,V,9 +2605,2021_tab14_busprofincome_count_lt0_all,2021,tab14,busprofincome,count,Business income — number of returns with loss,lt0,filers,all,2,No adjusted gross income,496910.0,21in14ar.xls,V10,22,V,10 +2606,2021_tab14_busprofincome_count_lt0_all,2021,tab14,busprofincome,count,Business income — number of returns with loss,lt0,filers,all,3,"$1 under $5,000",129756.0,21in14ar.xls,V11,22,V,11 +2607,2021_tab14_busprofincome_count_lt0_all,2021,tab14,busprofincome,count,Business income — number of returns with loss,lt0,filers,all,4,"$5,000 under $10,000",174436.0,21in14ar.xls,V12,22,V,12 +2608,2021_tab14_busprofincome_count_lt0_all,2021,tab14,busprofincome,count,Business income — number of returns with loss,lt0,filers,all,5,"$10,000 under $15,000",383871.0,21in14ar.xls,V13,22,V,13 +2609,2021_tab14_busprofincome_count_lt0_all,2021,tab14,busprofincome,count,Business income — number of returns with loss,lt0,filers,all,6,"$15,000 under $20,000",489504.0,21in14ar.xls,V14,22,V,14 +2610,2021_tab14_busprofincome_count_lt0_all,2021,tab14,busprofincome,count,Business income — number of returns with loss,lt0,filers,all,7,"$20,000 under $25,000",404331.0,21in14ar.xls,V15,22,V,15 +2611,2021_tab14_busprofincome_count_lt0_all,2021,tab14,busprofincome,count,Business income — number of returns with loss,lt0,filers,all,8,"$25,000 under $30,000",398390.0,21in14ar.xls,V16,22,V,16 +2612,2021_tab14_busprofincome_count_lt0_all,2021,tab14,busprofincome,count,Business income — number of returns with loss,lt0,filers,all,9,"$30,000 under $40,000",731244.0,21in14ar.xls,V17,22,V,17 +2613,2021_tab14_busprofincome_count_lt0_all,2021,tab14,busprofincome,count,Business income — number of returns with loss,lt0,filers,all,10,"$40,000 under $50,000",614437.0,21in14ar.xls,V18,22,V,18 +2614,2021_tab14_busprofincome_count_lt0_all,2021,tab14,busprofincome,count,Business income — number of returns with loss,lt0,filers,all,11,"$50,000 under $75,000",1000873.0,21in14ar.xls,V19,22,V,19 +2615,2021_tab14_busprofincome_count_lt0_all,2021,tab14,busprofincome,count,Business income — number of returns with loss,lt0,filers,all,12,"$75,000 under $100,000",712587.0,21in14ar.xls,V20,22,V,20 +2616,2021_tab14_busprofincome_count_lt0_all,2021,tab14,busprofincome,count,Business income — number of returns with loss,lt0,filers,all,13,"$100,000 under $200,000",1328596.0,21in14ar.xls,V21,22,V,21 +2617,2021_tab14_busprofincome_count_lt0_all,2021,tab14,busprofincome,count,Business income — number of returns with loss,lt0,filers,all,14,"$200,000 under $500,000",526968.0,21in14ar.xls,V22,22,V,22 +2618,2021_tab14_busprofincome_count_lt0_all,2021,tab14,busprofincome,count,Business income — number of returns with loss,lt0,filers,all,15,"$500,000 under $1,000,000",96621.0,21in14ar.xls,V23,22,V,23 +2619,2021_tab14_busprofincome_count_lt0_all,2021,tab14,busprofincome,count,Business income — number of returns with loss,lt0,filers,all,16,"$1,000,000 under $1,500,000",23020.0,21in14ar.xls,V24,22,V,24 +2620,2021_tab14_busprofincome_count_lt0_all,2021,tab14,busprofincome,count,Business income — number of returns with loss,lt0,filers,all,17,"$1,500,000 under $2,000,000",9921.0,21in14ar.xls,V25,22,V,25 +2621,2021_tab14_busprofincome_count_lt0_all,2021,tab14,busprofincome,count,Business income — number of returns with loss,lt0,filers,all,18,"$2,000,000 under $5,000,000",16222.0,21in14ar.xls,V26,22,V,26 +2622,2021_tab14_busprofincome_count_lt0_all,2021,tab14,busprofincome,count,Business income — number of returns with loss,lt0,filers,all,19,"$5,000,000 under $10,000,000",4765.0,21in14ar.xls,V27,22,V,27 +2623,2021_tab14_busprofincome_count_lt0_all,2021,tab14,busprofincome,count,Business income — number of returns with loss,lt0,filers,all,20,"$10,000,000 or more",4207.0,21in14ar.xls,V28,22,V,28 +2624,2021_tab14_cgdist_amount_nz_all,2021,tab14,cgdist,amount,Capital gain distributions,nz,filers,all,1,"All returns, total",23889533000.0,21in14ar.xls,Y9,25,Y,9 +2625,2021_tab14_cgdist_amount_nz_all,2021,tab14,cgdist,amount,Capital gain distributions,nz,filers,all,2,No adjusted gross income,65371000.0,21in14ar.xls,Y10,25,Y,10 +2626,2021_tab14_cgdist_amount_nz_all,2021,tab14,cgdist,amount,Capital gain distributions,nz,filers,all,3,"$1 under $5,000",113762000.0,21in14ar.xls,Y11,25,Y,11 +2627,2021_tab14_cgdist_amount_nz_all,2021,tab14,cgdist,amount,Capital gain distributions,nz,filers,all,4,"$5,000 under $10,000",245186000.0,21in14ar.xls,Y12,25,Y,12 +2628,2021_tab14_cgdist_amount_nz_all,2021,tab14,cgdist,amount,Capital gain distributions,nz,filers,all,5,"$10,000 under $15,000",280333000.0,21in14ar.xls,Y13,25,Y,13 +2629,2021_tab14_cgdist_amount_nz_all,2021,tab14,cgdist,amount,Capital gain distributions,nz,filers,all,6,"$15,000 under $20,000",295710000.0,21in14ar.xls,Y14,25,Y,14 +2630,2021_tab14_cgdist_amount_nz_all,2021,tab14,cgdist,amount,Capital gain distributions,nz,filers,all,7,"$20,000 under $25,000",240785000.0,21in14ar.xls,Y15,25,Y,15 +2631,2021_tab14_cgdist_amount_nz_all,2021,tab14,cgdist,amount,Capital gain distributions,nz,filers,all,8,"$25,000 under $30,000",259495000.0,21in14ar.xls,Y16,25,Y,16 +2632,2021_tab14_cgdist_amount_nz_all,2021,tab14,cgdist,amount,Capital gain distributions,nz,filers,all,9,"$30,000 under $40,000",639548000.0,21in14ar.xls,Y17,25,Y,17 +2633,2021_tab14_cgdist_amount_nz_all,2021,tab14,cgdist,amount,Capital gain distributions,nz,filers,all,10,"$40,000 under $50,000",778440000.0,21in14ar.xls,Y18,25,Y,18 +2634,2021_tab14_cgdist_amount_nz_all,2021,tab14,cgdist,amount,Capital gain distributions,nz,filers,all,11,"$50,000 under $75,000",2211122000.0,21in14ar.xls,Y19,25,Y,19 +2635,2021_tab14_cgdist_amount_nz_all,2021,tab14,cgdist,amount,Capital gain distributions,nz,filers,all,12,"$75,000 under $100,000",2396707000.0,21in14ar.xls,Y20,25,Y,20 +2636,2021_tab14_cgdist_amount_nz_all,2021,tab14,cgdist,amount,Capital gain distributions,nz,filers,all,13,"$100,000 under $200,000",7791104000.0,21in14ar.xls,Y21,25,Y,21 +2637,2021_tab14_cgdist_amount_nz_all,2021,tab14,cgdist,amount,Capital gain distributions,nz,filers,all,14,"$200,000 under $500,000",6797511000.0,21in14ar.xls,Y22,25,Y,22 +2638,2021_tab14_cgdist_amount_nz_all,2021,tab14,cgdist,amount,Capital gain distributions,nz,filers,all,15,"$500,000 under $1,000,000",1132318000.0,21in14ar.xls,Y23,25,Y,23 +2639,2021_tab14_cgdist_amount_nz_all,2021,tab14,cgdist,amount,Capital gain distributions,nz,filers,all,16,"$1,000,000 under $1,500,000",365803000.0,21in14ar.xls,Y24,25,Y,24 +2640,2021_tab14_cgdist_amount_nz_all,2021,tab14,cgdist,amount,Capital gain distributions,nz,filers,all,17,"$1,500,000 under $2,000,000",50466000.0,21in14ar.xls,Y25,25,Y,25 +2641,2021_tab14_cgdist_amount_nz_all,2021,tab14,cgdist,amount,Capital gain distributions,nz,filers,all,18,"$2,000,000 under $5,000,000",117583000.0,21in14ar.xls,Y26,25,Y,26 +2642,2021_tab14_cgdist_amount_nz_all,2021,tab14,cgdist,amount,Capital gain distributions,nz,filers,all,19,"$5,000,000 under $10,000,000",32557000.0,21in14ar.xls,Y27,25,Y,27 +2643,2021_tab14_cgdist_amount_nz_all,2021,tab14,cgdist,amount,Capital gain distributions,nz,filers,all,20,"$10,000,000 or more",75734000.0,21in14ar.xls,Y28,25,Y,28 +2644,2021_tab14_cgdist_count_nz_all,2021,tab14,cgdist,count,Capital gain distributions — number of returns,nz,filers,all,1,"All returns, total",4505544.0,21in14ar.xls,X9,24,X,9 +2645,2021_tab14_cgdist_count_nz_all,2021,tab14,cgdist,count,Capital gain distributions — number of returns,nz,filers,all,2,No adjusted gross income,22086.0,21in14ar.xls,X10,24,X,10 +2646,2021_tab14_cgdist_count_nz_all,2021,tab14,cgdist,count,Capital gain distributions — number of returns,nz,filers,all,3,"$1 under $5,000",147555.0,21in14ar.xls,X11,24,X,11 +2647,2021_tab14_cgdist_count_nz_all,2021,tab14,cgdist,count,Capital gain distributions — number of returns,nz,filers,all,4,"$5,000 under $10,000",156516.0,21in14ar.xls,X12,24,X,12 +2648,2021_tab14_cgdist_count_nz_all,2021,tab14,cgdist,count,Capital gain distributions — number of returns,nz,filers,all,5,"$10,000 under $15,000",130377.0,21in14ar.xls,X13,24,X,13 +2649,2021_tab14_cgdist_count_nz_all,2021,tab14,cgdist,count,Capital gain distributions — number of returns,nz,filers,all,6,"$15,000 under $20,000",116943.0,21in14ar.xls,X14,24,X,14 +2650,2021_tab14_cgdist_count_nz_all,2021,tab14,cgdist,count,Capital gain distributions — number of returns,nz,filers,all,7,"$20,000 under $25,000",129200.0,21in14ar.xls,X15,24,X,15 +2651,2021_tab14_cgdist_count_nz_all,2021,tab14,cgdist,count,Capital gain distributions — number of returns,nz,filers,all,8,"$25,000 under $30,000",103882.0,21in14ar.xls,X16,24,X,16 +2652,2021_tab14_cgdist_count_nz_all,2021,tab14,cgdist,count,Capital gain distributions — number of returns,nz,filers,all,9,"$30,000 under $40,000",242939.0,21in14ar.xls,X17,24,X,17 +2653,2021_tab14_cgdist_count_nz_all,2021,tab14,cgdist,count,Capital gain distributions — number of returns,nz,filers,all,10,"$40,000 under $50,000",262877.0,21in14ar.xls,X18,24,X,18 +2654,2021_tab14_cgdist_count_nz_all,2021,tab14,cgdist,count,Capital gain distributions — number of returns,nz,filers,all,11,"$50,000 under $75,000",690766.0,21in14ar.xls,X19,24,X,19 +2655,2021_tab14_cgdist_count_nz_all,2021,tab14,cgdist,count,Capital gain distributions — number of returns,nz,filers,all,12,"$75,000 under $100,000",576208.0,21in14ar.xls,X20,24,X,20 +2656,2021_tab14_cgdist_count_nz_all,2021,tab14,cgdist,count,Capital gain distributions — number of returns,nz,filers,all,13,"$100,000 under $200,000",1277399.0,21in14ar.xls,X21,24,X,21 +2657,2021_tab14_cgdist_count_nz_all,2021,tab14,cgdist,count,Capital gain distributions — number of returns,nz,filers,all,14,"$200,000 under $500,000",570826.0,21in14ar.xls,X22,24,X,22 +2658,2021_tab14_cgdist_count_nz_all,2021,tab14,cgdist,count,Capital gain distributions — number of returns,nz,filers,all,15,"$500,000 under $1,000,000",62560.0,21in14ar.xls,X23,24,X,23 +2659,2021_tab14_cgdist_count_nz_all,2021,tab14,cgdist,count,Capital gain distributions — number of returns,nz,filers,all,16,"$1,000,000 under $1,500,000",9603.0,21in14ar.xls,X24,24,X,24 +2660,2021_tab14_cgdist_count_nz_all,2021,tab14,cgdist,count,Capital gain distributions — number of returns,nz,filers,all,17,"$1,500,000 under $2,000,000",2394.0,21in14ar.xls,X25,24,X,25 +2661,2021_tab14_cgdist_count_nz_all,2021,tab14,cgdist,count,Capital gain distributions — number of returns,nz,filers,all,18,"$2,000,000 under $5,000,000",2895.0,21in14ar.xls,X26,24,X,26 +2662,2021_tab14_cgdist_count_nz_all,2021,tab14,cgdist,count,Capital gain distributions — number of returns,nz,filers,all,19,"$5,000,000 under $10,000,000",392.0,21in14ar.xls,X27,24,X,27 +2663,2021_tab14_cgdist_count_nz_all,2021,tab14,cgdist,count,Capital gain distributions — number of returns,nz,filers,all,20,"$10,000,000 or more",127.0,21in14ar.xls,X28,24,X,28 +2664,2021_tab14_cgtaxable_amount_gt0_all,2021,tab14,cgtaxable,amount,Net capital gain,gt0,filers,all,1,"All returns, total",2048795356000.0,21in14ar.xls,AA9,27,AA,9 +2665,2021_tab14_cgtaxable_amount_gt0_all,2021,tab14,cgtaxable,amount,Net capital gain,gt0,filers,all,2,No adjusted gross income,19015791000.0,21in14ar.xls,AA10,27,AA,10 +2666,2021_tab14_cgtaxable_amount_gt0_all,2021,tab14,cgtaxable,amount,Net capital gain,gt0,filers,all,3,"$1 under $5,000",594696000.0,21in14ar.xls,AA11,27,AA,11 +2667,2021_tab14_cgtaxable_amount_gt0_all,2021,tab14,cgtaxable,amount,Net capital gain,gt0,filers,all,4,"$5,000 under $10,000",1350615000.0,21in14ar.xls,AA12,27,AA,12 +2668,2021_tab14_cgtaxable_amount_gt0_all,2021,tab14,cgtaxable,amount,Net capital gain,gt0,filers,all,5,"$10,000 under $15,000",1733569000.0,21in14ar.xls,AA13,27,AA,13 +2669,2021_tab14_cgtaxable_amount_gt0_all,2021,tab14,cgtaxable,amount,Net capital gain,gt0,filers,all,6,"$15,000 under $20,000",2147651000.0,21in14ar.xls,AA14,27,AA,14 +2670,2021_tab14_cgtaxable_amount_gt0_all,2021,tab14,cgtaxable,amount,Net capital gain,gt0,filers,all,7,"$20,000 under $25,000",2033390000.0,21in14ar.xls,AA15,27,AA,15 +2671,2021_tab14_cgtaxable_amount_gt0_all,2021,tab14,cgtaxable,amount,Net capital gain,gt0,filers,all,8,"$25,000 under $30,000",2354104000.0,21in14ar.xls,AA16,27,AA,16 +2672,2021_tab14_cgtaxable_amount_gt0_all,2021,tab14,cgtaxable,amount,Net capital gain,gt0,filers,all,9,"$30,000 under $40,000",5913774000.0,21in14ar.xls,AA17,27,AA,17 +2673,2021_tab14_cgtaxable_amount_gt0_all,2021,tab14,cgtaxable,amount,Net capital gain,gt0,filers,all,10,"$40,000 under $50,000",6347528000.0,21in14ar.xls,AA18,27,AA,18 +2674,2021_tab14_cgtaxable_amount_gt0_all,2021,tab14,cgtaxable,amount,Net capital gain,gt0,filers,all,11,"$50,000 under $75,000",20655401000.0,21in14ar.xls,AA19,27,AA,19 +2675,2021_tab14_cgtaxable_amount_gt0_all,2021,tab14,cgtaxable,amount,Net capital gain,gt0,filers,all,12,"$75,000 under $100,000",27763563000.0,21in14ar.xls,AA20,27,AA,20 +2676,2021_tab14_cgtaxable_amount_gt0_all,2021,tab14,cgtaxable,amount,Net capital gain,gt0,filers,all,13,"$100,000 under $200,000",126157757000.0,21in14ar.xls,AA21,27,AA,21 +2677,2021_tab14_cgtaxable_amount_gt0_all,2021,tab14,cgtaxable,amount,Net capital gain,gt0,filers,all,14,"$200,000 under $500,000",239861626000.0,21in14ar.xls,AA22,27,AA,22 +2678,2021_tab14_cgtaxable_amount_gt0_all,2021,tab14,cgtaxable,amount,Net capital gain,gt0,filers,all,15,"$500,000 under $1,000,000",185067883000.0,21in14ar.xls,AA23,27,AA,23 +2679,2021_tab14_cgtaxable_amount_gt0_all,2021,tab14,cgtaxable,amount,Net capital gain,gt0,filers,all,16,"$1,000,000 under $1,500,000",98605526000.0,21in14ar.xls,AA24,27,AA,24 +2680,2021_tab14_cgtaxable_amount_gt0_all,2021,tab14,cgtaxable,amount,Net capital gain,gt0,filers,all,17,"$1,500,000 under $2,000,000",67058929000.0,21in14ar.xls,AA25,27,AA,25 +2681,2021_tab14_cgtaxable_amount_gt0_all,2021,tab14,cgtaxable,amount,Net capital gain,gt0,filers,all,18,"$2,000,000 under $5,000,000",216578879000.0,21in14ar.xls,AA26,27,AA,26 +2682,2021_tab14_cgtaxable_amount_gt0_all,2021,tab14,cgtaxable,amount,Net capital gain,gt0,filers,all,19,"$5,000,000 under $10,000,000",175240752000.0,21in14ar.xls,AA27,27,AA,27 +2683,2021_tab14_cgtaxable_amount_gt0_all,2021,tab14,cgtaxable,amount,Net capital gain,gt0,filers,all,20,"$10,000,000 or more",850313922000.0,21in14ar.xls,AA28,27,AA,28 +2684,2021_tab14_cgtaxable_amount_lt0_all,2021,tab14,cgtaxable,amount,Net capital loss,lt0,filers,all,1,"All returns, total",16241889000.0,21in14ar.xls,AC9,29,AC,9 +2685,2021_tab14_cgtaxable_amount_lt0_all,2021,tab14,cgtaxable,amount,Net capital loss,lt0,filers,all,2,No adjusted gross income,860874000.0,21in14ar.xls,AC10,29,AC,10 +2686,2021_tab14_cgtaxable_amount_lt0_all,2021,tab14,cgtaxable,amount,Net capital loss,lt0,filers,all,3,"$1 under $5,000",454913000.0,21in14ar.xls,AC11,29,AC,11 +2687,2021_tab14_cgtaxable_amount_lt0_all,2021,tab14,cgtaxable,amount,Net capital loss,lt0,filers,all,4,"$5,000 under $10,000",482569000.0,21in14ar.xls,AC12,29,AC,12 +2688,2021_tab14_cgtaxable_amount_lt0_all,2021,tab14,cgtaxable,amount,Net capital loss,lt0,filers,all,5,"$10,000 under $15,000",501628000.0,21in14ar.xls,AC13,29,AC,13 +2689,2021_tab14_cgtaxable_amount_lt0_all,2021,tab14,cgtaxable,amount,Net capital loss,lt0,filers,all,6,"$15,000 under $20,000",506220000.0,21in14ar.xls,AC14,29,AC,14 +2690,2021_tab14_cgtaxable_amount_lt0_all,2021,tab14,cgtaxable,amount,Net capital loss,lt0,filers,all,7,"$20,000 under $25,000",429782000.0,21in14ar.xls,AC15,29,AC,15 +2691,2021_tab14_cgtaxable_amount_lt0_all,2021,tab14,cgtaxable,amount,Net capital loss,lt0,filers,all,8,"$25,000 under $30,000",453545000.0,21in14ar.xls,AC16,29,AC,16 +2692,2021_tab14_cgtaxable_amount_lt0_all,2021,tab14,cgtaxable,amount,Net capital loss,lt0,filers,all,9,"$30,000 under $40,000",811885000.0,21in14ar.xls,AC17,29,AC,17 +2693,2021_tab14_cgtaxable_amount_lt0_all,2021,tab14,cgtaxable,amount,Net capital loss,lt0,filers,all,10,"$40,000 under $50,000",764543000.0,21in14ar.xls,AC18,29,AC,18 +2694,2021_tab14_cgtaxable_amount_lt0_all,2021,tab14,cgtaxable,amount,Net capital loss,lt0,filers,all,11,"$50,000 under $75,000",1890497000.0,21in14ar.xls,AC19,29,AC,19 +2695,2021_tab14_cgtaxable_amount_lt0_all,2021,tab14,cgtaxable,amount,Net capital loss,lt0,filers,all,12,"$75,000 under $100,000",1644525000.0,21in14ar.xls,AC20,29,AC,20 +2696,2021_tab14_cgtaxable_amount_lt0_all,2021,tab14,cgtaxable,amount,Net capital loss,lt0,filers,all,13,"$100,000 under $200,000",3937902000.0,21in14ar.xls,AC21,29,AC,21 +2697,2021_tab14_cgtaxable_amount_lt0_all,2021,tab14,cgtaxable,amount,Net capital loss,lt0,filers,all,14,"$200,000 under $500,000",2553466000.0,21in14ar.xls,AC22,29,AC,22 +2698,2021_tab14_cgtaxable_amount_lt0_all,2021,tab14,cgtaxable,amount,Net capital loss,lt0,filers,all,15,"$500,000 under $1,000,000",621321000.0,21in14ar.xls,AC23,29,AC,23 +2699,2021_tab14_cgtaxable_amount_lt0_all,2021,tab14,cgtaxable,amount,Net capital loss,lt0,filers,all,16,"$1,000,000 under $1,500,000",147697000.0,21in14ar.xls,AC24,29,AC,24 +2700,2021_tab14_cgtaxable_amount_lt0_all,2021,tab14,cgtaxable,amount,Net capital loss,lt0,filers,all,17,"$1,500,000 under $2,000,000",60591000.0,21in14ar.xls,AC25,29,AC,25 +2701,2021_tab14_cgtaxable_amount_lt0_all,2021,tab14,cgtaxable,amount,Net capital loss,lt0,filers,all,18,"$2,000,000 under $5,000,000",87792000.0,21in14ar.xls,AC26,29,AC,26 +2702,2021_tab14_cgtaxable_amount_lt0_all,2021,tab14,cgtaxable,amount,Net capital loss,lt0,filers,all,19,"$5,000,000 under $10,000,000",20661000.0,21in14ar.xls,AC27,29,AC,27 +2703,2021_tab14_cgtaxable_amount_lt0_all,2021,tab14,cgtaxable,amount,Net capital loss,lt0,filers,all,20,"$10,000,000 or more",11481000.0,21in14ar.xls,AC28,29,AC,28 +2704,2021_tab14_cgtaxable_count_gt0_all,2021,tab14,cgtaxable,count,Capital gains — number of returns with net gain,gt0,filers,all,1,"All returns, total",20497375.0,21in14ar.xls,Z9,26,Z,9 +2705,2021_tab14_cgtaxable_count_gt0_all,2021,tab14,cgtaxable,count,Capital gains — number of returns with net gain,gt0,filers,all,2,No adjusted gross income,168588.0,21in14ar.xls,Z10,26,Z,10 +2706,2021_tab14_cgtaxable_count_gt0_all,2021,tab14,cgtaxable,count,Capital gains — number of returns with net gain,gt0,filers,all,3,"$1 under $5,000",329154.0,21in14ar.xls,Z11,26,Z,11 +2707,2021_tab14_cgtaxable_count_gt0_all,2021,tab14,cgtaxable,count,Capital gains — number of returns with net gain,gt0,filers,all,4,"$5,000 under $10,000",332066.0,21in14ar.xls,Z12,26,Z,12 +2708,2021_tab14_cgtaxable_count_gt0_all,2021,tab14,cgtaxable,count,Capital gains — number of returns with net gain,gt0,filers,all,5,"$10,000 under $15,000",374844.0,21in14ar.xls,Z13,26,Z,13 +2709,2021_tab14_cgtaxable_count_gt0_all,2021,tab14,cgtaxable,count,Capital gains — number of returns with net gain,gt0,filers,all,6,"$15,000 under $20,000",419502.0,21in14ar.xls,Z14,26,Z,14 +2710,2021_tab14_cgtaxable_count_gt0_all,2021,tab14,cgtaxable,count,Capital gains — number of returns with net gain,gt0,filers,all,7,"$20,000 under $25,000",392742.0,21in14ar.xls,Z15,26,Z,15 +2711,2021_tab14_cgtaxable_count_gt0_all,2021,tab14,cgtaxable,count,Capital gains — number of returns with net gain,gt0,filers,all,8,"$25,000 under $30,000",422949.0,21in14ar.xls,Z16,26,Z,16 +2712,2021_tab14_cgtaxable_count_gt0_all,2021,tab14,cgtaxable,count,Capital gains — number of returns with net gain,gt0,filers,all,9,"$30,000 under $40,000",907889.0,21in14ar.xls,Z17,26,Z,17 +2713,2021_tab14_cgtaxable_count_gt0_all,2021,tab14,cgtaxable,count,Capital gains — number of returns with net gain,gt0,filers,all,10,"$40,000 under $50,000",975226.0,21in14ar.xls,Z18,26,Z,18 +2714,2021_tab14_cgtaxable_count_gt0_all,2021,tab14,cgtaxable,count,Capital gains — number of returns with net gain,gt0,filers,all,11,"$50,000 under $75,000",2364604.0,21in14ar.xls,Z19,26,Z,19 +2715,2021_tab14_cgtaxable_count_gt0_all,2021,tab14,cgtaxable,count,Capital gains — number of returns with net gain,gt0,filers,all,12,"$75,000 under $100,000",2289026.0,21in14ar.xls,Z20,26,Z,20 +2716,2021_tab14_cgtaxable_count_gt0_all,2021,tab14,cgtaxable,count,Capital gains — number of returns with net gain,gt0,filers,all,13,"$100,000 under $200,000",5731237.0,21in14ar.xls,Z21,26,Z,21 +2717,2021_tab14_cgtaxable_count_gt0_all,2021,tab14,cgtaxable,count,Capital gains — number of returns with net gain,gt0,filers,all,14,"$200,000 under $500,000",4062046.0,21in14ar.xls,Z22,26,Z,22 +2718,2021_tab14_cgtaxable_count_gt0_all,2021,tab14,cgtaxable,count,Capital gains — number of returns with net gain,gt0,filers,all,15,"$500,000 under $1,000,000",1052486.0,21in14ar.xls,Z23,26,Z,23 +2719,2021_tab14_cgtaxable_count_gt0_all,2021,tab14,cgtaxable,count,Capital gains — number of returns with net gain,gt0,filers,all,16,"$1,000,000 under $1,500,000",276029.0,21in14ar.xls,Z24,26,Z,24 +2720,2021_tab14_cgtaxable_count_gt0_all,2021,tab14,cgtaxable,count,Capital gains — number of returns with net gain,gt0,filers,all,17,"$1,500,000 under $2,000,000",119345.0,21in14ar.xls,Z25,26,Z,25 +2721,2021_tab14_cgtaxable_count_gt0_all,2021,tab14,cgtaxable,count,Capital gains — number of returns with net gain,gt0,filers,all,18,"$2,000,000 under $5,000,000",185600.0,21in14ar.xls,Z26,26,Z,26 +2722,2021_tab14_cgtaxable_count_gt0_all,2021,tab14,cgtaxable,count,Capital gains — number of returns with net gain,gt0,filers,all,19,"$5,000,000 under $10,000,000",53600.0,21in14ar.xls,Z27,26,Z,27 +2723,2021_tab14_cgtaxable_count_gt0_all,2021,tab14,cgtaxable,count,Capital gains — number of returns with net gain,gt0,filers,all,20,"$10,000,000 or more",40444.0,21in14ar.xls,Z28,26,Z,28 +2724,2021_tab14_cgtaxable_count_lt0_all,2021,tab14,cgtaxable,count,Capital gains — number of returns with net loss,lt0,filers,all,1,"All returns, total",8074079.0,21in14ar.xls,AB9,28,AB,9 +2725,2021_tab14_cgtaxable_count_lt0_all,2021,tab14,cgtaxable,count,Capital gains — number of returns with net loss,lt0,filers,all,2,No adjusted gross income,347354.0,21in14ar.xls,AB10,28,AB,10 +2726,2021_tab14_cgtaxable_count_lt0_all,2021,tab14,cgtaxable,count,Capital gains — number of returns with net loss,lt0,filers,all,3,"$1 under $5,000",232283.0,21in14ar.xls,AB11,28,AB,11 +2727,2021_tab14_cgtaxable_count_lt0_all,2021,tab14,cgtaxable,count,Capital gains — number of returns with net loss,lt0,filers,all,4,"$5,000 under $10,000",254651.0,21in14ar.xls,AB12,28,AB,12 +2728,2021_tab14_cgtaxable_count_lt0_all,2021,tab14,cgtaxable,count,Capital gains — number of returns with net loss,lt0,filers,all,5,"$10,000 under $15,000",261320.0,21in14ar.xls,AB13,28,AB,13 +2729,2021_tab14_cgtaxable_count_lt0_all,2021,tab14,cgtaxable,count,Capital gains — number of returns with net loss,lt0,filers,all,6,"$15,000 under $20,000",277969.0,21in14ar.xls,AB14,28,AB,14 +2730,2021_tab14_cgtaxable_count_lt0_all,2021,tab14,cgtaxable,count,Capital gains — number of returns with net loss,lt0,filers,all,7,"$20,000 under $25,000",236185.0,21in14ar.xls,AB15,28,AB,15 +2731,2021_tab14_cgtaxable_count_lt0_all,2021,tab14,cgtaxable,count,Capital gains — number of returns with net loss,lt0,filers,all,8,"$25,000 under $30,000",248004.0,21in14ar.xls,AB16,28,AB,16 +2732,2021_tab14_cgtaxable_count_lt0_all,2021,tab14,cgtaxable,count,Capital gains — number of returns with net loss,lt0,filers,all,9,"$30,000 under $40,000",466004.0,21in14ar.xls,AB17,28,AB,17 +2733,2021_tab14_cgtaxable_count_lt0_all,2021,tab14,cgtaxable,count,Capital gains — number of returns with net loss,lt0,filers,all,10,"$40,000 under $50,000",414682.0,21in14ar.xls,AB18,28,AB,18 +2734,2021_tab14_cgtaxable_count_lt0_all,2021,tab14,cgtaxable,count,Capital gains — number of returns with net loss,lt0,filers,all,11,"$50,000 under $75,000",1009155.0,21in14ar.xls,AB19,28,AB,19 +2735,2021_tab14_cgtaxable_count_lt0_all,2021,tab14,cgtaxable,count,Capital gains — number of returns with net loss,lt0,filers,all,12,"$75,000 under $100,000",853928.0,21in14ar.xls,AB20,28,AB,20 +2736,2021_tab14_cgtaxable_count_lt0_all,2021,tab14,cgtaxable,count,Capital gains — number of returns with net loss,lt0,filers,all,13,"$100,000 under $200,000",1948252.0,21in14ar.xls,AB21,28,AB,21 +2737,2021_tab14_cgtaxable_count_lt0_all,2021,tab14,cgtaxable,count,Capital gains — number of returns with net loss,lt0,filers,all,14,"$200,000 under $500,000",1153231.0,21in14ar.xls,AB22,28,AB,22 +2738,2021_tab14_cgtaxable_count_lt0_all,2021,tab14,cgtaxable,count,Capital gains — number of returns with net loss,lt0,filers,all,15,"$500,000 under $1,000,000",250020.0,21in14ar.xls,AB23,28,AB,23 +2739,2021_tab14_cgtaxable_count_lt0_all,2021,tab14,cgtaxable,count,Capital gains — number of returns with net loss,lt0,filers,all,16,"$1,000,000 under $1,500,000",55654.0,21in14ar.xls,AB24,28,AB,24 +2740,2021_tab14_cgtaxable_count_lt0_all,2021,tab14,cgtaxable,count,Capital gains — number of returns with net loss,lt0,filers,all,17,"$1,500,000 under $2,000,000",22285.0,21in14ar.xls,AB25,28,AB,25 +2741,2021_tab14_cgtaxable_count_lt0_all,2021,tab14,cgtaxable,count,Capital gains — number of returns with net loss,lt0,filers,all,18,"$2,000,000 under $5,000,000",31810.0,21in14ar.xls,AB26,28,AB,26 +2742,2021_tab14_cgtaxable_count_lt0_all,2021,tab14,cgtaxable,count,Capital gains — number of returns with net loss,lt0,filers,all,19,"$5,000,000 under $10,000,000",7274.0,21in14ar.xls,AB27,28,AB,27 +2743,2021_tab14_cgtaxable_count_lt0_all,2021,tab14,cgtaxable,count,Capital gains — number of returns with net loss,lt0,filers,all,20,"$10,000,000 or more",4018.0,21in14ar.xls,AB28,28,AB,28 +2744,2021_tab14_estateincome_amount_gt0_all,2021,tab14,estateincome,amount,Estate and trust net income,gt0,filers,all,1,"All returns, total",49387898000.0,21in14ar.xls,BM9,65,BM,9 +2745,2021_tab14_estateincome_amount_gt0_all,2021,tab14,estateincome,amount,Estate and trust net income,gt0,filers,all,2,No adjusted gross income,488912000.0,21in14ar.xls,BM10,65,BM,10 +2746,2021_tab14_estateincome_amount_gt0_all,2021,tab14,estateincome,amount,Estate and trust net income,gt0,filers,all,3,"$1 under $5,000",10954000.0,21in14ar.xls,BM11,65,BM,11 +2747,2021_tab14_estateincome_amount_gt0_all,2021,tab14,estateincome,amount,Estate and trust net income,gt0,filers,all,4,"$5,000 under $10,000",59889000.0,21in14ar.xls,BM12,65,BM,12 +2748,2021_tab14_estateincome_amount_gt0_all,2021,tab14,estateincome,amount,Estate and trust net income,gt0,filers,all,5,"$10,000 under $15,000",58657000.0,21in14ar.xls,BM13,65,BM,13 +2749,2021_tab14_estateincome_amount_gt0_all,2021,tab14,estateincome,amount,Estate and trust net income,gt0,filers,all,6,"$15,000 under $20,000",143010000.0,21in14ar.xls,BM14,65,BM,14 +2750,2021_tab14_estateincome_amount_gt0_all,2021,tab14,estateincome,amount,Estate and trust net income,gt0,filers,all,7,"$20,000 under $25,000",69961000.0,21in14ar.xls,BM15,65,BM,15 +2751,2021_tab14_estateincome_amount_gt0_all,2021,tab14,estateincome,amount,Estate and trust net income,gt0,filers,all,8,"$25,000 under $30,000",91435000.0,21in14ar.xls,BM16,65,BM,16 +2752,2021_tab14_estateincome_amount_gt0_all,2021,tab14,estateincome,amount,Estate and trust net income,gt0,filers,all,9,"$30,000 under $40,000",128784000.0,21in14ar.xls,BM17,65,BM,17 +2753,2021_tab14_estateincome_amount_gt0_all,2021,tab14,estateincome,amount,Estate and trust net income,gt0,filers,all,10,"$40,000 under $50,000",201827000.0,21in14ar.xls,BM18,65,BM,18 +2754,2021_tab14_estateincome_amount_gt0_all,2021,tab14,estateincome,amount,Estate and trust net income,gt0,filers,all,11,"$50,000 under $75,000",600148000.0,21in14ar.xls,BM19,65,BM,19 +2755,2021_tab14_estateincome_amount_gt0_all,2021,tab14,estateincome,amount,Estate and trust net income,gt0,filers,all,12,"$75,000 under $100,000",889093000.0,21in14ar.xls,BM20,65,BM,20 +2756,2021_tab14_estateincome_amount_gt0_all,2021,tab14,estateincome,amount,Estate and trust net income,gt0,filers,all,13,"$100,000 under $200,000",4607196000.0,21in14ar.xls,BM21,65,BM,21 +2757,2021_tab14_estateincome_amount_gt0_all,2021,tab14,estateincome,amount,Estate and trust net income,gt0,filers,all,14,"$200,000 under $500,000",7211565000.0,21in14ar.xls,BM22,65,BM,22 +2758,2021_tab14_estateincome_amount_gt0_all,2021,tab14,estateincome,amount,Estate and trust net income,gt0,filers,all,15,"$500,000 under $1,000,000",4549574000.0,21in14ar.xls,BM23,65,BM,23 +2759,2021_tab14_estateincome_amount_gt0_all,2021,tab14,estateincome,amount,Estate and trust net income,gt0,filers,all,16,"$1,000,000 under $1,500,000",2716098000.0,21in14ar.xls,BM24,65,BM,24 +2760,2021_tab14_estateincome_amount_gt0_all,2021,tab14,estateincome,amount,Estate and trust net income,gt0,filers,all,17,"$1,500,000 under $2,000,000",1539241000.0,21in14ar.xls,BM25,65,BM,25 +2761,2021_tab14_estateincome_amount_gt0_all,2021,tab14,estateincome,amount,Estate and trust net income,gt0,filers,all,18,"$2,000,000 under $5,000,000",6203776000.0,21in14ar.xls,BM26,65,BM,26 +2762,2021_tab14_estateincome_amount_gt0_all,2021,tab14,estateincome,amount,Estate and trust net income,gt0,filers,all,19,"$5,000,000 under $10,000,000",4243588000.0,21in14ar.xls,BM27,65,BM,27 +2763,2021_tab14_estateincome_amount_gt0_all,2021,tab14,estateincome,amount,Estate and trust net income,gt0,filers,all,20,"$10,000,000 or more",15574190000.0,21in14ar.xls,BM28,65,BM,28 +2764,2021_tab14_estateincome_amount_lt0_all,2021,tab14,estateincome,amount,Estate and trust net loss,lt0,filers,all,1,"All returns, total",5899376000.0,21in14ar.xls,BO9,67,BO,9 +2765,2021_tab14_estateincome_amount_lt0_all,2021,tab14,estateincome,amount,Estate and trust net loss,lt0,filers,all,2,No adjusted gross income,1259085000.0,21in14ar.xls,BO10,67,BO,10 +2766,2021_tab14_estateincome_amount_lt0_all,2021,tab14,estateincome,amount,Estate and trust net loss,lt0,filers,all,3,"$1 under $5,000",3360000.0,21in14ar.xls,BO11,67,BO,11 +2767,2021_tab14_estateincome_amount_lt0_all,2021,tab14,estateincome,amount,Estate and trust net loss,lt0,filers,all,4,"$5,000 under $10,000",121000.0,21in14ar.xls,BO12,67,BO,12 +2768,2021_tab14_estateincome_amount_lt0_all,2021,tab14,estateincome,amount,Estate and trust net loss,lt0,filers,all,5,"$10,000 under $15,000",34976000.0,21in14ar.xls,BO13,67,BO,13 +2769,2021_tab14_estateincome_amount_lt0_all,2021,tab14,estateincome,amount,Estate and trust net loss,lt0,filers,all,6,"$15,000 under $20,000",6988000.0,21in14ar.xls,BO14,67,BO,14 +2770,2021_tab14_estateincome_amount_lt0_all,2021,tab14,estateincome,amount,Estate and trust net loss,lt0,filers,all,7,"$20,000 under $25,000",3736000.0,21in14ar.xls,BO15,67,BO,15 +2771,2021_tab14_estateincome_amount_lt0_all,2021,tab14,estateincome,amount,Estate and trust net loss,lt0,filers,all,8,"$25,000 under $30,000",833000.0,21in14ar.xls,BO16,67,BO,16 +2772,2021_tab14_estateincome_amount_lt0_all,2021,tab14,estateincome,amount,Estate and trust net loss,lt0,filers,all,9,"$30,000 under $40,000",39521000.0,21in14ar.xls,BO17,67,BO,17 +2773,2021_tab14_estateincome_amount_lt0_all,2021,tab14,estateincome,amount,Estate and trust net loss,lt0,filers,all,10,"$40,000 under $50,000",10079000.0,21in14ar.xls,BO18,67,BO,18 +2774,2021_tab14_estateincome_amount_lt0_all,2021,tab14,estateincome,amount,Estate and trust net loss,lt0,filers,all,11,"$50,000 under $75,000",93978000.0,21in14ar.xls,BO19,67,BO,19 +2775,2021_tab14_estateincome_amount_lt0_all,2021,tab14,estateincome,amount,Estate and trust net loss,lt0,filers,all,12,"$75,000 under $100,000",35427000.0,21in14ar.xls,BO20,67,BO,20 +2776,2021_tab14_estateincome_amount_lt0_all,2021,tab14,estateincome,amount,Estate and trust net loss,lt0,filers,all,13,"$100,000 under $200,000",99732000.0,21in14ar.xls,BO21,67,BO,21 +2777,2021_tab14_estateincome_amount_lt0_all,2021,tab14,estateincome,amount,Estate and trust net loss,lt0,filers,all,14,"$200,000 under $500,000",278211000.0,21in14ar.xls,BO22,67,BO,22 +2778,2021_tab14_estateincome_amount_lt0_all,2021,tab14,estateincome,amount,Estate and trust net loss,lt0,filers,all,15,"$500,000 under $1,000,000",243152000.0,21in14ar.xls,BO23,67,BO,23 +2779,2021_tab14_estateincome_amount_lt0_all,2021,tab14,estateincome,amount,Estate and trust net loss,lt0,filers,all,16,"$1,000,000 under $1,500,000",209182000.0,21in14ar.xls,BO24,67,BO,24 +2780,2021_tab14_estateincome_amount_lt0_all,2021,tab14,estateincome,amount,Estate and trust net loss,lt0,filers,all,17,"$1,500,000 under $2,000,000",123348000.0,21in14ar.xls,BO25,67,BO,25 +2781,2021_tab14_estateincome_amount_lt0_all,2021,tab14,estateincome,amount,Estate and trust net loss,lt0,filers,all,18,"$2,000,000 under $5,000,000",490805000.0,21in14ar.xls,BO26,67,BO,26 +2782,2021_tab14_estateincome_amount_lt0_all,2021,tab14,estateincome,amount,Estate and trust net loss,lt0,filers,all,19,"$5,000,000 under $10,000,000",298217000.0,21in14ar.xls,BO27,67,BO,27 +2783,2021_tab14_estateincome_amount_lt0_all,2021,tab14,estateincome,amount,Estate and trust net loss,lt0,filers,all,20,"$10,000,000 or more",2668626000.0,21in14ar.xls,BO28,67,BO,28 +2784,2021_tab14_estateincome_count_gt0_all,2021,tab14,estateincome,count,Estate/trust income — number with income,gt0,filers,all,1,"All returns, total",624529.0,21in14ar.xls,BL9,64,BL,9 +2785,2021_tab14_estateincome_count_gt0_all,2021,tab14,estateincome,count,Estate/trust income — number with income,gt0,filers,all,2,No adjusted gross income,10588.0,21in14ar.xls,BL10,64,BL,10 +2786,2021_tab14_estateincome_count_gt0_all,2021,tab14,estateincome,count,Estate/trust income — number with income,gt0,filers,all,3,"$1 under $5,000",4262.0,21in14ar.xls,BL11,64,BL,11 +2787,2021_tab14_estateincome_count_gt0_all,2021,tab14,estateincome,count,Estate/trust income — number with income,gt0,filers,all,4,"$5,000 under $10,000",7292.0,21in14ar.xls,BL12,64,BL,12 +2788,2021_tab14_estateincome_count_gt0_all,2021,tab14,estateincome,count,Estate/trust income — number with income,gt0,filers,all,5,"$10,000 under $15,000",6417.0,21in14ar.xls,BL13,64,BL,13 +2789,2021_tab14_estateincome_count_gt0_all,2021,tab14,estateincome,count,Estate/trust income — number with income,gt0,filers,all,6,"$15,000 under $20,000",17044.0,21in14ar.xls,BL14,64,BL,14 +2790,2021_tab14_estateincome_count_gt0_all,2021,tab14,estateincome,count,Estate/trust income — number with income,gt0,filers,all,7,"$20,000 under $25,000",10425.0,21in14ar.xls,BL15,64,BL,15 +2791,2021_tab14_estateincome_count_gt0_all,2021,tab14,estateincome,count,Estate/trust income — number with income,gt0,filers,all,8,"$25,000 under $30,000",9174.0,21in14ar.xls,BL16,64,BL,16 +2792,2021_tab14_estateincome_count_gt0_all,2021,tab14,estateincome,count,Estate/trust income — number with income,gt0,filers,all,9,"$30,000 under $40,000",17740.0,21in14ar.xls,BL17,64,BL,17 +2793,2021_tab14_estateincome_count_gt0_all,2021,tab14,estateincome,count,Estate/trust income — number with income,gt0,filers,all,10,"$40,000 under $50,000",15074.0,21in14ar.xls,BL18,64,BL,18 +2794,2021_tab14_estateincome_count_gt0_all,2021,tab14,estateincome,count,Estate/trust income — number with income,gt0,filers,all,11,"$50,000 under $75,000",45850.0,21in14ar.xls,BL19,64,BL,19 +2795,2021_tab14_estateincome_count_gt0_all,2021,tab14,estateincome,count,Estate/trust income — number with income,gt0,filers,all,12,"$75,000 under $100,000",66873.0,21in14ar.xls,BL20,64,BL,20 +2796,2021_tab14_estateincome_count_gt0_all,2021,tab14,estateincome,count,Estate/trust income — number with income,gt0,filers,all,13,"$100,000 under $200,000",179736.0,21in14ar.xls,BL21,64,BL,21 +2797,2021_tab14_estateincome_count_gt0_all,2021,tab14,estateincome,count,Estate/trust income — number with income,gt0,filers,all,14,"$200,000 under $500,000",146691.0,21in14ar.xls,BL22,64,BL,22 +2798,2021_tab14_estateincome_count_gt0_all,2021,tab14,estateincome,count,Estate/trust income — number with income,gt0,filers,all,15,"$500,000 under $1,000,000",44278.0,21in14ar.xls,BL23,64,BL,23 +2799,2021_tab14_estateincome_count_gt0_all,2021,tab14,estateincome,count,Estate/trust income — number with income,gt0,filers,all,16,"$1,000,000 under $1,500,000",13733.0,21in14ar.xls,BL24,64,BL,24 +2800,2021_tab14_estateincome_count_gt0_all,2021,tab14,estateincome,count,Estate/trust income — number with income,gt0,filers,all,17,"$1,500,000 under $2,000,000",6620.0,21in14ar.xls,BL25,64,BL,25 +2801,2021_tab14_estateincome_count_gt0_all,2021,tab14,estateincome,count,Estate/trust income — number with income,gt0,filers,all,18,"$2,000,000 under $5,000,000",13765.0,21in14ar.xls,BL26,64,BL,26 +2802,2021_tab14_estateincome_count_gt0_all,2021,tab14,estateincome,count,Estate/trust income — number with income,gt0,filers,all,19,"$5,000,000 under $10,000,000",4783.0,21in14ar.xls,BL27,64,BL,27 +2803,2021_tab14_estateincome_count_gt0_all,2021,tab14,estateincome,count,Estate/trust income — number with income,gt0,filers,all,20,"$10,000,000 or more",4186.0,21in14ar.xls,BL28,64,BL,28 +2804,2021_tab14_estateincome_count_lt0_all,2021,tab14,estateincome,count,Estate/trust income — number with loss,lt0,filers,all,1,"All returns, total",49450.0,21in14ar.xls,BN9,66,BN,9 +2805,2021_tab14_estateincome_count_lt0_all,2021,tab14,estateincome,count,Estate/trust income — number with loss,lt0,filers,all,2,No adjusted gross income,4170.0,21in14ar.xls,BN10,66,BN,10 +2806,2021_tab14_estateincome_count_lt0_all,2021,tab14,estateincome,count,Estate/trust income — number with loss,lt0,filers,all,3,"$1 under $5,000",2616.0,21in14ar.xls,BN11,66,BN,11 +2807,2021_tab14_estateincome_count_lt0_all,2021,tab14,estateincome,count,Estate/trust income — number with loss,lt0,filers,all,4,"$5,000 under $10,000",31.0,21in14ar.xls,BN12,66,BN,12 +2808,2021_tab14_estateincome_count_lt0_all,2021,tab14,estateincome,count,Estate/trust income — number with loss,lt0,filers,all,5,"$10,000 under $15,000",1375.0,21in14ar.xls,BN13,66,BN,13 +2809,2021_tab14_estateincome_count_lt0_all,2021,tab14,estateincome,count,Estate/trust income — number with loss,lt0,filers,all,6,"$15,000 under $20,000",16.0,21in14ar.xls,BN14,66,BN,14 +2810,2021_tab14_estateincome_count_lt0_all,2021,tab14,estateincome,count,Estate/trust income — number with loss,lt0,filers,all,7,"$20,000 under $25,000",16.0,21in14ar.xls,BN15,66,BN,15 +2811,2021_tab14_estateincome_count_lt0_all,2021,tab14,estateincome,count,Estate/trust income — number with loss,lt0,filers,all,8,"$25,000 under $30,000",54.0,21in14ar.xls,BN16,66,BN,16 +2812,2021_tab14_estateincome_count_lt0_all,2021,tab14,estateincome,count,Estate/trust income — number with loss,lt0,filers,all,9,"$30,000 under $40,000",2217.0,21in14ar.xls,BN17,66,BN,17 +2813,2021_tab14_estateincome_count_lt0_all,2021,tab14,estateincome,count,Estate/trust income — number with loss,lt0,filers,all,10,"$40,000 under $50,000",368.0,21in14ar.xls,BN18,66,BN,18 +2814,2021_tab14_estateincome_count_lt0_all,2021,tab14,estateincome,count,Estate/trust income — number with loss,lt0,filers,all,11,"$50,000 under $75,000",1337.0,21in14ar.xls,BN19,66,BN,19 +2815,2021_tab14_estateincome_count_lt0_all,2021,tab14,estateincome,count,Estate/trust income — number with loss,lt0,filers,all,12,"$75,000 under $100,000",4539.0,21in14ar.xls,BN20,66,BN,20 +2816,2021_tab14_estateincome_count_lt0_all,2021,tab14,estateincome,count,Estate/trust income — number with loss,lt0,filers,all,13,"$100,000 under $200,000",11440.0,21in14ar.xls,BN21,66,BN,21 +2817,2021_tab14_estateincome_count_lt0_all,2021,tab14,estateincome,count,Estate/trust income — number with loss,lt0,filers,all,14,"$200,000 under $500,000",8183.0,21in14ar.xls,BN22,66,BN,22 +2818,2021_tab14_estateincome_count_lt0_all,2021,tab14,estateincome,count,Estate/trust income — number with loss,lt0,filers,all,15,"$500,000 under $1,000,000",3901.0,21in14ar.xls,BN23,66,BN,23 +2819,2021_tab14_estateincome_count_lt0_all,2021,tab14,estateincome,count,Estate/trust income — number with loss,lt0,filers,all,16,"$1,000,000 under $1,500,000",2120.0,21in14ar.xls,BN24,66,BN,24 +2820,2021_tab14_estateincome_count_lt0_all,2021,tab14,estateincome,count,Estate/trust income — number with loss,lt0,filers,all,17,"$1,500,000 under $2,000,000",1229.0,21in14ar.xls,BN25,66,BN,25 +2821,2021_tab14_estateincome_count_lt0_all,2021,tab14,estateincome,count,Estate/trust income — number with loss,lt0,filers,all,18,"$2,000,000 under $5,000,000",2632.0,21in14ar.xls,BN26,66,BN,26 +2822,2021_tab14_estateincome_count_lt0_all,2021,tab14,estateincome,count,Estate/trust income — number with loss,lt0,filers,all,19,"$5,000,000 under $10,000,000",1387.0,21in14ar.xls,BN27,66,BN,27 +2823,2021_tab14_estateincome_count_lt0_all,2021,tab14,estateincome,count,Estate/trust income — number with loss,lt0,filers,all,20,"$10,000,000 or more",1817.0,21in14ar.xls,BN28,66,BN,28 +2824,2021_tab14_exemptint_amount_nz_all,2021,tab14,exemptint,amount,Tax-exempt interest,nz,filers,all,1,"All returns, total",55518422000.0,21in14ar.xls,K9,11,K,9 +2825,2021_tab14_exemptint_amount_nz_all,2021,tab14,exemptint,amount,Tax-exempt interest,nz,filers,all,2,No adjusted gross income,958274000.0,21in14ar.xls,K10,11,K,10 +2826,2021_tab14_exemptint_amount_nz_all,2021,tab14,exemptint,amount,Tax-exempt interest,nz,filers,all,3,"$1 under $5,000",88126000.0,21in14ar.xls,K11,11,K,11 +2827,2021_tab14_exemptint_amount_nz_all,2021,tab14,exemptint,amount,Tax-exempt interest,nz,filers,all,4,"$5,000 under $10,000",202799000.0,21in14ar.xls,K12,11,K,12 +2828,2021_tab14_exemptint_amount_nz_all,2021,tab14,exemptint,amount,Tax-exempt interest,nz,filers,all,5,"$10,000 under $15,000",190552000.0,21in14ar.xls,K13,11,K,13 +2829,2021_tab14_exemptint_amount_nz_all,2021,tab14,exemptint,amount,Tax-exempt interest,nz,filers,all,6,"$15,000 under $20,000",166021000.0,21in14ar.xls,K14,11,K,14 +2830,2021_tab14_exemptint_amount_nz_all,2021,tab14,exemptint,amount,Tax-exempt interest,nz,filers,all,7,"$20,000 under $25,000",254288000.0,21in14ar.xls,K15,11,K,15 +2831,2021_tab14_exemptint_amount_nz_all,2021,tab14,exemptint,amount,Tax-exempt interest,nz,filers,all,8,"$25,000 under $30,000",183046000.0,21in14ar.xls,K16,11,K,16 +2832,2021_tab14_exemptint_amount_nz_all,2021,tab14,exemptint,amount,Tax-exempt interest,nz,filers,all,9,"$30,000 under $40,000",485953000.0,21in14ar.xls,K17,11,K,17 +2833,2021_tab14_exemptint_amount_nz_all,2021,tab14,exemptint,amount,Tax-exempt interest,nz,filers,all,10,"$40,000 under $50,000",674362000.0,21in14ar.xls,K18,11,K,18 +2834,2021_tab14_exemptint_amount_nz_all,2021,tab14,exemptint,amount,Tax-exempt interest,nz,filers,all,11,"$50,000 under $75,000",1839498000.0,21in14ar.xls,K19,11,K,19 +2835,2021_tab14_exemptint_amount_nz_all,2021,tab14,exemptint,amount,Tax-exempt interest,nz,filers,all,12,"$75,000 under $100,000",1906837000.0,21in14ar.xls,K20,11,K,20 +2836,2021_tab14_exemptint_amount_nz_all,2021,tab14,exemptint,amount,Tax-exempt interest,nz,filers,all,13,"$100,000 under $200,000",8917871000.0,21in14ar.xls,K21,11,K,21 +2837,2021_tab14_exemptint_amount_nz_all,2021,tab14,exemptint,amount,Tax-exempt interest,nz,filers,all,14,"$200,000 under $500,000",11404390000.0,21in14ar.xls,K22,11,K,22 +2838,2021_tab14_exemptint_amount_nz_all,2021,tab14,exemptint,amount,Tax-exempt interest,nz,filers,all,15,"$500,000 under $1,000,000",7414214000.0,21in14ar.xls,K23,11,K,23 +2839,2021_tab14_exemptint_amount_nz_all,2021,tab14,exemptint,amount,Tax-exempt interest,nz,filers,all,16,"$1,000,000 under $1,500,000",3473707000.0,21in14ar.xls,K24,11,K,24 +2840,2021_tab14_exemptint_amount_nz_all,2021,tab14,exemptint,amount,Tax-exempt interest,nz,filers,all,17,"$1,500,000 under $2,000,000",2253316000.0,21in14ar.xls,K25,11,K,25 +2841,2021_tab14_exemptint_amount_nz_all,2021,tab14,exemptint,amount,Tax-exempt interest,nz,filers,all,18,"$2,000,000 under $5,000,000",5638265000.0,21in14ar.xls,K26,11,K,26 +2842,2021_tab14_exemptint_amount_nz_all,2021,tab14,exemptint,amount,Tax-exempt interest,nz,filers,all,19,"$5,000,000 under $10,000,000",3138614000.0,21in14ar.xls,K27,11,K,27 +2843,2021_tab14_exemptint_amount_nz_all,2021,tab14,exemptint,amount,Tax-exempt interest,nz,filers,all,20,"$10,000,000 or more",6328290000.0,21in14ar.xls,K28,11,K,28 +2844,2021_tab14_exemptint_count_nz_all,2021,tab14,exemptint,count,Tax-exempt interest — number of returns,nz,filers,all,1,"All returns, total",6569327.0,21in14ar.xls,J9,10,J,9 +2845,2021_tab14_exemptint_count_nz_all,2021,tab14,exemptint,count,Tax-exempt interest — number of returns,nz,filers,all,2,No adjusted gross income,57924.0,21in14ar.xls,J10,10,J,10 +2846,2021_tab14_exemptint_count_nz_all,2021,tab14,exemptint,count,Tax-exempt interest — number of returns,nz,filers,all,3,"$1 under $5,000",81923.0,21in14ar.xls,J11,10,J,11 +2847,2021_tab14_exemptint_count_nz_all,2021,tab14,exemptint,count,Tax-exempt interest — number of returns,nz,filers,all,4,"$5,000 under $10,000",73701.0,21in14ar.xls,J12,10,J,12 +2848,2021_tab14_exemptint_count_nz_all,2021,tab14,exemptint,count,Tax-exempt interest — number of returns,nz,filers,all,5,"$10,000 under $15,000",88828.0,21in14ar.xls,J13,10,J,13 +2849,2021_tab14_exemptint_count_nz_all,2021,tab14,exemptint,count,Tax-exempt interest — number of returns,nz,filers,all,6,"$15,000 under $20,000",86676.0,21in14ar.xls,J14,10,J,14 +2850,2021_tab14_exemptint_count_nz_all,2021,tab14,exemptint,count,Tax-exempt interest — number of returns,nz,filers,all,7,"$20,000 under $25,000",83587.0,21in14ar.xls,J15,10,J,15 +2851,2021_tab14_exemptint_count_nz_all,2021,tab14,exemptint,count,Tax-exempt interest — number of returns,nz,filers,all,8,"$25,000 under $30,000",84213.0,21in14ar.xls,J16,10,J,16 +2852,2021_tab14_exemptint_count_nz_all,2021,tab14,exemptint,count,Tax-exempt interest — number of returns,nz,filers,all,9,"$30,000 under $40,000",185185.0,21in14ar.xls,J17,10,J,17 +2853,2021_tab14_exemptint_count_nz_all,2021,tab14,exemptint,count,Tax-exempt interest — number of returns,nz,filers,all,10,"$40,000 under $50,000",241353.0,21in14ar.xls,J18,10,J,18 +2854,2021_tab14_exemptint_count_nz_all,2021,tab14,exemptint,count,Tax-exempt interest — number of returns,nz,filers,all,11,"$50,000 under $75,000",639872.0,21in14ar.xls,J19,10,J,19 +2855,2021_tab14_exemptint_count_nz_all,2021,tab14,exemptint,count,Tax-exempt interest — number of returns,nz,filers,all,12,"$75,000 under $100,000",630282.0,21in14ar.xls,J20,10,J,20 +2856,2021_tab14_exemptint_count_nz_all,2021,tab14,exemptint,count,Tax-exempt interest — number of returns,nz,filers,all,13,"$100,000 under $200,000",1867180.0,21in14ar.xls,J21,10,J,21 +2857,2021_tab14_exemptint_count_nz_all,2021,tab14,exemptint,count,Tax-exempt interest — number of returns,nz,filers,all,14,"$200,000 under $500,000",1535001.0,21in14ar.xls,J22,10,J,22 +2858,2021_tab14_exemptint_count_nz_all,2021,tab14,exemptint,count,Tax-exempt interest — number of returns,nz,filers,all,15,"$500,000 under $1,000,000",509107.0,21in14ar.xls,J23,10,J,23 +2859,2021_tab14_exemptint_count_nz_all,2021,tab14,exemptint,count,Tax-exempt interest — number of returns,nz,filers,all,16,"$1,000,000 under $1,500,000",148862.0,21in14ar.xls,J24,10,J,24 +2860,2021_tab14_exemptint_count_nz_all,2021,tab14,exemptint,count,Tax-exempt interest — number of returns,nz,filers,all,17,"$1,500,000 under $2,000,000",69529.0,21in14ar.xls,J25,10,J,25 +2861,2021_tab14_exemptint_count_nz_all,2021,tab14,exemptint,count,Tax-exempt interest — number of returns,nz,filers,all,18,"$2,000,000 under $5,000,000",118422.0,21in14ar.xls,J26,10,J,26 +2862,2021_tab14_exemptint_count_nz_all,2021,tab14,exemptint,count,Tax-exempt interest — number of returns,nz,filers,all,19,"$5,000,000 under $10,000,000",37253.0,21in14ar.xls,J27,10,J,27 +2863,2021_tab14_exemptint_count_nz_all,2021,tab14,exemptint,count,Tax-exempt interest — number of returns,nz,filers,all,20,"$10,000,000 or more",30429.0,21in14ar.xls,J28,10,J,28 +2864,2021_tab14_iradist_amount_nz_all,2021,tab14,iradist,amount,IRA distributions,nz,filers,all,1,"All returns, total",408382461000.0,21in14ar.xls,AI9,35,AI,9 +2865,2021_tab14_iradist_amount_nz_all,2021,tab14,iradist,amount,IRA distributions,nz,filers,all,2,No adjusted gross income,1992887000.0,21in14ar.xls,AI10,35,AI,10 +2866,2021_tab14_iradist_amount_nz_all,2021,tab14,iradist,amount,IRA distributions,nz,filers,all,3,"$1 under $5,000",803551000.0,21in14ar.xls,AI11,35,AI,11 +2867,2021_tab14_iradist_amount_nz_all,2021,tab14,iradist,amount,IRA distributions,nz,filers,all,4,"$5,000 under $10,000",2565706000.0,21in14ar.xls,AI12,35,AI,12 +2868,2021_tab14_iradist_amount_nz_all,2021,tab14,iradist,amount,IRA distributions,nz,filers,all,5,"$10,000 under $15,000",3938974000.0,21in14ar.xls,AI13,35,AI,13 +2869,2021_tab14_iradist_amount_nz_all,2021,tab14,iradist,amount,IRA distributions,nz,filers,all,6,"$15,000 under $20,000",4783292000.0,21in14ar.xls,AI14,35,AI,14 +2870,2021_tab14_iradist_amount_nz_all,2021,tab14,iradist,amount,IRA distributions,nz,filers,all,7,"$20,000 under $25,000",4888488000.0,21in14ar.xls,AI15,35,AI,15 +2871,2021_tab14_iradist_amount_nz_all,2021,tab14,iradist,amount,IRA distributions,nz,filers,all,8,"$25,000 under $30,000",5079260000.0,21in14ar.xls,AI16,35,AI,16 +2872,2021_tab14_iradist_amount_nz_all,2021,tab14,iradist,amount,IRA distributions,nz,filers,all,9,"$30,000 under $40,000",9886903000.0,21in14ar.xls,AI17,35,AI,17 +2873,2021_tab14_iradist_amount_nz_all,2021,tab14,iradist,amount,IRA distributions,nz,filers,all,10,"$40,000 under $50,000",11265236000.0,21in14ar.xls,AI18,35,AI,18 +2874,2021_tab14_iradist_amount_nz_all,2021,tab14,iradist,amount,IRA distributions,nz,filers,all,11,"$50,000 under $75,000",32852491000.0,21in14ar.xls,AI19,35,AI,19 +2875,2021_tab14_iradist_amount_nz_all,2021,tab14,iradist,amount,IRA distributions,nz,filers,all,12,"$75,000 under $100,000",39055981000.0,21in14ar.xls,AI20,35,AI,20 +2876,2021_tab14_iradist_amount_nz_all,2021,tab14,iradist,amount,IRA distributions,nz,filers,all,13,"$100,000 under $200,000",131891844000.0,21in14ar.xls,AI21,35,AI,21 +2877,2021_tab14_iradist_amount_nz_all,2021,tab14,iradist,amount,IRA distributions,nz,filers,all,14,"$200,000 under $500,000",108787482000.0,21in14ar.xls,AI22,35,AI,22 +2878,2021_tab14_iradist_amount_nz_all,2021,tab14,iradist,amount,IRA distributions,nz,filers,all,15,"$500,000 under $1,000,000",25693093000.0,21in14ar.xls,AI23,35,AI,23 +2879,2021_tab14_iradist_amount_nz_all,2021,tab14,iradist,amount,IRA distributions,nz,filers,all,16,"$1,000,000 under $1,500,000",6573862000.0,21in14ar.xls,AI24,35,AI,24 +2880,2021_tab14_iradist_amount_nz_all,2021,tab14,iradist,amount,IRA distributions,nz,filers,all,17,"$1,500,000 under $2,000,000",3313664000.0,21in14ar.xls,AI25,35,AI,25 +2881,2021_tab14_iradist_amount_nz_all,2021,tab14,iradist,amount,IRA distributions,nz,filers,all,18,"$2,000,000 under $5,000,000",7074590000.0,21in14ar.xls,AI26,35,AI,26 +2882,2021_tab14_iradist_amount_nz_all,2021,tab14,iradist,amount,IRA distributions,nz,filers,all,19,"$5,000,000 under $10,000,000",3128843000.0,21in14ar.xls,AI27,35,AI,27 +2883,2021_tab14_iradist_amount_nz_all,2021,tab14,iradist,amount,IRA distributions,nz,filers,all,20,"$10,000,000 or more",4806315000.0,21in14ar.xls,AI28,35,AI,28 +2884,2021_tab14_iradist_count_nz_all,2021,tab14,iradist,count,IRA distributions — number of returns,nz,filers,all,1,"All returns, total",15584165.0,21in14ar.xls,AH9,34,AH,9 +2885,2021_tab14_iradist_count_nz_all,2021,tab14,iradist,count,IRA distributions — number of returns,nz,filers,all,2,No adjusted gross income,114208.0,21in14ar.xls,AH10,34,AH,10 +2886,2021_tab14_iradist_count_nz_all,2021,tab14,iradist,count,IRA distributions — number of returns,nz,filers,all,3,"$1 under $5,000",291248.0,21in14ar.xls,AH11,34,AH,11 +2887,2021_tab14_iradist_count_nz_all,2021,tab14,iradist,count,IRA distributions — number of returns,nz,filers,all,4,"$5,000 under $10,000",505204.0,21in14ar.xls,AH12,34,AH,12 +2888,2021_tab14_iradist_count_nz_all,2021,tab14,iradist,count,IRA distributions — number of returns,nz,filers,all,5,"$10,000 under $15,000",557286.0,21in14ar.xls,AH13,34,AH,13 +2889,2021_tab14_iradist_count_nz_all,2021,tab14,iradist,count,IRA distributions — number of returns,nz,filers,all,6,"$15,000 under $20,000",545318.0,21in14ar.xls,AH14,34,AH,14 +2890,2021_tab14_iradist_count_nz_all,2021,tab14,iradist,count,IRA distributions — number of returns,nz,filers,all,7,"$20,000 under $25,000",490238.0,21in14ar.xls,AH15,34,AH,15 +2891,2021_tab14_iradist_count_nz_all,2021,tab14,iradist,count,IRA distributions — number of returns,nz,filers,all,8,"$25,000 under $30,000",509524.0,21in14ar.xls,AH16,34,AH,16 +2892,2021_tab14_iradist_count_nz_all,2021,tab14,iradist,count,IRA distributions — number of returns,nz,filers,all,9,"$30,000 under $40,000",887479.0,21in14ar.xls,AH17,34,AH,17 +2893,2021_tab14_iradist_count_nz_all,2021,tab14,iradist,count,IRA distributions — number of returns,nz,filers,all,10,"$40,000 under $50,000",926489.0,21in14ar.xls,AH18,34,AH,18 +2894,2021_tab14_iradist_count_nz_all,2021,tab14,iradist,count,IRA distributions — number of returns,nz,filers,all,11,"$50,000 under $75,000",2255659.0,21in14ar.xls,AH19,34,AH,19 +2895,2021_tab14_iradist_count_nz_all,2021,tab14,iradist,count,IRA distributions — number of returns,nz,filers,all,12,"$75,000 under $100,000",2007006.0,21in14ar.xls,AH20,34,AH,20 +2896,2021_tab14_iradist_count_nz_all,2021,tab14,iradist,count,IRA distributions — number of returns,nz,filers,all,13,"$100,000 under $200,000",4181158.0,21in14ar.xls,AH21,34,AH,21 +2897,2021_tab14_iradist_count_nz_all,2021,tab14,iradist,count,IRA distributions — number of returns,nz,filers,all,14,"$200,000 under $500,000",1849303.0,21in14ar.xls,AH22,34,AH,22 +2898,2021_tab14_iradist_count_nz_all,2021,tab14,iradist,count,IRA distributions — number of returns,nz,filers,all,15,"$500,000 under $1,000,000",308885.0,21in14ar.xls,AH23,34,AH,23 +2899,2021_tab14_iradist_count_nz_all,2021,tab14,iradist,count,IRA distributions — number of returns,nz,filers,all,16,"$1,000,000 under $1,500,000",67779.0,21in14ar.xls,AH24,34,AH,24 +2900,2021_tab14_iradist_count_nz_all,2021,tab14,iradist,count,IRA distributions — number of returns,nz,filers,all,17,"$1,500,000 under $2,000,000",28426.0,21in14ar.xls,AH25,34,AH,25 +2901,2021_tab14_iradist_count_nz_all,2021,tab14,iradist,count,IRA distributions — number of returns,nz,filers,all,18,"$2,000,000 under $5,000,000",41232.0,21in14ar.xls,AH26,34,AH,26 +2902,2021_tab14_iradist_count_nz_all,2021,tab14,iradist,count,IRA distributions — number of returns,nz,filers,all,19,"$5,000,000 under $10,000,000",10727.0,21in14ar.xls,AH27,34,AH,27 +2903,2021_tab14_iradist_count_nz_all,2021,tab14,iradist,count,IRA distributions — number of returns,nz,filers,all,20,"$10,000,000 or more",6996.0,21in14ar.xls,AH28,34,AH,28 +2904,2021_tab14_itemded_amount_nz_all,2021,tab14,itemded,amount,Total itemized deductions,nz,filers,all,1,"All returns, total",659680547000.0,21in14ar.xls,DW9,127,DW,9 +2905,2021_tab14_itemded_amount_nz_all,2021,tab14,itemded,amount,Total itemized deductions,nz,filers,all,2,No adjusted gross income,0.0,21in14ar.xls,DW10,127,DW,10 +2906,2021_tab14_itemded_amount_nz_all,2021,tab14,itemded,amount,Total itemized deductions,nz,filers,all,3,"$1 under $5,000",1871637000.0,21in14ar.xls,DW11,127,DW,11 +2907,2021_tab14_itemded_amount_nz_all,2021,tab14,itemded,amount,Total itemized deductions,nz,filers,all,4,"$5,000 under $10,000",2292492000.0,21in14ar.xls,DW12,127,DW,12 +2908,2021_tab14_itemded_amount_nz_all,2021,tab14,itemded,amount,Total itemized deductions,nz,filers,all,5,"$10,000 under $15,000",2804369000.0,21in14ar.xls,DW13,127,DW,13 +2909,2021_tab14_itemded_amount_nz_all,2021,tab14,itemded,amount,Total itemized deductions,nz,filers,all,6,"$15,000 under $20,000",4775555000.0,21in14ar.xls,DW14,127,DW,14 +2910,2021_tab14_itemded_amount_nz_all,2021,tab14,itemded,amount,Total itemized deductions,nz,filers,all,7,"$20,000 under $25,000",4285472000.0,21in14ar.xls,DW15,127,DW,15 +2911,2021_tab14_itemded_amount_nz_all,2021,tab14,itemded,amount,Total itemized deductions,nz,filers,all,8,"$25,000 under $30,000",4765016000.0,21in14ar.xls,DW16,127,DW,16 +2912,2021_tab14_itemded_amount_nz_all,2021,tab14,itemded,amount,Total itemized deductions,nz,filers,all,9,"$30,000 under $40,000",12606528000.0,21in14ar.xls,DW17,127,DW,17 +2913,2021_tab14_itemded_amount_nz_all,2021,tab14,itemded,amount,Total itemized deductions,nz,filers,all,10,"$40,000 under $50,000",15706593000.0,21in14ar.xls,DW18,127,DW,18 +2914,2021_tab14_itemded_amount_nz_all,2021,tab14,itemded,amount,Total itemized deductions,nz,filers,all,11,"$50,000 under $75,000",47466699000.0,21in14ar.xls,DW19,127,DW,19 +2915,2021_tab14_itemded_amount_nz_all,2021,tab14,itemded,amount,Total itemized deductions,nz,filers,all,12,"$75,000 under $100,000",54706812000.0,21in14ar.xls,DW20,127,DW,20 +2916,2021_tab14_itemded_amount_nz_all,2021,tab14,itemded,amount,Total itemized deductions,nz,filers,all,13,"$100,000 under $200,000",138751518000.0,21in14ar.xls,DW21,127,DW,21 +2917,2021_tab14_itemded_amount_nz_all,2021,tab14,itemded,amount,Total itemized deductions,nz,filers,all,14,"$200,000 under $500,000",124480962000.0,21in14ar.xls,DW22,127,DW,22 +2918,2021_tab14_itemded_amount_nz_all,2021,tab14,itemded,amount,Total itemized deductions,nz,filers,all,15,"$500,000 under $1,000,000",49971545000.0,21in14ar.xls,DW23,127,DW,23 +2919,2021_tab14_itemded_amount_nz_all,2021,tab14,itemded,amount,Total itemized deductions,nz,filers,all,16,"$1,000,000 under $1,500,000",20103248000.0,21in14ar.xls,DW24,127,DW,24 +2920,2021_tab14_itemded_amount_nz_all,2021,tab14,itemded,amount,Total itemized deductions,nz,filers,all,17,"$1,500,000 under $2,000,000",11864113000.0,21in14ar.xls,DW25,127,DW,25 +2921,2021_tab14_itemded_amount_nz_all,2021,tab14,itemded,amount,Total itemized deductions,nz,filers,all,18,"$2,000,000 under $5,000,000",31470281000.0,21in14ar.xls,DW26,127,DW,26 +2922,2021_tab14_itemded_amount_nz_all,2021,tab14,itemded,amount,Total itemized deductions,nz,filers,all,19,"$5,000,000 under $10,000,000",19991637000.0,21in14ar.xls,DW27,127,DW,27 +2923,2021_tab14_itemded_amount_nz_all,2021,tab14,itemded,amount,Total itemized deductions,nz,filers,all,20,"$10,000,000 or more",111766070000.0,21in14ar.xls,DW28,127,DW,28 +2924,2021_tab14_itemded_count_nz_all,2021,tab14,itemded,count,Itemized deductions — number of returns,nz,filers,all,1,"All returns, total",14842685.0,21in14ar.xls,DV9,126,DV,9 +2925,2021_tab14_itemded_count_nz_all,2021,tab14,itemded,count,Itemized deductions — number of returns,nz,filers,all,2,No adjusted gross income,0.0,21in14ar.xls,DV10,126,DV,10 +2926,2021_tab14_itemded_count_nz_all,2021,tab14,itemded,count,Itemized deductions — number of returns,nz,filers,all,3,"$1 under $5,000",80236.0,21in14ar.xls,DV11,126,DV,11 +2927,2021_tab14_itemded_count_nz_all,2021,tab14,itemded,count,Itemized deductions — number of returns,nz,filers,all,4,"$5,000 under $10,000",93583.0,21in14ar.xls,DV12,126,DV,12 +2928,2021_tab14_itemded_count_nz_all,2021,tab14,itemded,count,Itemized deductions — number of returns,nz,filers,all,5,"$10,000 under $15,000",109149.0,21in14ar.xls,DV13,126,DV,13 +2929,2021_tab14_itemded_count_nz_all,2021,tab14,itemded,count,Itemized deductions — number of returns,nz,filers,all,6,"$15,000 under $20,000",161030.0,21in14ar.xls,DV14,126,DV,14 +2930,2021_tab14_itemded_count_nz_all,2021,tab14,itemded,count,Itemized deductions — number of returns,nz,filers,all,7,"$20,000 under $25,000",167731.0,21in14ar.xls,DV15,126,DV,15 +2931,2021_tab14_itemded_count_nz_all,2021,tab14,itemded,count,Itemized deductions — number of returns,nz,filers,all,8,"$25,000 under $30,000",193007.0,21in14ar.xls,DV16,126,DV,16 +2932,2021_tab14_itemded_count_nz_all,2021,tab14,itemded,count,Itemized deductions — number of returns,nz,filers,all,9,"$30,000 under $40,000",467215.0,21in14ar.xls,DV17,126,DV,17 +2933,2021_tab14_itemded_count_nz_all,2021,tab14,itemded,count,Itemized deductions — number of returns,nz,filers,all,10,"$40,000 under $50,000",614463.0,21in14ar.xls,DV18,126,DV,18 +2934,2021_tab14_itemded_count_nz_all,2021,tab14,itemded,count,Itemized deductions — number of returns,nz,filers,all,11,"$50,000 under $75,000",1841364.0,21in14ar.xls,DV19,126,DV,19 +2935,2021_tab14_itemded_count_nz_all,2021,tab14,itemded,count,Itemized deductions — number of returns,nz,filers,all,12,"$75,000 under $100,000",1985056.0,21in14ar.xls,DV20,126,DV,20 +2936,2021_tab14_itemded_count_nz_all,2021,tab14,itemded,count,Itemized deductions — number of returns,nz,filers,all,13,"$100,000 under $200,000",4513652.0,21in14ar.xls,DV21,126,DV,21 +2937,2021_tab14_itemded_count_nz_all,2021,tab14,itemded,count,Itemized deductions — number of returns,nz,filers,all,14,"$200,000 under $500,000",3134769.0,21in14ar.xls,DV22,126,DV,22 +2938,2021_tab14_itemded_count_nz_all,2021,tab14,itemded,count,Itemized deductions — number of returns,nz,filers,all,15,"$500,000 under $1,000,000",874181.0,21in14ar.xls,DV23,126,DV,23 +2939,2021_tab14_itemded_count_nz_all,2021,tab14,itemded,count,Itemized deductions — number of returns,nz,filers,all,16,"$1,000,000 under $1,500,000",236902.0,21in14ar.xls,DV24,126,DV,24 +2940,2021_tab14_itemded_count_nz_all,2021,tab14,itemded,count,Itemized deductions — number of returns,nz,filers,all,17,"$1,500,000 under $2,000,000",107470.0,21in14ar.xls,DV25,126,DV,25 +2941,2021_tab14_itemded_count_nz_all,2021,tab14,itemded,count,Itemized deductions — number of returns,nz,filers,all,18,"$2,000,000 under $5,000,000",172234.0,21in14ar.xls,DV26,126,DV,26 +2942,2021_tab14_itemded_count_nz_all,2021,tab14,itemded,count,Itemized deductions — number of returns,nz,filers,all,19,"$5,000,000 under $10,000,000",51030.0,21in14ar.xls,DV27,126,DV,27 +2943,2021_tab14_itemded_count_nz_all,2021,tab14,itemded,count,Itemized deductions — number of returns,nz,filers,all,20,"$10,000,000 or more",39613.0,21in14ar.xls,DV28,126,DV,28 +2944,2021_tab14_orddiv_amount_nz_all,2021,tab14,orddiv,amount,Ordinary dividends,nz,filers,all,1,"All returns, total",386961461000.0,21in14ar.xls,M9,13,M,9 +2945,2021_tab14_orddiv_amount_nz_all,2021,tab14,orddiv,amount,Ordinary dividends,nz,filers,all,2,No adjusted gross income,3366312000.0,21in14ar.xls,M10,13,M,10 +2946,2021_tab14_orddiv_amount_nz_all,2021,tab14,orddiv,amount,Ordinary dividends,nz,filers,all,3,"$1 under $5,000",717653000.0,21in14ar.xls,M11,13,M,11 +2947,2021_tab14_orddiv_amount_nz_all,2021,tab14,orddiv,amount,Ordinary dividends,nz,filers,all,4,"$5,000 under $10,000",1068899000.0,21in14ar.xls,M12,13,M,12 +2948,2021_tab14_orddiv_amount_nz_all,2021,tab14,orddiv,amount,Ordinary dividends,nz,filers,all,5,"$10,000 under $15,000",1183718000.0,21in14ar.xls,M13,13,M,13 +2949,2021_tab14_orddiv_amount_nz_all,2021,tab14,orddiv,amount,Ordinary dividends,nz,filers,all,6,"$15,000 under $20,000",1521595000.0,21in14ar.xls,M14,13,M,14 +2950,2021_tab14_orddiv_amount_nz_all,2021,tab14,orddiv,amount,Ordinary dividends,nz,filers,all,7,"$20,000 under $25,000",1464978000.0,21in14ar.xls,M15,13,M,15 +2951,2021_tab14_orddiv_amount_nz_all,2021,tab14,orddiv,amount,Ordinary dividends,nz,filers,all,8,"$25,000 under $30,000",1551754000.0,21in14ar.xls,M16,13,M,16 +2952,2021_tab14_orddiv_amount_nz_all,2021,tab14,orddiv,amount,Ordinary dividends,nz,filers,all,9,"$30,000 under $40,000",3306237000.0,21in14ar.xls,M17,13,M,17 +2953,2021_tab14_orddiv_amount_nz_all,2021,tab14,orddiv,amount,Ordinary dividends,nz,filers,all,10,"$40,000 under $50,000",3821977000.0,21in14ar.xls,M18,13,M,18 +2954,2021_tab14_orddiv_amount_nz_all,2021,tab14,orddiv,amount,Ordinary dividends,nz,filers,all,11,"$50,000 under $75,000",12460005000.0,21in14ar.xls,M19,13,M,19 +2955,2021_tab14_orddiv_amount_nz_all,2021,tab14,orddiv,amount,Ordinary dividends,nz,filers,all,12,"$75,000 under $100,000",13739836000.0,21in14ar.xls,M20,13,M,20 +2956,2021_tab14_orddiv_amount_nz_all,2021,tab14,orddiv,amount,Ordinary dividends,nz,filers,all,13,"$100,000 under $200,000",51096349000.0,21in14ar.xls,M21,13,M,21 +2957,2021_tab14_orddiv_amount_nz_all,2021,tab14,orddiv,amount,Ordinary dividends,nz,filers,all,14,"$200,000 under $500,000",74408554000.0,21in14ar.xls,M22,13,M,22 +2958,2021_tab14_orddiv_amount_nz_all,2021,tab14,orddiv,amount,Ordinary dividends,nz,filers,all,15,"$500,000 under $1,000,000",44870842000.0,21in14ar.xls,M23,13,M,23 +2959,2021_tab14_orddiv_amount_nz_all,2021,tab14,orddiv,amount,Ordinary dividends,nz,filers,all,16,"$1,000,000 under $1,500,000",20107920000.0,21in14ar.xls,M24,13,M,24 +2960,2021_tab14_orddiv_amount_nz_all,2021,tab14,orddiv,amount,Ordinary dividends,nz,filers,all,17,"$1,500,000 under $2,000,000",12094139000.0,21in14ar.xls,M25,13,M,25 +2961,2021_tab14_orddiv_amount_nz_all,2021,tab14,orddiv,amount,Ordinary dividends,nz,filers,all,18,"$2,000,000 under $5,000,000",34574922000.0,21in14ar.xls,M26,13,M,26 +2962,2021_tab14_orddiv_amount_nz_all,2021,tab14,orddiv,amount,Ordinary dividends,nz,filers,all,19,"$5,000,000 under $10,000,000",22076152000.0,21in14ar.xls,M27,13,M,27 +2963,2021_tab14_orddiv_amount_nz_all,2021,tab14,orddiv,amount,Ordinary dividends,nz,filers,all,20,"$10,000,000 or more",83529618000.0,21in14ar.xls,M28,13,M,28 +2964,2021_tab14_orddiv_count_nz_all,2021,tab14,orddiv,count,Ordinary dividends — number of returns,nz,filers,all,1,"All returns, total",32247057.0,21in14ar.xls,L9,12,L,9 +2965,2021_tab14_orddiv_count_nz_all,2021,tab14,orddiv,count,Ordinary dividends — number of returns,nz,filers,all,2,No adjusted gross income,375055.0,21in14ar.xls,L10,12,L,10 +2966,2021_tab14_orddiv_count_nz_all,2021,tab14,orddiv,count,Ordinary dividends — number of returns,nz,filers,all,3,"$1 under $5,000",790696.0,21in14ar.xls,L11,12,L,11 +2967,2021_tab14_orddiv_count_nz_all,2021,tab14,orddiv,count,Ordinary dividends — number of returns,nz,filers,all,4,"$5,000 under $10,000",776574.0,21in14ar.xls,L12,12,L,12 +2968,2021_tab14_orddiv_count_nz_all,2021,tab14,orddiv,count,Ordinary dividends — number of returns,nz,filers,all,5,"$10,000 under $15,000",714119.0,21in14ar.xls,L13,12,L,13 +2969,2021_tab14_orddiv_count_nz_all,2021,tab14,orddiv,count,Ordinary dividends — number of returns,nz,filers,all,6,"$15,000 under $20,000",757406.0,21in14ar.xls,L14,12,L,14 +2970,2021_tab14_orddiv_count_nz_all,2021,tab14,orddiv,count,Ordinary dividends — number of returns,nz,filers,all,7,"$20,000 under $25,000",685968.0,21in14ar.xls,L15,12,L,15 +2971,2021_tab14_orddiv_count_nz_all,2021,tab14,orddiv,count,Ordinary dividends — number of returns,nz,filers,all,8,"$25,000 under $30,000",686838.0,21in14ar.xls,L16,12,L,16 +2972,2021_tab14_orddiv_count_nz_all,2021,tab14,orddiv,count,Ordinary dividends — number of returns,nz,filers,all,9,"$30,000 under $40,000",1480384.0,21in14ar.xls,L17,12,L,17 +2973,2021_tab14_orddiv_count_nz_all,2021,tab14,orddiv,count,Ordinary dividends — number of returns,nz,filers,all,10,"$40,000 under $50,000",1585276.0,21in14ar.xls,L18,12,L,18 +2974,2021_tab14_orddiv_count_nz_all,2021,tab14,orddiv,count,Ordinary dividends — number of returns,nz,filers,all,11,"$50,000 under $75,000",3974772.0,21in14ar.xls,L19,12,L,19 +2975,2021_tab14_orddiv_count_nz_all,2021,tab14,orddiv,count,Ordinary dividends — number of returns,nz,filers,all,12,"$75,000 under $100,000",3723238.0,21in14ar.xls,L20,12,L,20 +2976,2021_tab14_orddiv_count_nz_all,2021,tab14,orddiv,count,Ordinary dividends — number of returns,nz,filers,all,13,"$100,000 under $200,000",8972329.0,21in14ar.xls,L21,12,L,21 +2977,2021_tab14_orddiv_count_nz_all,2021,tab14,orddiv,count,Ordinary dividends — number of returns,nz,filers,all,14,"$200,000 under $500,000",5657743.0,21in14ar.xls,L22,12,L,22 +2978,2021_tab14_orddiv_count_nz_all,2021,tab14,orddiv,count,Ordinary dividends — number of returns,nz,filers,all,15,"$500,000 under $1,000,000",1299171.0,21in14ar.xls,L23,12,L,23 +2979,2021_tab14_orddiv_count_nz_all,2021,tab14,orddiv,count,Ordinary dividends — number of returns,nz,filers,all,16,"$1,000,000 under $1,500,000",320718.0,21in14ar.xls,L24,12,L,24 +2980,2021_tab14_orddiv_count_nz_all,2021,tab14,orddiv,count,Ordinary dividends — number of returns,nz,filers,all,17,"$1,500,000 under $2,000,000",136624.0,21in14ar.xls,L25,12,L,25 +2981,2021_tab14_orddiv_count_nz_all,2021,tab14,orddiv,count,Ordinary dividends — number of returns,nz,filers,all,18,"$2,000,000 under $5,000,000",208955.0,21in14ar.xls,L26,12,L,26 +2982,2021_tab14_orddiv_count_nz_all,2021,tab14,orddiv,count,Ordinary dividends — number of returns,nz,filers,all,19,"$5,000,000 under $10,000,000",58225.0,21in14ar.xls,L27,12,L,27 +2983,2021_tab14_orddiv_count_nz_all,2021,tab14,orddiv,count,Ordinary dividends — number of returns,nz,filers,all,20,"$10,000,000 or more",42967.0,21in14ar.xls,L28,12,L,28 +2984,2021_tab14_partnerincome_amount_gt0_all,2021,tab14,partnerincome,amount,Partnership net income (2021+),gt0,filers,all,1,"All returns, total",469816308000.0,21in14ar.xls,BE9,57,BE,9 +2985,2021_tab14_partnerincome_amount_gt0_all,2021,tab14,partnerincome,amount,Partnership net income (2021+),gt0,filers,all,2,No adjusted gross income,3495518000.0,21in14ar.xls,BE10,57,BE,10 +2986,2021_tab14_partnerincome_amount_gt0_all,2021,tab14,partnerincome,amount,Partnership net income (2021+),gt0,filers,all,3,"$1 under $5,000",191043000.0,21in14ar.xls,BE11,57,BE,11 +2987,2021_tab14_partnerincome_amount_gt0_all,2021,tab14,partnerincome,amount,Partnership net income (2021+),gt0,filers,all,4,"$5,000 under $10,000",238826000.0,21in14ar.xls,BE12,57,BE,12 +2988,2021_tab14_partnerincome_amount_gt0_all,2021,tab14,partnerincome,amount,Partnership net income (2021+),gt0,filers,all,5,"$10,000 under $15,000",456672000.0,21in14ar.xls,BE13,57,BE,13 +2989,2021_tab14_partnerincome_amount_gt0_all,2021,tab14,partnerincome,amount,Partnership net income (2021+),gt0,filers,all,6,"$15,000 under $20,000",510981000.0,21in14ar.xls,BE14,57,BE,14 +2990,2021_tab14_partnerincome_amount_gt0_all,2021,tab14,partnerincome,amount,Partnership net income (2021+),gt0,filers,all,7,"$20,000 under $25,000",526263000.0,21in14ar.xls,BE15,57,BE,15 +2991,2021_tab14_partnerincome_amount_gt0_all,2021,tab14,partnerincome,amount,Partnership net income (2021+),gt0,filers,all,8,"$25,000 under $30,000",853533000.0,21in14ar.xls,BE16,57,BE,16 +2992,2021_tab14_partnerincome_amount_gt0_all,2021,tab14,partnerincome,amount,Partnership net income (2021+),gt0,filers,all,9,"$30,000 under $40,000",1429379000.0,21in14ar.xls,BE17,57,BE,17 +2993,2021_tab14_partnerincome_amount_gt0_all,2021,tab14,partnerincome,amount,Partnership net income (2021+),gt0,filers,all,10,"$40,000 under $50,000",1915933000.0,21in14ar.xls,BE18,57,BE,18 +2994,2021_tab14_partnerincome_amount_gt0_all,2021,tab14,partnerincome,amount,Partnership net income (2021+),gt0,filers,all,11,"$50,000 under $75,000",5029213000.0,21in14ar.xls,BE19,57,BE,19 +2995,2021_tab14_partnerincome_amount_gt0_all,2021,tab14,partnerincome,amount,Partnership net income (2021+),gt0,filers,all,12,"$75,000 under $100,000",6041749000.0,21in14ar.xls,BE20,57,BE,20 +2996,2021_tab14_partnerincome_amount_gt0_all,2021,tab14,partnerincome,amount,Partnership net income (2021+),gt0,filers,all,13,"$100,000 under $200,000",26438754000.0,21in14ar.xls,BE21,57,BE,21 +2997,2021_tab14_partnerincome_amount_gt0_all,2021,tab14,partnerincome,amount,Partnership net income (2021+),gt0,filers,all,14,"$200,000 under $500,000",63894659000.0,21in14ar.xls,BE22,57,BE,22 +2998,2021_tab14_partnerincome_amount_gt0_all,2021,tab14,partnerincome,amount,Partnership net income (2021+),gt0,filers,all,15,"$500,000 under $1,000,000",72964993000.0,21in14ar.xls,BE23,57,BE,23 +2999,2021_tab14_partnerincome_amount_gt0_all,2021,tab14,partnerincome,amount,Partnership net income (2021+),gt0,filers,all,16,"$1,000,000 under $1,500,000",42314661000.0,21in14ar.xls,BE24,57,BE,24 +3000,2021_tab14_partnerincome_amount_gt0_all,2021,tab14,partnerincome,amount,Partnership net income (2021+),gt0,filers,all,17,"$1,500,000 under $2,000,000",26983310000.0,21in14ar.xls,BE25,57,BE,25 +3001,2021_tab14_partnerincome_amount_gt0_all,2021,tab14,partnerincome,amount,Partnership net income (2021+),gt0,filers,all,18,"$2,000,000 under $5,000,000",75076603000.0,21in14ar.xls,BE26,57,BE,26 +3002,2021_tab14_partnerincome_amount_gt0_all,2021,tab14,partnerincome,amount,Partnership net income (2021+),gt0,filers,all,19,"$5,000,000 under $10,000,000",42960677000.0,21in14ar.xls,BE27,57,BE,27 +3003,2021_tab14_partnerincome_amount_gt0_all,2021,tab14,partnerincome,amount,Partnership net income (2021+),gt0,filers,all,20,"$10,000,000 or more",98493540000.0,21in14ar.xls,BE28,57,BE,28 +3004,2021_tab14_partnerincome_amount_lt0_all,2021,tab14,partnerincome,amount,Partnership net loss (2021+),lt0,filers,all,1,"All returns, total",168152043000.0,21in14ar.xls,BG9,59,BG,9 +3005,2021_tab14_partnerincome_amount_lt0_all,2021,tab14,partnerincome,amount,Partnership net loss (2021+),lt0,filers,all,2,No adjusted gross income,41556919000.0,21in14ar.xls,BG10,59,BG,10 +3006,2021_tab14_partnerincome_amount_lt0_all,2021,tab14,partnerincome,amount,Partnership net loss (2021+),lt0,filers,all,3,"$1 under $5,000",280618000.0,21in14ar.xls,BG11,59,BG,11 +3007,2021_tab14_partnerincome_amount_lt0_all,2021,tab14,partnerincome,amount,Partnership net loss (2021+),lt0,filers,all,4,"$5,000 under $10,000",483055000.0,21in14ar.xls,BG12,59,BG,12 +3008,2021_tab14_partnerincome_amount_lt0_all,2021,tab14,partnerincome,amount,Partnership net loss (2021+),lt0,filers,all,5,"$10,000 under $15,000",398235000.0,21in14ar.xls,BG13,59,BG,13 +3009,2021_tab14_partnerincome_amount_lt0_all,2021,tab14,partnerincome,amount,Partnership net loss (2021+),lt0,filers,all,6,"$15,000 under $20,000",454719000.0,21in14ar.xls,BG14,59,BG,14 +3010,2021_tab14_partnerincome_amount_lt0_all,2021,tab14,partnerincome,amount,Partnership net loss (2021+),lt0,filers,all,7,"$20,000 under $25,000",447752000.0,21in14ar.xls,BG15,59,BG,15 +3011,2021_tab14_partnerincome_amount_lt0_all,2021,tab14,partnerincome,amount,Partnership net loss (2021+),lt0,filers,all,8,"$25,000 under $30,000",476041000.0,21in14ar.xls,BG16,59,BG,16 +3012,2021_tab14_partnerincome_amount_lt0_all,2021,tab14,partnerincome,amount,Partnership net loss (2021+),lt0,filers,all,9,"$30,000 under $40,000",1060851000.0,21in14ar.xls,BG17,59,BG,17 +3013,2021_tab14_partnerincome_amount_lt0_all,2021,tab14,partnerincome,amount,Partnership net loss (2021+),lt0,filers,all,10,"$40,000 under $50,000",935985000.0,21in14ar.xls,BG18,59,BG,18 +3014,2021_tab14_partnerincome_amount_lt0_all,2021,tab14,partnerincome,amount,Partnership net loss (2021+),lt0,filers,all,11,"$50,000 under $75,000",2714271000.0,21in14ar.xls,BG19,59,BG,19 +3015,2021_tab14_partnerincome_amount_lt0_all,2021,tab14,partnerincome,amount,Partnership net loss (2021+),lt0,filers,all,12,"$75,000 under $100,000",2618448000.0,21in14ar.xls,BG20,59,BG,20 +3016,2021_tab14_partnerincome_amount_lt0_all,2021,tab14,partnerincome,amount,Partnership net loss (2021+),lt0,filers,all,13,"$100,000 under $200,000",8777366000.0,21in14ar.xls,BG21,59,BG,21 +3017,2021_tab14_partnerincome_amount_lt0_all,2021,tab14,partnerincome,amount,Partnership net loss (2021+),lt0,filers,all,14,"$200,000 under $500,000",14325853000.0,21in14ar.xls,BG22,59,BG,22 +3018,2021_tab14_partnerincome_amount_lt0_all,2021,tab14,partnerincome,amount,Partnership net loss (2021+),lt0,filers,all,15,"$500,000 under $1,000,000",11738936000.0,21in14ar.xls,BG23,59,BG,23 +3019,2021_tab14_partnerincome_amount_lt0_all,2021,tab14,partnerincome,amount,Partnership net loss (2021+),lt0,filers,all,16,"$1,000,000 under $1,500,000",6368462000.0,21in14ar.xls,BG24,59,BG,24 +3020,2021_tab14_partnerincome_amount_lt0_all,2021,tab14,partnerincome,amount,Partnership net loss (2021+),lt0,filers,all,17,"$1,500,000 under $2,000,000",4021272000.0,21in14ar.xls,BG25,59,BG,25 +3021,2021_tab14_partnerincome_amount_lt0_all,2021,tab14,partnerincome,amount,Partnership net loss (2021+),lt0,filers,all,18,"$2,000,000 under $5,000,000",13693841000.0,21in14ar.xls,BG26,59,BG,26 +3022,2021_tab14_partnerincome_amount_lt0_all,2021,tab14,partnerincome,amount,Partnership net loss (2021+),lt0,filers,all,19,"$5,000,000 under $10,000,000",9249576000.0,21in14ar.xls,BG27,59,BG,27 +3023,2021_tab14_partnerincome_amount_lt0_all,2021,tab14,partnerincome,amount,Partnership net loss (2021+),lt0,filers,all,20,"$10,000,000 or more",48549844000.0,21in14ar.xls,BG28,59,BG,28 +3024,2021_tab14_partnerincome_count_gt0_all,2021,tab14,partnerincome,count,Partnership income — number with income (2021+),gt0,filers,all,1,"All returns, total",3201572.0,21in14ar.xls,BD9,56,BD,9 +3025,2021_tab14_partnerincome_count_gt0_all,2021,tab14,partnerincome,count,Partnership income — number with income (2021+),gt0,filers,all,2,No adjusted gross income,51367.0,21in14ar.xls,BD10,56,BD,10 +3026,2021_tab14_partnerincome_count_gt0_all,2021,tab14,partnerincome,count,Partnership income — number with income (2021+),gt0,filers,all,3,"$1 under $5,000",27783.0,21in14ar.xls,BD11,56,BD,11 +3027,2021_tab14_partnerincome_count_gt0_all,2021,tab14,partnerincome,count,Partnership income — number with income (2021+),gt0,filers,all,4,"$5,000 under $10,000",32994.0,21in14ar.xls,BD12,56,BD,12 +3028,2021_tab14_partnerincome_count_gt0_all,2021,tab14,partnerincome,count,Partnership income — number with income (2021+),gt0,filers,all,5,"$10,000 under $15,000",47844.0,21in14ar.xls,BD13,56,BD,13 +3029,2021_tab14_partnerincome_count_gt0_all,2021,tab14,partnerincome,count,Partnership income — number with income (2021+),gt0,filers,all,6,"$15,000 under $20,000",47049.0,21in14ar.xls,BD14,56,BD,14 +3030,2021_tab14_partnerincome_count_gt0_all,2021,tab14,partnerincome,count,Partnership income — number with income (2021+),gt0,filers,all,7,"$20,000 under $25,000",45301.0,21in14ar.xls,BD15,56,BD,15 +3031,2021_tab14_partnerincome_count_gt0_all,2021,tab14,partnerincome,count,Partnership income — number with income (2021+),gt0,filers,all,8,"$25,000 under $30,000",48690.0,21in14ar.xls,BD16,56,BD,16 +3032,2021_tab14_partnerincome_count_gt0_all,2021,tab14,partnerincome,count,Partnership income — number with income (2021+),gt0,filers,all,9,"$30,000 under $40,000",89514.0,21in14ar.xls,BD17,56,BD,17 +3033,2021_tab14_partnerincome_count_gt0_all,2021,tab14,partnerincome,count,Partnership income — number with income (2021+),gt0,filers,all,10,"$40,000 under $50,000",100861.0,21in14ar.xls,BD18,56,BD,18 +3034,2021_tab14_partnerincome_count_gt0_all,2021,tab14,partnerincome,count,Partnership income — number with income (2021+),gt0,filers,all,11,"$50,000 under $75,000",255645.0,21in14ar.xls,BD19,56,BD,19 +3035,2021_tab14_partnerincome_count_gt0_all,2021,tab14,partnerincome,count,Partnership income — number with income (2021+),gt0,filers,all,12,"$75,000 under $100,000",234635.0,21in14ar.xls,BD20,56,BD,20 +3036,2021_tab14_partnerincome_count_gt0_all,2021,tab14,partnerincome,count,Partnership income — number with income (2021+),gt0,filers,all,13,"$100,000 under $200,000",761877.0,21in14ar.xls,BD21,56,BD,21 +3037,2021_tab14_partnerincome_count_gt0_all,2021,tab14,partnerincome,count,Partnership income — number with income (2021+),gt0,filers,all,14,"$200,000 under $500,000",789328.0,21in14ar.xls,BD22,56,BD,22 +3038,2021_tab14_partnerincome_count_gt0_all,2021,tab14,partnerincome,count,Partnership income — number with income (2021+),gt0,filers,all,15,"$500,000 under $1,000,000",352610.0,21in14ar.xls,BD23,56,BD,23 +3039,2021_tab14_partnerincome_count_gt0_all,2021,tab14,partnerincome,count,Partnership income — number with income (2021+),gt0,filers,all,16,"$1,000,000 under $1,500,000",117686.0,21in14ar.xls,BD24,56,BD,24 +3040,2021_tab14_partnerincome_count_gt0_all,2021,tab14,partnerincome,count,Partnership income — number with income (2021+),gt0,filers,all,17,"$1,500,000 under $2,000,000",55237.0,21in14ar.xls,BD25,56,BD,25 +3041,2021_tab14_partnerincome_count_gt0_all,2021,tab14,partnerincome,count,Partnership income — number with income (2021+),gt0,filers,all,18,"$2,000,000 under $5,000,000",93799.0,21in14ar.xls,BD26,56,BD,26 +3042,2021_tab14_partnerincome_count_gt0_all,2021,tab14,partnerincome,count,Partnership income — number with income (2021+),gt0,filers,all,19,"$5,000,000 under $10,000,000",28090.0,21in14ar.xls,BD27,56,BD,27 +3043,2021_tab14_partnerincome_count_gt0_all,2021,tab14,partnerincome,count,Partnership income — number with income (2021+),gt0,filers,all,20,"$10,000,000 or more",21260.0,21in14ar.xls,BD28,56,BD,28 +3044,2021_tab14_partnerincome_count_lt0_all,2021,tab14,partnerincome,count,Partnership income — number with loss (2021+),lt0,filers,all,1,"All returns, total",1990357.0,21in14ar.xls,BF9,58,BF,9 +3045,2021_tab14_partnerincome_count_lt0_all,2021,tab14,partnerincome,count,Partnership income — number with loss (2021+),lt0,filers,all,2,No adjusted gross income,154045.0,21in14ar.xls,BF10,58,BF,10 +3046,2021_tab14_partnerincome_count_lt0_all,2021,tab14,partnerincome,count,Partnership income — number with loss (2021+),lt0,filers,all,3,"$1 under $5,000",20109.0,21in14ar.xls,BF11,58,BF,11 +3047,2021_tab14_partnerincome_count_lt0_all,2021,tab14,partnerincome,count,Partnership income — number with loss (2021+),lt0,filers,all,4,"$5,000 under $10,000",25878.0,21in14ar.xls,BF12,58,BF,12 +3048,2021_tab14_partnerincome_count_lt0_all,2021,tab14,partnerincome,count,Partnership income — number with loss (2021+),lt0,filers,all,5,"$10,000 under $15,000",27240.0,21in14ar.xls,BF13,58,BF,13 +3049,2021_tab14_partnerincome_count_lt0_all,2021,tab14,partnerincome,count,Partnership income — number with loss (2021+),lt0,filers,all,6,"$15,000 under $20,000",33786.0,21in14ar.xls,BF14,58,BF,14 +3050,2021_tab14_partnerincome_count_lt0_all,2021,tab14,partnerincome,count,Partnership income — number with loss (2021+),lt0,filers,all,7,"$20,000 under $25,000",31513.0,21in14ar.xls,BF15,58,BF,15 +3051,2021_tab14_partnerincome_count_lt0_all,2021,tab14,partnerincome,count,Partnership income — number with loss (2021+),lt0,filers,all,8,"$25,000 under $30,000",35076.0,21in14ar.xls,BF16,58,BF,16 +3052,2021_tab14_partnerincome_count_lt0_all,2021,tab14,partnerincome,count,Partnership income — number with loss (2021+),lt0,filers,all,9,"$30,000 under $40,000",56150.0,21in14ar.xls,BF17,58,BF,17 +3053,2021_tab14_partnerincome_count_lt0_all,2021,tab14,partnerincome,count,Partnership income — number with loss (2021+),lt0,filers,all,10,"$40,000 under $50,000",70656.0,21in14ar.xls,BF18,58,BF,18 +3054,2021_tab14_partnerincome_count_lt0_all,2021,tab14,partnerincome,count,Partnership income — number with loss (2021+),lt0,filers,all,11,"$50,000 under $75,000",155127.0,21in14ar.xls,BF19,58,BF,19 +3055,2021_tab14_partnerincome_count_lt0_all,2021,tab14,partnerincome,count,Partnership income — number with loss (2021+),lt0,filers,all,12,"$75,000 under $100,000",164162.0,21in14ar.xls,BF20,58,BF,20 +3056,2021_tab14_partnerincome_count_lt0_all,2021,tab14,partnerincome,count,Partnership income — number with loss (2021+),lt0,filers,all,13,"$100,000 under $200,000",464313.0,21in14ar.xls,BF21,58,BF,21 +3057,2021_tab14_partnerincome_count_lt0_all,2021,tab14,partnerincome,count,Partnership income — number with loss (2021+),lt0,filers,all,14,"$200,000 under $500,000",410608.0,21in14ar.xls,BF22,58,BF,22 +3058,2021_tab14_partnerincome_count_lt0_all,2021,tab14,partnerincome,count,Partnership income — number with loss (2021+),lt0,filers,all,15,"$500,000 under $1,000,000",175073.0,21in14ar.xls,BF23,58,BF,23 +3059,2021_tab14_partnerincome_count_lt0_all,2021,tab14,partnerincome,count,Partnership income — number with loss (2021+),lt0,filers,all,16,"$1,000,000 under $1,500,000",57269.0,21in14ar.xls,BF24,58,BF,24 +3060,2021_tab14_partnerincome_count_lt0_all,2021,tab14,partnerincome,count,Partnership income — number with loss (2021+),lt0,filers,all,17,"$1,500,000 under $2,000,000",27788.0,21in14ar.xls,BF25,58,BF,25 +3061,2021_tab14_partnerincome_count_lt0_all,2021,tab14,partnerincome,count,Partnership income — number with loss (2021+),lt0,filers,all,18,"$2,000,000 under $5,000,000",50191.0,21in14ar.xls,BF26,58,BF,26 +3062,2021_tab14_partnerincome_count_lt0_all,2021,tab14,partnerincome,count,Partnership income — number with loss (2021+),lt0,filers,all,19,"$5,000,000 under $10,000,000",16687.0,21in14ar.xls,BF27,58,BF,27 +3063,2021_tab14_partnerincome_count_lt0_all,2021,tab14,partnerincome,count,Partnership income — number with loss (2021+),lt0,filers,all,20,"$10,000,000 or more",14688.0,21in14ar.xls,BF28,58,BF,28 +3064,2021_tab14_pensions_amount_nz_all,2021,tab14,pensions,amount,Pensions and annuities (total),nz,filers,all,1,"All returns, total",1506948061000.0,21in14ar.xls,AK9,37,AK,9 +3065,2021_tab14_pensions_amount_nz_all,2021,tab14,pensions,amount,Pensions and annuities (total),nz,filers,all,2,No adjusted gross income,6763059000.0,21in14ar.xls,AK10,37,AK,10 +3066,2021_tab14_pensions_amount_nz_all,2021,tab14,pensions,amount,Pensions and annuities (total),nz,filers,all,3,"$1 under $5,000",5734467000.0,21in14ar.xls,AK11,37,AK,11 +3067,2021_tab14_pensions_amount_nz_all,2021,tab14,pensions,amount,Pensions and annuities (total),nz,filers,all,4,"$5,000 under $10,000",9362560000.0,21in14ar.xls,AK12,37,AK,12 +3068,2021_tab14_pensions_amount_nz_all,2021,tab14,pensions,amount,Pensions and annuities (total),nz,filers,all,5,"$10,000 under $15,000",15555885000.0,21in14ar.xls,AK13,37,AK,13 +3069,2021_tab14_pensions_amount_nz_all,2021,tab14,pensions,amount,Pensions and annuities (total),nz,filers,all,6,"$15,000 under $20,000",17825944000.0,21in14ar.xls,AK14,37,AK,14 +3070,2021_tab14_pensions_amount_nz_all,2021,tab14,pensions,amount,Pensions and annuities (total),nz,filers,all,7,"$20,000 under $25,000",18785258000.0,21in14ar.xls,AK15,37,AK,15 +3071,2021_tab14_pensions_amount_nz_all,2021,tab14,pensions,amount,Pensions and annuities (total),nz,filers,all,8,"$25,000 under $30,000",22377250000.0,21in14ar.xls,AK16,37,AK,16 +3072,2021_tab14_pensions_amount_nz_all,2021,tab14,pensions,amount,Pensions and annuities (total),nz,filers,all,9,"$30,000 under $40,000",50636533000.0,21in14ar.xls,AK17,37,AK,17 +3073,2021_tab14_pensions_amount_nz_all,2021,tab14,pensions,amount,Pensions and annuities (total),nz,filers,all,10,"$40,000 under $50,000",52865761000.0,21in14ar.xls,AK18,37,AK,18 +3074,2021_tab14_pensions_amount_nz_all,2021,tab14,pensions,amount,Pensions and annuities (total),nz,filers,all,11,"$50,000 under $75,000",164394888000.0,21in14ar.xls,AK19,37,AK,19 +3075,2021_tab14_pensions_amount_nz_all,2021,tab14,pensions,amount,Pensions and annuities (total),nz,filers,all,12,"$75,000 under $100,000",183811124000.0,21in14ar.xls,AK20,37,AK,20 +3076,2021_tab14_pensions_amount_nz_all,2021,tab14,pensions,amount,Pensions and annuities (total),nz,filers,all,13,"$100,000 under $200,000",502675859000.0,21in14ar.xls,AK21,37,AK,21 +3077,2021_tab14_pensions_amount_nz_all,2021,tab14,pensions,amount,Pensions and annuities (total),nz,filers,all,14,"$200,000 under $500,000",323076078000.0,21in14ar.xls,AK22,37,AK,22 +3078,2021_tab14_pensions_amount_nz_all,2021,tab14,pensions,amount,Pensions and annuities (total),nz,filers,all,15,"$500,000 under $1,000,000",77426767000.0,21in14ar.xls,AK23,37,AK,23 +3079,2021_tab14_pensions_amount_nz_all,2021,tab14,pensions,amount,Pensions and annuities (total),nz,filers,all,16,"$1,000,000 under $1,500,000",21775336000.0,21in14ar.xls,AK24,37,AK,24 +3080,2021_tab14_pensions_amount_nz_all,2021,tab14,pensions,amount,Pensions and annuities (total),nz,filers,all,17,"$1,500,000 under $2,000,000",8868497000.0,21in14ar.xls,AK25,37,AK,25 +3081,2021_tab14_pensions_amount_nz_all,2021,tab14,pensions,amount,Pensions and annuities (total),nz,filers,all,18,"$2,000,000 under $5,000,000",15425227000.0,21in14ar.xls,AK26,37,AK,26 +3082,2021_tab14_pensions_amount_nz_all,2021,tab14,pensions,amount,Pensions and annuities (total),nz,filers,all,19,"$5,000,000 under $10,000,000",5131480000.0,21in14ar.xls,AK27,37,AK,27 +3083,2021_tab14_pensions_amount_nz_all,2021,tab14,pensions,amount,Pensions and annuities (total),nz,filers,all,20,"$10,000,000 or more",4456090000.0,21in14ar.xls,AK28,37,AK,28 +3084,2021_tab14_pensions_count_nz_all,2021,tab14,pensions,count,Pensions and annuities — number of returns,nz,filers,all,1,"All returns, total",32171355.0,21in14ar.xls,AJ9,36,AJ,9 +3085,2021_tab14_pensions_count_nz_all,2021,tab14,pensions,count,Pensions and annuities — number of returns,nz,filers,all,2,No adjusted gross income,248894.0,21in14ar.xls,AJ10,36,AJ,10 +3086,2021_tab14_pensions_count_nz_all,2021,tab14,pensions,count,Pensions and annuities — number of returns,nz,filers,all,3,"$1 under $5,000",747616.0,21in14ar.xls,AJ11,36,AJ,11 +3087,2021_tab14_pensions_count_nz_all,2021,tab14,pensions,count,Pensions and annuities — number of returns,nz,filers,all,4,"$5,000 under $10,000",983565.0,21in14ar.xls,AJ12,36,AJ,12 +3088,2021_tab14_pensions_count_nz_all,2021,tab14,pensions,count,Pensions and annuities — number of returns,nz,filers,all,5,"$10,000 under $15,000",1301846.0,21in14ar.xls,AJ13,36,AJ,13 +3089,2021_tab14_pensions_count_nz_all,2021,tab14,pensions,count,Pensions and annuities — number of returns,nz,filers,all,6,"$15,000 under $20,000",1322953.0,21in14ar.xls,AJ14,36,AJ,14 +3090,2021_tab14_pensions_count_nz_all,2021,tab14,pensions,count,Pensions and annuities — number of returns,nz,filers,all,7,"$20,000 under $25,000",1257174.0,21in14ar.xls,AJ15,36,AJ,15 +3091,2021_tab14_pensions_count_nz_all,2021,tab14,pensions,count,Pensions and annuities — number of returns,nz,filers,all,8,"$25,000 under $30,000",1258069.0,21in14ar.xls,AJ16,36,AJ,16 +3092,2021_tab14_pensions_count_nz_all,2021,tab14,pensions,count,Pensions and annuities — number of returns,nz,filers,all,9,"$30,000 under $40,000",2362435.0,21in14ar.xls,AJ17,36,AJ,17 +3093,2021_tab14_pensions_count_nz_all,2021,tab14,pensions,count,Pensions and annuities — number of returns,nz,filers,all,10,"$40,000 under $50,000",2237532.0,21in14ar.xls,AJ18,36,AJ,18 +3094,2021_tab14_pensions_count_nz_all,2021,tab14,pensions,count,Pensions and annuities — number of returns,nz,filers,all,11,"$50,000 under $75,000",5090890.0,21in14ar.xls,AJ19,36,AJ,19 +3095,2021_tab14_pensions_count_nz_all,2021,tab14,pensions,count,Pensions and annuities — number of returns,nz,filers,all,12,"$75,000 under $100,000",4189391.0,21in14ar.xls,AJ20,36,AJ,20 +3096,2021_tab14_pensions_count_nz_all,2021,tab14,pensions,count,Pensions and annuities — number of returns,nz,filers,all,13,"$100,000 under $200,000",7698980.0,21in14ar.xls,AJ21,36,AJ,21 +3097,2021_tab14_pensions_count_nz_all,2021,tab14,pensions,count,Pensions and annuities — number of returns,nz,filers,all,14,"$200,000 under $500,000",2835784.0,21in14ar.xls,AJ22,36,AJ,22 +3098,2021_tab14_pensions_count_nz_all,2021,tab14,pensions,count,Pensions and annuities — number of returns,nz,filers,all,15,"$500,000 under $1,000,000",423868.0,21in14ar.xls,AJ23,36,AJ,23 +3099,2021_tab14_pensions_count_nz_all,2021,tab14,pensions,count,Pensions and annuities — number of returns,nz,filers,all,16,"$1,000,000 under $1,500,000",93871.0,21in14ar.xls,AJ24,36,AJ,24 +3100,2021_tab14_pensions_count_nz_all,2021,tab14,pensions,count,Pensions and annuities — number of returns,nz,filers,all,17,"$1,500,000 under $2,000,000",38651.0,21in14ar.xls,AJ25,36,AJ,25 +3101,2021_tab14_pensions_count_nz_all,2021,tab14,pensions,count,Pensions and annuities — number of returns,nz,filers,all,18,"$2,000,000 under $5,000,000",54952.0,21in14ar.xls,AJ26,36,AJ,26 +3102,2021_tab14_pensions_count_nz_all,2021,tab14,pensions,count,Pensions and annuities — number of returns,nz,filers,all,19,"$5,000,000 under $10,000,000",14628.0,21in14ar.xls,AJ27,36,AJ,27 +3103,2021_tab14_pensions_count_nz_all,2021,tab14,pensions,count,Pensions and annuities — number of returns,nz,filers,all,20,"$10,000,000 or more",10257.0,21in14ar.xls,AJ28,36,AJ,28 +3104,2021_tab14_pensions_taxable_amount_nz_all,2021,tab14,pensions_taxable,amount,Pensions and annuities (taxable),nz,filers,all,1,"All returns, total",858038339000.0,21in14ar.xls,AM9,39,AM,9 +3105,2021_tab14_pensions_taxable_amount_nz_all,2021,tab14,pensions_taxable,amount,Pensions and annuities (taxable),nz,filers,all,2,No adjusted gross income,3171606000.0,21in14ar.xls,AM10,39,AM,10 +3106,2021_tab14_pensions_taxable_amount_nz_all,2021,tab14,pensions_taxable,amount,Pensions and annuities (taxable),nz,filers,all,3,"$1 under $5,000",2194380000.0,21in14ar.xls,AM11,39,AM,11 +3107,2021_tab14_pensions_taxable_amount_nz_all,2021,tab14,pensions_taxable,amount,Pensions and annuities (taxable),nz,filers,all,4,"$5,000 under $10,000",5601441000.0,21in14ar.xls,AM12,39,AM,12 +3108,2021_tab14_pensions_taxable_amount_nz_all,2021,tab14,pensions_taxable,amount,Pensions and annuities (taxable),nz,filers,all,5,"$10,000 under $15,000",11373258000.0,21in14ar.xls,AM13,39,AM,13 +3109,2021_tab14_pensions_taxable_amount_nz_all,2021,tab14,pensions_taxable,amount,Pensions and annuities (taxable),nz,filers,all,6,"$15,000 under $20,000",14244330000.0,21in14ar.xls,AM14,39,AM,14 +3110,2021_tab14_pensions_taxable_amount_nz_all,2021,tab14,pensions_taxable,amount,Pensions and annuities (taxable),nz,filers,all,7,"$20,000 under $25,000",15028717000.0,21in14ar.xls,AM15,39,AM,15 +3111,2021_tab14_pensions_taxable_amount_nz_all,2021,tab14,pensions_taxable,amount,Pensions and annuities (taxable),nz,filers,all,8,"$25,000 under $30,000",16915492000.0,21in14ar.xls,AM16,39,AM,16 +3112,2021_tab14_pensions_taxable_amount_nz_all,2021,tab14,pensions_taxable,amount,Pensions and annuities (taxable),nz,filers,all,9,"$30,000 under $40,000",36742864000.0,21in14ar.xls,AM17,39,AM,17 +3113,2021_tab14_pensions_taxable_amount_nz_all,2021,tab14,pensions_taxable,amount,Pensions and annuities (taxable),nz,filers,all,10,"$40,000 under $50,000",40461903000.0,21in14ar.xls,AM18,39,AM,18 +3114,2021_tab14_pensions_taxable_amount_nz_all,2021,tab14,pensions_taxable,amount,Pensions and annuities (taxable),nz,filers,all,11,"$50,000 under $75,000",118581365000.0,21in14ar.xls,AM19,39,AM,19 +3115,2021_tab14_pensions_taxable_amount_nz_all,2021,tab14,pensions_taxable,amount,Pensions and annuities (taxable),nz,filers,all,12,"$75,000 under $100,000",122865979000.0,21in14ar.xls,AM20,39,AM,20 +3116,2021_tab14_pensions_taxable_amount_nz_all,2021,tab14,pensions_taxable,amount,Pensions and annuities (taxable),nz,filers,all,13,"$100,000 under $200,000",295456804000.0,21in14ar.xls,AM21,39,AM,21 +3117,2021_tab14_pensions_taxable_amount_nz_all,2021,tab14,pensions_taxable,amount,Pensions and annuities (taxable),nz,filers,all,14,"$200,000 under $500,000",142093107000.0,21in14ar.xls,AM22,39,AM,22 +3118,2021_tab14_pensions_taxable_amount_nz_all,2021,tab14,pensions_taxable,amount,Pensions and annuities (taxable),nz,filers,all,15,"$500,000 under $1,000,000",21135234000.0,21in14ar.xls,AM23,39,AM,23 +3119,2021_tab14_pensions_taxable_amount_nz_all,2021,tab14,pensions_taxable,amount,Pensions and annuities (taxable),nz,filers,all,16,"$1,000,000 under $1,500,000",4286668000.0,21in14ar.xls,AM24,39,AM,24 +3120,2021_tab14_pensions_taxable_amount_nz_all,2021,tab14,pensions_taxable,amount,Pensions and annuities (taxable),nz,filers,all,17,"$1,500,000 under $2,000,000",1936068000.0,21in14ar.xls,AM25,39,AM,25 +3121,2021_tab14_pensions_taxable_amount_nz_all,2021,tab14,pensions_taxable,amount,Pensions and annuities (taxable),nz,filers,all,18,"$2,000,000 under $5,000,000",3380526000.0,21in14ar.xls,AM26,39,AM,26 +3122,2021_tab14_pensions_taxable_amount_nz_all,2021,tab14,pensions_taxable,amount,Pensions and annuities (taxable),nz,filers,all,19,"$5,000,000 under $10,000,000",1268562000.0,21in14ar.xls,AM27,39,AM,27 +3123,2021_tab14_pensions_taxable_amount_nz_all,2021,tab14,pensions_taxable,amount,Pensions and annuities (taxable),nz,filers,all,20,"$10,000,000 or more",1300036000.0,21in14ar.xls,AM28,39,AM,28 +3124,2021_tab14_pensions_taxable_count_nz_all,2021,tab14,pensions_taxable,count,Pensions and annuities (taxable) — number of returns,nz,filers,all,1,"All returns, total",29357159.0,21in14ar.xls,AL9,38,AL,9 +3125,2021_tab14_pensions_taxable_count_nz_all,2021,tab14,pensions_taxable,count,Pensions and annuities (taxable) — number of returns,nz,filers,all,2,No adjusted gross income,193961.0,21in14ar.xls,AL10,38,AL,10 +3126,2021_tab14_pensions_taxable_count_nz_all,2021,tab14,pensions_taxable,count,Pensions and annuities (taxable) — number of returns,nz,filers,all,3,"$1 under $5,000",693782.0,21in14ar.xls,AL11,38,AL,11 +3127,2021_tab14_pensions_taxable_count_nz_all,2021,tab14,pensions_taxable,count,Pensions and annuities (taxable) — number of returns,nz,filers,all,4,"$5,000 under $10,000",944195.0,21in14ar.xls,AL12,38,AL,12 +3128,2021_tab14_pensions_taxable_count_nz_all,2021,tab14,pensions_taxable,count,Pensions and annuities (taxable) — number of returns,nz,filers,all,5,"$10,000 under $15,000",1250111.0,21in14ar.xls,AL13,38,AL,13 +3129,2021_tab14_pensions_taxable_count_nz_all,2021,tab14,pensions_taxable,count,Pensions and annuities (taxable) — number of returns,nz,filers,all,6,"$15,000 under $20,000",1268203.0,21in14ar.xls,AL14,38,AL,14 +3130,2021_tab14_pensions_taxable_count_nz_all,2021,tab14,pensions_taxable,count,Pensions and annuities (taxable) — number of returns,nz,filers,all,7,"$20,000 under $25,000",1195253.0,21in14ar.xls,AL15,38,AL,15 +3131,2021_tab14_pensions_taxable_count_nz_all,2021,tab14,pensions_taxable,count,Pensions and annuities (taxable) — number of returns,nz,filers,all,8,"$25,000 under $30,000",1176711.0,21in14ar.xls,AL16,38,AL,16 +3132,2021_tab14_pensions_taxable_count_nz_all,2021,tab14,pensions_taxable,count,Pensions and annuities (taxable) — number of returns,nz,filers,all,9,"$30,000 under $40,000",2197626.0,21in14ar.xls,AL17,38,AL,17 +3133,2021_tab14_pensions_taxable_count_nz_all,2021,tab14,pensions_taxable,count,Pensions and annuities (taxable) — number of returns,nz,filers,all,10,"$40,000 under $50,000",2079488.0,21in14ar.xls,AL18,38,AL,18 +3134,2021_tab14_pensions_taxable_count_nz_all,2021,tab14,pensions_taxable,count,Pensions and annuities (taxable) — number of returns,nz,filers,all,11,"$50,000 under $75,000",4737483.0,21in14ar.xls,AL19,38,AL,19 +3135,2021_tab14_pensions_taxable_count_nz_all,2021,tab14,pensions_taxable,count,Pensions and annuities (taxable) — number of returns,nz,filers,all,12,"$75,000 under $100,000",3870768.0,21in14ar.xls,AL20,38,AL,20 +3136,2021_tab14_pensions_taxable_count_nz_all,2021,tab14,pensions_taxable,count,Pensions and annuities (taxable) — number of returns,nz,filers,all,13,"$100,000 under $200,000",6914014.0,21in14ar.xls,AL21,38,AL,21 +3137,2021_tab14_pensions_taxable_count_nz_all,2021,tab14,pensions_taxable,count,Pensions and annuities (taxable) — number of returns,nz,filers,all,14,"$200,000 under $500,000",2378973.0,21in14ar.xls,AL22,38,AL,22 +3138,2021_tab14_pensions_taxable_count_nz_all,2021,tab14,pensions_taxable,count,Pensions and annuities (taxable) — number of returns,nz,filers,all,15,"$500,000 under $1,000,000",309957.0,21in14ar.xls,AL23,38,AL,23 +3139,2021_tab14_pensions_taxable_count_nz_all,2021,tab14,pensions_taxable,count,Pensions and annuities (taxable) — number of returns,nz,filers,all,16,"$1,000,000 under $1,500,000",64883.0,21in14ar.xls,AL24,38,AL,24 +3140,2021_tab14_pensions_taxable_count_nz_all,2021,tab14,pensions_taxable,count,Pensions and annuities (taxable) — number of returns,nz,filers,all,17,"$1,500,000 under $2,000,000",26817.0,21in14ar.xls,AL25,38,AL,25 +3141,2021_tab14_pensions_taxable_count_nz_all,2021,tab14,pensions_taxable,count,Pensions and annuities (taxable) — number of returns,nz,filers,all,18,"$2,000,000 under $5,000,000",37790.0,21in14ar.xls,AL26,38,AL,26 +3142,2021_tab14_pensions_taxable_count_nz_all,2021,tab14,pensions_taxable,count,Pensions and annuities (taxable) — number of returns,nz,filers,all,19,"$5,000,000 under $10,000,000",9918.0,21in14ar.xls,AL27,38,AL,27 +3143,2021_tab14_pensions_taxable_count_nz_all,2021,tab14,pensions_taxable,count,Pensions and annuities (taxable) — number of returns,nz,filers,all,20,"$10,000,000 or more",7225.0,21in14ar.xls,AL28,38,AL,28 +3144,2021_tab14_qbid_amount_nz_all,2021,tab14,qbid,amount,Qualified business income deduction (2021+),nz,filers,all,1,"All returns, total",205779729000.0,21in14ar.xls,DY9,129,DY,9 +3145,2021_tab14_qbid_amount_nz_all,2021,tab14,qbid,amount,Qualified business income deduction (2021+),nz,filers,all,2,No adjusted gross income,0.0,21in14ar.xls,DY10,129,DY,10 +3146,2021_tab14_qbid_amount_nz_all,2021,tab14,qbid,amount,Qualified business income deduction (2021+),nz,filers,all,3,"$1 under $5,000",3109000.0,21in14ar.xls,DY11,129,DY,11 +3147,2021_tab14_qbid_amount_nz_all,2021,tab14,qbid,amount,Qualified business income deduction (2021+),nz,filers,all,4,"$5,000 under $10,000",15105000.0,21in14ar.xls,DY12,129,DY,12 +3148,2021_tab14_qbid_amount_nz_all,2021,tab14,qbid,amount,Qualified business income deduction (2021+),nz,filers,all,5,"$10,000 under $15,000",98223000.0,21in14ar.xls,DY13,129,DY,13 +3149,2021_tab14_qbid_amount_nz_all,2021,tab14,qbid,amount,Qualified business income deduction (2021+),nz,filers,all,6,"$15,000 under $20,000",586769000.0,21in14ar.xls,DY14,129,DY,14 +3150,2021_tab14_qbid_amount_nz_all,2021,tab14,qbid,amount,Qualified business income deduction (2021+),nz,filers,all,7,"$20,000 under $25,000",914224000.0,21in14ar.xls,DY15,129,DY,15 +3151,2021_tab14_qbid_amount_nz_all,2021,tab14,qbid,amount,Qualified business income deduction (2021+),nz,filers,all,8,"$25,000 under $30,000",1222867000.0,21in14ar.xls,DY16,129,DY,16 +3152,2021_tab14_qbid_amount_nz_all,2021,tab14,qbid,amount,Qualified business income deduction (2021+),nz,filers,all,9,"$30,000 under $40,000",2872968000.0,21in14ar.xls,DY17,129,DY,17 +3153,2021_tab14_qbid_amount_nz_all,2021,tab14,qbid,amount,Qualified business income deduction (2021+),nz,filers,all,10,"$40,000 under $50,000",3191541000.0,21in14ar.xls,DY18,129,DY,18 +3154,2021_tab14_qbid_amount_nz_all,2021,tab14,qbid,amount,Qualified business income deduction (2021+),nz,filers,all,11,"$50,000 under $75,000",9015688000.0,21in14ar.xls,DY19,129,DY,19 +3155,2021_tab14_qbid_amount_nz_all,2021,tab14,qbid,amount,Qualified business income deduction (2021+),nz,filers,all,12,"$75,000 under $100,000",8543742000.0,21in14ar.xls,DY20,129,DY,20 +3156,2021_tab14_qbid_amount_nz_all,2021,tab14,qbid,amount,Qualified business income deduction (2021+),nz,filers,all,13,"$100,000 under $200,000",29732755000.0,21in14ar.xls,DY21,129,DY,21 +3157,2021_tab14_qbid_amount_nz_all,2021,tab14,qbid,amount,Qualified business income deduction (2021+),nz,filers,all,14,"$200,000 under $500,000",39509153000.0,21in14ar.xls,DY22,129,DY,22 +3158,2021_tab14_qbid_amount_nz_all,2021,tab14,qbid,amount,Qualified business income deduction (2021+),nz,filers,all,15,"$500,000 under $1,000,000",18882845000.0,21in14ar.xls,DY23,129,DY,23 +3159,2021_tab14_qbid_amount_nz_all,2021,tab14,qbid,amount,Qualified business income deduction (2021+),nz,filers,all,16,"$1,000,000 under $1,500,000",11281864000.0,21in14ar.xls,DY24,129,DY,24 +3160,2021_tab14_qbid_amount_nz_all,2021,tab14,qbid,amount,Qualified business income deduction (2021+),nz,filers,all,17,"$1,500,000 under $2,000,000",7932390000.0,21in14ar.xls,DY25,129,DY,25 +3161,2021_tab14_qbid_amount_nz_all,2021,tab14,qbid,amount,Qualified business income deduction (2021+),nz,filers,all,18,"$2,000,000 under $5,000,000",23312146000.0,21in14ar.xls,DY26,129,DY,26 +3162,2021_tab14_qbid_amount_nz_all,2021,tab14,qbid,amount,Qualified business income deduction (2021+),nz,filers,all,19,"$5,000,000 under $10,000,000",14234309000.0,21in14ar.xls,DY27,129,DY,27 +3163,2021_tab14_qbid_amount_nz_all,2021,tab14,qbid,amount,Qualified business income deduction (2021+),nz,filers,all,20,"$10,000,000 or more",34430031000.0,21in14ar.xls,DY28,129,DY,28 +3164,2021_tab14_qbid_count_nz_all,2021,tab14,qbid,count,QBI deduction — number of returns (2021+),nz,filers,all,1,"All returns, total",25924668.0,21in14ar.xls,DX9,128,DX,9 +3165,2021_tab14_qbid_count_nz_all,2021,tab14,qbid,count,QBI deduction — number of returns (2021+),nz,filers,all,2,No adjusted gross income,0.0,21in14ar.xls,DX10,128,DX,10 +3166,2021_tab14_qbid_count_nz_all,2021,tab14,qbid,count,QBI deduction — number of returns (2021+),nz,filers,all,3,"$1 under $5,000",20887.0,21in14ar.xls,DX11,128,DX,11 +3167,2021_tab14_qbid_count_nz_all,2021,tab14,qbid,count,QBI deduction — number of returns (2021+),nz,filers,all,4,"$5,000 under $10,000",39486.0,21in14ar.xls,DX12,128,DX,12 +3168,2021_tab14_qbid_count_nz_all,2021,tab14,qbid,count,QBI deduction — number of returns (2021+),nz,filers,all,5,"$10,000 under $15,000",438355.0,21in14ar.xls,DX13,128,DX,13 +3169,2021_tab14_qbid_count_nz_all,2021,tab14,qbid,count,QBI deduction — number of returns (2021+),nz,filers,all,6,"$15,000 under $20,000",970408.0,21in14ar.xls,DX14,128,DX,14 +3170,2021_tab14_qbid_count_nz_all,2021,tab14,qbid,count,QBI deduction — number of returns (2021+),nz,filers,all,7,"$20,000 under $25,000",946007.0,21in14ar.xls,DX15,128,DX,15 +3171,2021_tab14_qbid_count_nz_all,2021,tab14,qbid,count,QBI deduction — number of returns (2021+),nz,filers,all,8,"$25,000 under $30,000",1073605.0,21in14ar.xls,DX16,128,DX,16 +3172,2021_tab14_qbid_count_nz_all,2021,tab14,qbid,count,QBI deduction — number of returns (2021+),nz,filers,all,9,"$30,000 under $40,000",1812616.0,21in14ar.xls,DX17,128,DX,17 +3173,2021_tab14_qbid_count_nz_all,2021,tab14,qbid,count,QBI deduction — number of returns (2021+),nz,filers,all,10,"$40,000 under $50,000",1609597.0,21in14ar.xls,DX18,128,DX,18 +3174,2021_tab14_qbid_count_nz_all,2021,tab14,qbid,count,QBI deduction — number of returns (2021+),nz,filers,all,11,"$50,000 under $75,000",3515828.0,21in14ar.xls,DX19,128,DX,19 +3175,2021_tab14_qbid_count_nz_all,2021,tab14,qbid,count,QBI deduction — number of returns (2021+),nz,filers,all,12,"$75,000 under $100,000",2824372.0,21in14ar.xls,DX20,128,DX,20 +3176,2021_tab14_qbid_count_nz_all,2021,tab14,qbid,count,QBI deduction — number of returns (2021+),nz,filers,all,13,"$100,000 under $200,000",6739276.0,21in14ar.xls,DX21,128,DX,21 +3177,2021_tab14_qbid_count_nz_all,2021,tab14,qbid,count,QBI deduction — number of returns (2021+),nz,filers,all,14,"$200,000 under $500,000",4297046.0,21in14ar.xls,DX22,128,DX,22 +3178,2021_tab14_qbid_count_nz_all,2021,tab14,qbid,count,QBI deduction — number of returns (2021+),nz,filers,all,15,"$500,000 under $1,000,000",995853.0,21in14ar.xls,DX23,128,DX,23 +3179,2021_tab14_qbid_count_nz_all,2021,tab14,qbid,count,QBI deduction — number of returns (2021+),nz,filers,all,16,"$1,000,000 under $1,500,000",265528.0,21in14ar.xls,DX24,128,DX,24 +3180,2021_tab14_qbid_count_nz_all,2021,tab14,qbid,count,QBI deduction — number of returns (2021+),nz,filers,all,17,"$1,500,000 under $2,000,000",114452.0,21in14ar.xls,DX25,128,DX,25 +3181,2021_tab14_qbid_count_nz_all,2021,tab14,qbid,count,QBI deduction — number of returns (2021+),nz,filers,all,18,"$2,000,000 under $5,000,000",178739.0,21in14ar.xls,DX26,128,DX,26 +3182,2021_tab14_qbid_count_nz_all,2021,tab14,qbid,count,QBI deduction — number of returns (2021+),nz,filers,all,19,"$5,000,000 under $10,000,000",48998.0,21in14ar.xls,DX27,128,DX,27 +3183,2021_tab14_qbid_count_nz_all,2021,tab14,qbid,count,QBI deduction — number of returns (2021+),nz,filers,all,20,"$10,000,000 or more",33615.0,21in14ar.xls,DX28,128,DX,28 +3184,2021_tab14_qualdiv_amount_nz_all,2021,tab14,qualdiv,amount,Qualified dividends,nz,filers,all,1,"All returns, total",295906194000.0,21in14ar.xls,O9,15,O,9 +3185,2021_tab14_qualdiv_amount_nz_all,2021,tab14,qualdiv,amount,Qualified dividends,nz,filers,all,2,No adjusted gross income,2343007000.0,21in14ar.xls,O10,15,O,10 +3186,2021_tab14_qualdiv_amount_nz_all,2021,tab14,qualdiv,amount,Qualified dividends,nz,filers,all,3,"$1 under $5,000",466517000.0,21in14ar.xls,O11,15,O,11 +3187,2021_tab14_qualdiv_amount_nz_all,2021,tab14,qualdiv,amount,Qualified dividends,nz,filers,all,4,"$5,000 under $10,000",667944000.0,21in14ar.xls,O12,15,O,12 +3188,2021_tab14_qualdiv_amount_nz_all,2021,tab14,qualdiv,amount,Qualified dividends,nz,filers,all,5,"$10,000 under $15,000",721307000.0,21in14ar.xls,O13,15,O,13 +3189,2021_tab14_qualdiv_amount_nz_all,2021,tab14,qualdiv,amount,Qualified dividends,nz,filers,all,6,"$15,000 under $20,000",1060701000.0,21in14ar.xls,O14,15,O,14 +3190,2021_tab14_qualdiv_amount_nz_all,2021,tab14,qualdiv,amount,Qualified dividends,nz,filers,all,7,"$20,000 under $25,000",895825000.0,21in14ar.xls,O15,15,O,15 +3191,2021_tab14_qualdiv_amount_nz_all,2021,tab14,qualdiv,amount,Qualified dividends,nz,filers,all,8,"$25,000 under $30,000",934172000.0,21in14ar.xls,O16,15,O,16 +3192,2021_tab14_qualdiv_amount_nz_all,2021,tab14,qualdiv,amount,Qualified dividends,nz,filers,all,9,"$30,000 under $40,000",2196487000.0,21in14ar.xls,O17,15,O,17 +3193,2021_tab14_qualdiv_amount_nz_all,2021,tab14,qualdiv,amount,Qualified dividends,nz,filers,all,10,"$40,000 under $50,000",2523390000.0,21in14ar.xls,O18,15,O,18 +3194,2021_tab14_qualdiv_amount_nz_all,2021,tab14,qualdiv,amount,Qualified dividends,nz,filers,all,11,"$50,000 under $75,000",8599225000.0,21in14ar.xls,O19,15,O,19 +3195,2021_tab14_qualdiv_amount_nz_all,2021,tab14,qualdiv,amount,Qualified dividends,nz,filers,all,12,"$75,000 under $100,000",9314082000.0,21in14ar.xls,O20,15,O,20 +3196,2021_tab14_qualdiv_amount_nz_all,2021,tab14,qualdiv,amount,Qualified dividends,nz,filers,all,13,"$100,000 under $200,000",36162406000.0,21in14ar.xls,O21,15,O,21 +3197,2021_tab14_qualdiv_amount_nz_all,2021,tab14,qualdiv,amount,Qualified dividends,nz,filers,all,14,"$200,000 under $500,000",54930379000.0,21in14ar.xls,O22,15,O,22 +3198,2021_tab14_qualdiv_amount_nz_all,2021,tab14,qualdiv,amount,Qualified dividends,nz,filers,all,15,"$500,000 under $1,000,000",34477019000.0,21in14ar.xls,O23,15,O,23 +3199,2021_tab14_qualdiv_amount_nz_all,2021,tab14,qualdiv,amount,Qualified dividends,nz,filers,all,16,"$1,000,000 under $1,500,000",15503762000.0,21in14ar.xls,O24,15,O,24 +3200,2021_tab14_qualdiv_amount_nz_all,2021,tab14,qualdiv,amount,Qualified dividends,nz,filers,all,17,"$1,500,000 under $2,000,000",9363207000.0,21in14ar.xls,O25,15,O,25 +3201,2021_tab14_qualdiv_amount_nz_all,2021,tab14,qualdiv,amount,Qualified dividends,nz,filers,all,18,"$2,000,000 under $5,000,000",27212821000.0,21in14ar.xls,O26,15,O,26 +3202,2021_tab14_qualdiv_amount_nz_all,2021,tab14,qualdiv,amount,Qualified dividends,nz,filers,all,19,"$5,000,000 under $10,000,000",17867740000.0,21in14ar.xls,O27,15,O,27 +3203,2021_tab14_qualdiv_amount_nz_all,2021,tab14,qualdiv,amount,Qualified dividends,nz,filers,all,20,"$10,000,000 or more",70666204000.0,21in14ar.xls,O28,15,O,28 +3204,2021_tab14_qualdiv_count_nz_all,2021,tab14,qualdiv,count,Qualified dividends — number of returns,nz,filers,all,1,"All returns, total",30524800.0,21in14ar.xls,N9,14,N,9 +3205,2021_tab14_qualdiv_count_nz_all,2021,tab14,qualdiv,count,Qualified dividends — number of returns,nz,filers,all,2,No adjusted gross income,340668.0,21in14ar.xls,N10,14,N,10 +3206,2021_tab14_qualdiv_count_nz_all,2021,tab14,qualdiv,count,Qualified dividends — number of returns,nz,filers,all,3,"$1 under $5,000",712438.0,21in14ar.xls,N11,14,N,11 +3207,2021_tab14_qualdiv_count_nz_all,2021,tab14,qualdiv,count,Qualified dividends — number of returns,nz,filers,all,4,"$5,000 under $10,000",708724.0,21in14ar.xls,N12,14,N,12 +3208,2021_tab14_qualdiv_count_nz_all,2021,tab14,qualdiv,count,Qualified dividends — number of returns,nz,filers,all,5,"$10,000 under $15,000",653265.0,21in14ar.xls,N13,14,N,13 +3209,2021_tab14_qualdiv_count_nz_all,2021,tab14,qualdiv,count,Qualified dividends — number of returns,nz,filers,all,6,"$15,000 under $20,000",703804.0,21in14ar.xls,N14,14,N,14 +3210,2021_tab14_qualdiv_count_nz_all,2021,tab14,qualdiv,count,Qualified dividends — number of returns,nz,filers,all,7,"$20,000 under $25,000",618604.0,21in14ar.xls,N15,14,N,15 +3211,2021_tab14_qualdiv_count_nz_all,2021,tab14,qualdiv,count,Qualified dividends — number of returns,nz,filers,all,8,"$25,000 under $30,000",628482.0,21in14ar.xls,N16,14,N,16 +3212,2021_tab14_qualdiv_count_nz_all,2021,tab14,qualdiv,count,Qualified dividends — number of returns,nz,filers,all,9,"$30,000 under $40,000",1363506.0,21in14ar.xls,N17,14,N,17 +3213,2021_tab14_qualdiv_count_nz_all,2021,tab14,qualdiv,count,Qualified dividends — number of returns,nz,filers,all,10,"$40,000 under $50,000",1474068.0,21in14ar.xls,N18,14,N,18 +3214,2021_tab14_qualdiv_count_nz_all,2021,tab14,qualdiv,count,Qualified dividends — number of returns,nz,filers,all,11,"$50,000 under $75,000",3723163.0,21in14ar.xls,N19,14,N,19 +3215,2021_tab14_qualdiv_count_nz_all,2021,tab14,qualdiv,count,Qualified dividends — number of returns,nz,filers,all,12,"$75,000 under $100,000",3518585.0,21in14ar.xls,N20,14,N,20 +3216,2021_tab14_qualdiv_count_nz_all,2021,tab14,qualdiv,count,Qualified dividends — number of returns,nz,filers,all,13,"$100,000 under $200,000",8568560.0,21in14ar.xls,N21,14,N,21 +3217,2021_tab14_qualdiv_count_nz_all,2021,tab14,qualdiv,count,Qualified dividends — number of returns,nz,filers,all,14,"$200,000 under $500,000",5491717.0,21in14ar.xls,N22,14,N,22 +3218,2021_tab14_qualdiv_count_nz_all,2021,tab14,qualdiv,count,Qualified dividends — number of returns,nz,filers,all,15,"$500,000 under $1,000,000",1266819.0,21in14ar.xls,N23,14,N,23 +3219,2021_tab14_qualdiv_count_nz_all,2021,tab14,qualdiv,count,Qualified dividends — number of returns,nz,filers,all,16,"$1,000,000 under $1,500,000",314136.0,21in14ar.xls,N24,14,N,24 +3220,2021_tab14_qualdiv_count_nz_all,2021,tab14,qualdiv,count,Qualified dividends — number of returns,nz,filers,all,17,"$1,500,000 under $2,000,000",133787.0,21in14ar.xls,N25,14,N,25 +3221,2021_tab14_qualdiv_count_nz_all,2021,tab14,qualdiv,count,Qualified dividends — number of returns,nz,filers,all,18,"$2,000,000 under $5,000,000",205033.0,21in14ar.xls,N26,14,N,26 +3222,2021_tab14_qualdiv_count_nz_all,2021,tab14,qualdiv,count,Qualified dividends — number of returns,nz,filers,all,19,"$5,000,000 under $10,000,000",57194.0,21in14ar.xls,N27,14,N,27 +3223,2021_tab14_qualdiv_count_nz_all,2021,tab14,qualdiv,count,Qualified dividends — number of returns,nz,filers,all,20,"$10,000,000 or more",42247.0,21in14ar.xls,N28,14,N,28 +3224,2021_tab14_rentroyalty_amount_gt0_all,2021,tab14,rentroyalty,amount,Rent and royalty net income,gt0,filers,all,1,"All returns, total",125168233000.0,21in14ar.xls,BA9,53,BA,9 +3225,2021_tab14_rentroyalty_amount_gt0_all,2021,tab14,rentroyalty,amount,Rent and royalty net income,gt0,filers,all,2,No adjusted gross income,2442565000.0,21in14ar.xls,BA10,53,BA,10 +3226,2021_tab14_rentroyalty_amount_gt0_all,2021,tab14,rentroyalty,amount,Rent and royalty net income,gt0,filers,all,3,"$1 under $5,000",252165000.0,21in14ar.xls,BA11,53,BA,11 +3227,2021_tab14_rentroyalty_amount_gt0_all,2021,tab14,rentroyalty,amount,Rent and royalty net income,gt0,filers,all,4,"$5,000 under $10,000",810504000.0,21in14ar.xls,BA12,53,BA,12 +3228,2021_tab14_rentroyalty_amount_gt0_all,2021,tab14,rentroyalty,amount,Rent and royalty net income,gt0,filers,all,5,"$10,000 under $15,000",1400866000.0,21in14ar.xls,BA13,53,BA,13 +3229,2021_tab14_rentroyalty_amount_gt0_all,2021,tab14,rentroyalty,amount,Rent and royalty net income,gt0,filers,all,6,"$15,000 under $20,000",1359444000.0,21in14ar.xls,BA14,53,BA,14 +3230,2021_tab14_rentroyalty_amount_gt0_all,2021,tab14,rentroyalty,amount,Rent and royalty net income,gt0,filers,all,7,"$20,000 under $25,000",1326092000.0,21in14ar.xls,BA15,53,BA,15 +3231,2021_tab14_rentroyalty_amount_gt0_all,2021,tab14,rentroyalty,amount,Rent and royalty net income,gt0,filers,all,8,"$25,000 under $30,000",1243079000.0,21in14ar.xls,BA16,53,BA,16 +3232,2021_tab14_rentroyalty_amount_gt0_all,2021,tab14,rentroyalty,amount,Rent and royalty net income,gt0,filers,all,9,"$30,000 under $40,000",2333608000.0,21in14ar.xls,BA17,53,BA,17 +3233,2021_tab14_rentroyalty_amount_gt0_all,2021,tab14,rentroyalty,amount,Rent and royalty net income,gt0,filers,all,10,"$40,000 under $50,000",2115656000.0,21in14ar.xls,BA18,53,BA,18 +3234,2021_tab14_rentroyalty_amount_gt0_all,2021,tab14,rentroyalty,amount,Rent and royalty net income,gt0,filers,all,11,"$50,000 under $75,000",8102192000.0,21in14ar.xls,BA19,53,BA,19 +3235,2021_tab14_rentroyalty_amount_gt0_all,2021,tab14,rentroyalty,amount,Rent and royalty net income,gt0,filers,all,12,"$75,000 under $100,000",7488793000.0,21in14ar.xls,BA20,53,BA,20 +3236,2021_tab14_rentroyalty_amount_gt0_all,2021,tab14,rentroyalty,amount,Rent and royalty net income,gt0,filers,all,13,"$100,000 under $200,000",23848755000.0,21in14ar.xls,BA21,53,BA,21 +3237,2021_tab14_rentroyalty_amount_gt0_all,2021,tab14,rentroyalty,amount,Rent and royalty net income,gt0,filers,all,14,"$200,000 under $500,000",27515158000.0,21in14ar.xls,BA22,53,BA,22 +3238,2021_tab14_rentroyalty_amount_gt0_all,2021,tab14,rentroyalty,amount,Rent and royalty net income,gt0,filers,all,15,"$500,000 under $1,000,000",13796937000.0,21in14ar.xls,BA23,53,BA,23 +3239,2021_tab14_rentroyalty_amount_gt0_all,2021,tab14,rentroyalty,amount,Rent and royalty net income,gt0,filers,all,16,"$1,000,000 under $1,500,000",5825852000.0,21in14ar.xls,BA24,53,BA,24 +3240,2021_tab14_rentroyalty_amount_gt0_all,2021,tab14,rentroyalty,amount,Rent and royalty net income,gt0,filers,all,17,"$1,500,000 under $2,000,000",3571948000.0,21in14ar.xls,BA25,53,BA,25 +3241,2021_tab14_rentroyalty_amount_gt0_all,2021,tab14,rentroyalty,amount,Rent and royalty net income,gt0,filers,all,18,"$2,000,000 under $5,000,000",8452529000.0,21in14ar.xls,BA26,53,BA,26 +3242,2021_tab14_rentroyalty_amount_gt0_all,2021,tab14,rentroyalty,amount,Rent and royalty net income,gt0,filers,all,19,"$5,000,000 under $10,000,000",3944126000.0,21in14ar.xls,BA27,53,BA,27 +3243,2021_tab14_rentroyalty_amount_gt0_all,2021,tab14,rentroyalty,amount,Rent and royalty net income,gt0,filers,all,20,"$10,000,000 or more",9337965000.0,21in14ar.xls,BA28,53,BA,28 +3244,2021_tab14_rentroyalty_amount_lt0_all,2021,tab14,rentroyalty,amount,Rent and royalty net loss,lt0,filers,all,1,"All returns, total",56765983000.0,21in14ar.xls,BC9,55,BC,9 +3245,2021_tab14_rentroyalty_amount_lt0_all,2021,tab14,rentroyalty,amount,Rent and royalty net loss,lt0,filers,all,2,No adjusted gross income,7147339000.0,21in14ar.xls,BC10,55,BC,10 +3246,2021_tab14_rentroyalty_amount_lt0_all,2021,tab14,rentroyalty,amount,Rent and royalty net loss,lt0,filers,all,3,"$1 under $5,000",450428000.0,21in14ar.xls,BC11,55,BC,11 +3247,2021_tab14_rentroyalty_amount_lt0_all,2021,tab14,rentroyalty,amount,Rent and royalty net loss,lt0,filers,all,4,"$5,000 under $10,000",423191000.0,21in14ar.xls,BC12,55,BC,12 +3248,2021_tab14_rentroyalty_amount_lt0_all,2021,tab14,rentroyalty,amount,Rent and royalty net loss,lt0,filers,all,5,"$10,000 under $15,000",825615000.0,21in14ar.xls,BC13,55,BC,13 +3249,2021_tab14_rentroyalty_amount_lt0_all,2021,tab14,rentroyalty,amount,Rent and royalty net loss,lt0,filers,all,6,"$15,000 under $20,000",804625000.0,21in14ar.xls,BC14,55,BC,14 +3250,2021_tab14_rentroyalty_amount_lt0_all,2021,tab14,rentroyalty,amount,Rent and royalty net loss,lt0,filers,all,7,"$20,000 under $25,000",958872000.0,21in14ar.xls,BC15,55,BC,15 +3251,2021_tab14_rentroyalty_amount_lt0_all,2021,tab14,rentroyalty,amount,Rent and royalty net loss,lt0,filers,all,8,"$25,000 under $30,000",892664000.0,21in14ar.xls,BC16,55,BC,16 +3252,2021_tab14_rentroyalty_amount_lt0_all,2021,tab14,rentroyalty,amount,Rent and royalty net loss,lt0,filers,all,9,"$30,000 under $40,000",2145126000.0,21in14ar.xls,BC17,55,BC,17 +3253,2021_tab14_rentroyalty_amount_lt0_all,2021,tab14,rentroyalty,amount,Rent and royalty net loss,lt0,filers,all,10,"$40,000 under $50,000",1763351000.0,21in14ar.xls,BC18,55,BC,18 +3254,2021_tab14_rentroyalty_amount_lt0_all,2021,tab14,rentroyalty,amount,Rent and royalty net loss,lt0,filers,all,11,"$50,000 under $75,000",5248649000.0,21in14ar.xls,BC19,55,BC,19 +3255,2021_tab14_rentroyalty_amount_lt0_all,2021,tab14,rentroyalty,amount,Rent and royalty net loss,lt0,filers,all,12,"$75,000 under $100,000",5334809000.0,21in14ar.xls,BC20,55,BC,20 +3256,2021_tab14_rentroyalty_amount_lt0_all,2021,tab14,rentroyalty,amount,Rent and royalty net loss,lt0,filers,all,13,"$100,000 under $200,000",10158810000.0,21in14ar.xls,BC21,55,BC,21 +3257,2021_tab14_rentroyalty_amount_lt0_all,2021,tab14,rentroyalty,amount,Rent and royalty net loss,lt0,filers,all,14,"$200,000 under $500,000",8898786000.0,21in14ar.xls,BC22,55,BC,22 +3258,2021_tab14_rentroyalty_amount_lt0_all,2021,tab14,rentroyalty,amount,Rent and royalty net loss,lt0,filers,all,15,"$500,000 under $1,000,000",4900018000.0,21in14ar.xls,BC23,55,BC,23 +3259,2021_tab14_rentroyalty_amount_lt0_all,2021,tab14,rentroyalty,amount,Rent and royalty net loss,lt0,filers,all,16,"$1,000,000 under $1,500,000",1804009000.0,21in14ar.xls,BC24,55,BC,24 +3260,2021_tab14_rentroyalty_amount_lt0_all,2021,tab14,rentroyalty,amount,Rent and royalty net loss,lt0,filers,all,17,"$1,500,000 under $2,000,000",894747000.0,21in14ar.xls,BC25,55,BC,25 +3261,2021_tab14_rentroyalty_amount_lt0_all,2021,tab14,rentroyalty,amount,Rent and royalty net loss,lt0,filers,all,18,"$2,000,000 under $5,000,000",1872901000.0,21in14ar.xls,BC26,55,BC,26 +3262,2021_tab14_rentroyalty_amount_lt0_all,2021,tab14,rentroyalty,amount,Rent and royalty net loss,lt0,filers,all,19,"$5,000,000 under $10,000,000",876204000.0,21in14ar.xls,BC27,55,BC,27 +3263,2021_tab14_rentroyalty_amount_lt0_all,2021,tab14,rentroyalty,amount,Rent and royalty net loss,lt0,filers,all,20,"$10,000,000 or more",1365840000.0,21in14ar.xls,BC28,55,BC,28 +3264,2021_tab14_rentroyalty_count_gt0_all,2021,tab14,rentroyalty,count,Rent/royalty — number of returns with income,gt0,filers,all,1,"All returns, total",6305037.0,21in14ar.xls,AZ9,52,AZ,9 +3265,2021_tab14_rentroyalty_count_gt0_all,2021,tab14,rentroyalty,count,Rent/royalty — number of returns with income,gt0,filers,all,2,No adjusted gross income,127457.0,21in14ar.xls,AZ10,52,AZ,10 +3266,2021_tab14_rentroyalty_count_gt0_all,2021,tab14,rentroyalty,count,Rent/royalty — number of returns with income,gt0,filers,all,3,"$1 under $5,000",105186.0,21in14ar.xls,AZ11,52,AZ,11 +3267,2021_tab14_rentroyalty_count_gt0_all,2021,tab14,rentroyalty,count,Rent/royalty — number of returns with income,gt0,filers,all,4,"$5,000 under $10,000",177352.0,21in14ar.xls,AZ12,52,AZ,12 +3268,2021_tab14_rentroyalty_count_gt0_all,2021,tab14,rentroyalty,count,Rent/royalty — number of returns with income,gt0,filers,all,5,"$10,000 under $15,000",206801.0,21in14ar.xls,AZ13,52,AZ,13 +3269,2021_tab14_rentroyalty_count_gt0_all,2021,tab14,rentroyalty,count,Rent/royalty — number of returns with income,gt0,filers,all,6,"$15,000 under $20,000",192320.0,21in14ar.xls,AZ14,52,AZ,14 +3270,2021_tab14_rentroyalty_count_gt0_all,2021,tab14,rentroyalty,count,Rent/royalty — number of returns with income,gt0,filers,all,7,"$20,000 under $25,000",173129.0,21in14ar.xls,AZ15,52,AZ,15 +3271,2021_tab14_rentroyalty_count_gt0_all,2021,tab14,rentroyalty,count,Rent/royalty — number of returns with income,gt0,filers,all,8,"$25,000 under $30,000",163891.0,21in14ar.xls,AZ16,52,AZ,16 +3272,2021_tab14_rentroyalty_count_gt0_all,2021,tab14,rentroyalty,count,Rent/royalty — number of returns with income,gt0,filers,all,9,"$30,000 under $40,000",271019.0,21in14ar.xls,AZ17,52,AZ,17 +3273,2021_tab14_rentroyalty_count_gt0_all,2021,tab14,rentroyalty,count,Rent/royalty — number of returns with income,gt0,filers,all,10,"$40,000 under $50,000",289556.0,21in14ar.xls,AZ18,52,AZ,18 +3274,2021_tab14_rentroyalty_count_gt0_all,2021,tab14,rentroyalty,count,Rent/royalty — number of returns with income,gt0,filers,all,11,"$50,000 under $75,000",759142.0,21in14ar.xls,AZ19,52,AZ,19 +3275,2021_tab14_rentroyalty_count_gt0_all,2021,tab14,rentroyalty,count,Rent/royalty — number of returns with income,gt0,filers,all,12,"$75,000 under $100,000",711934.0,21in14ar.xls,AZ20,52,AZ,20 +3276,2021_tab14_rentroyalty_count_gt0_all,2021,tab14,rentroyalty,count,Rent/royalty — number of returns with income,gt0,filers,all,13,"$100,000 under $200,000",1629877.0,21in14ar.xls,AZ21,52,AZ,21 +3277,2021_tab14_rentroyalty_count_gt0_all,2021,tab14,rentroyalty,count,Rent/royalty — number of returns with income,gt0,filers,all,14,"$200,000 under $500,000",1009957.0,21in14ar.xls,AZ22,52,AZ,22 +3278,2021_tab14_rentroyalty_count_gt0_all,2021,tab14,rentroyalty,count,Rent/royalty — number of returns with income,gt0,filers,all,15,"$500,000 under $1,000,000",271737.0,21in14ar.xls,AZ23,52,AZ,23 +3279,2021_tab14_rentroyalty_count_gt0_all,2021,tab14,rentroyalty,count,Rent/royalty — number of returns with income,gt0,filers,all,16,"$1,000,000 under $1,500,000",79355.0,21in14ar.xls,AZ24,52,AZ,24 +3280,2021_tab14_rentroyalty_count_gt0_all,2021,tab14,rentroyalty,count,Rent/royalty — number of returns with income,gt0,filers,all,17,"$1,500,000 under $2,000,000",36535.0,21in14ar.xls,AZ25,52,AZ,25 +3281,2021_tab14_rentroyalty_count_gt0_all,2021,tab14,rentroyalty,count,Rent/royalty — number of returns with income,gt0,filers,all,18,"$2,000,000 under $5,000,000",62357.0,21in14ar.xls,AZ26,52,AZ,26 +3282,2021_tab14_rentroyalty_count_gt0_all,2021,tab14,rentroyalty,count,Rent/royalty — number of returns with income,gt0,filers,all,19,"$5,000,000 under $10,000,000",20267.0,21in14ar.xls,AZ27,52,AZ,27 +3283,2021_tab14_rentroyalty_count_gt0_all,2021,tab14,rentroyalty,count,Rent/royalty — number of returns with income,gt0,filers,all,20,"$10,000,000 or more",17163.0,21in14ar.xls,AZ28,52,AZ,28 +3284,2021_tab14_rentroyalty_count_lt0_all,2021,tab14,rentroyalty,count,Rent/royalty — number of returns with loss,lt0,filers,all,1,"All returns, total",3496912.0,21in14ar.xls,BB9,54,BB,9 +3285,2021_tab14_rentroyalty_count_lt0_all,2021,tab14,rentroyalty,count,Rent/royalty — number of returns with loss,lt0,filers,all,2,No adjusted gross income,186685.0,21in14ar.xls,BB10,54,BB,10 +3286,2021_tab14_rentroyalty_count_lt0_all,2021,tab14,rentroyalty,count,Rent/royalty — number of returns with loss,lt0,filers,all,3,"$1 under $5,000",47651.0,21in14ar.xls,BB11,54,BB,11 +3287,2021_tab14_rentroyalty_count_lt0_all,2021,tab14,rentroyalty,count,Rent/royalty — number of returns with loss,lt0,filers,all,4,"$5,000 under $10,000",52142.0,21in14ar.xls,BB12,54,BB,12 +3288,2021_tab14_rentroyalty_count_lt0_all,2021,tab14,rentroyalty,count,Rent/royalty — number of returns with loss,lt0,filers,all,5,"$10,000 under $15,000",79992.0,21in14ar.xls,BB13,54,BB,13 +3289,2021_tab14_rentroyalty_count_lt0_all,2021,tab14,rentroyalty,count,Rent/royalty — number of returns with loss,lt0,filers,all,6,"$15,000 under $20,000",71717.0,21in14ar.xls,BB14,54,BB,14 +3290,2021_tab14_rentroyalty_count_lt0_all,2021,tab14,rentroyalty,count,Rent/royalty — number of returns with loss,lt0,filers,all,7,"$20,000 under $25,000",87413.0,21in14ar.xls,BB15,54,BB,15 +3291,2021_tab14_rentroyalty_count_lt0_all,2021,tab14,rentroyalty,count,Rent/royalty — number of returns with loss,lt0,filers,all,8,"$25,000 under $30,000",100383.0,21in14ar.xls,BB16,54,BB,16 +3292,2021_tab14_rentroyalty_count_lt0_all,2021,tab14,rentroyalty,count,Rent/royalty — number of returns with loss,lt0,filers,all,9,"$30,000 under $40,000",201219.0,21in14ar.xls,BB17,54,BB,17 +3293,2021_tab14_rentroyalty_count_lt0_all,2021,tab14,rentroyalty,count,Rent/royalty — number of returns with loss,lt0,filers,all,10,"$40,000 under $50,000",188133.0,21in14ar.xls,BB18,54,BB,18 +3294,2021_tab14_rentroyalty_count_lt0_all,2021,tab14,rentroyalty,count,Rent/royalty — number of returns with loss,lt0,filers,all,11,"$50,000 under $75,000",512458.0,21in14ar.xls,BB19,54,BB,19 +3295,2021_tab14_rentroyalty_count_lt0_all,2021,tab14,rentroyalty,count,Rent/royalty — number of returns with loss,lt0,filers,all,12,"$75,000 under $100,000",506912.0,21in14ar.xls,BB20,54,BB,20 +3296,2021_tab14_rentroyalty_count_lt0_all,2021,tab14,rentroyalty,count,Rent/royalty — number of returns with loss,lt0,filers,all,13,"$100,000 under $200,000",928576.0,21in14ar.xls,BB21,54,BB,21 +3297,2021_tab14_rentroyalty_count_lt0_all,2021,tab14,rentroyalty,count,Rent/royalty — number of returns with loss,lt0,filers,all,14,"$200,000 under $500,000",340074.0,21in14ar.xls,BB22,54,BB,22 +3298,2021_tab14_rentroyalty_count_lt0_all,2021,tab14,rentroyalty,count,Rent/royalty — number of returns with loss,lt0,filers,all,15,"$500,000 under $1,000,000",109995.0,21in14ar.xls,BB23,54,BB,23 +3299,2021_tab14_rentroyalty_count_lt0_all,2021,tab14,rentroyalty,count,Rent/royalty — number of returns with loss,lt0,filers,all,16,"$1,000,000 under $1,500,000",31247.0,21in14ar.xls,BB24,54,BB,24 +3300,2021_tab14_rentroyalty_count_lt0_all,2021,tab14,rentroyalty,count,Rent/royalty — number of returns with loss,lt0,filers,all,17,"$1,500,000 under $2,000,000",14592.0,21in14ar.xls,BB25,54,BB,25 +3301,2021_tab14_rentroyalty_count_lt0_all,2021,tab14,rentroyalty,count,Rent/royalty — number of returns with loss,lt0,filers,all,18,"$2,000,000 under $5,000,000",24066.0,21in14ar.xls,BB26,54,BB,26 +3302,2021_tab14_rentroyalty_count_lt0_all,2021,tab14,rentroyalty,count,Rent/royalty — number of returns with loss,lt0,filers,all,19,"$5,000,000 under $10,000,000",7425.0,21in14ar.xls,BB27,54,BB,27 +3303,2021_tab14_rentroyalty_count_lt0_all,2021,tab14,rentroyalty,count,Rent/royalty — number of returns with loss,lt0,filers,all,20,"$10,000,000 or more",6233.0,21in14ar.xls,BB28,54,BB,28 +3304,2021_tab14_scorpincome_amount_gt0_all,2021,tab14,scorpincome,amount,S-corporation net income (2021+),gt0,filers,all,1,"All returns, total",766681240000.0,21in14ar.xls,BI9,61,BI,9 +3305,2021_tab14_scorpincome_amount_gt0_all,2021,tab14,scorpincome,amount,S-corporation net income (2021+),gt0,filers,all,2,No adjusted gross income,4391548000.0,21in14ar.xls,BI10,61,BI,10 +3306,2021_tab14_scorpincome_amount_gt0_all,2021,tab14,scorpincome,amount,S-corporation net income (2021+),gt0,filers,all,3,"$1 under $5,000",92564000.0,21in14ar.xls,BI11,61,BI,11 +3307,2021_tab14_scorpincome_amount_gt0_all,2021,tab14,scorpincome,amount,S-corporation net income (2021+),gt0,filers,all,4,"$5,000 under $10,000",347412000.0,21in14ar.xls,BI12,61,BI,12 +3308,2021_tab14_scorpincome_amount_gt0_all,2021,tab14,scorpincome,amount,S-corporation net income (2021+),gt0,filers,all,5,"$10,000 under $15,000",453016000.0,21in14ar.xls,BI13,61,BI,13 +3309,2021_tab14_scorpincome_amount_gt0_all,2021,tab14,scorpincome,amount,S-corporation net income (2021+),gt0,filers,all,6,"$15,000 under $20,000",592026000.0,21in14ar.xls,BI14,61,BI,14 +3310,2021_tab14_scorpincome_amount_gt0_all,2021,tab14,scorpincome,amount,S-corporation net income (2021+),gt0,filers,all,7,"$20,000 under $25,000",779624000.0,21in14ar.xls,BI15,61,BI,15 +3311,2021_tab14_scorpincome_amount_gt0_all,2021,tab14,scorpincome,amount,S-corporation net income (2021+),gt0,filers,all,8,"$25,000 under $30,000",1069086000.0,21in14ar.xls,BI16,61,BI,16 +3312,2021_tab14_scorpincome_amount_gt0_all,2021,tab14,scorpincome,amount,S-corporation net income (2021+),gt0,filers,all,9,"$30,000 under $40,000",2553876000.0,21in14ar.xls,BI17,61,BI,17 +3313,2021_tab14_scorpincome_amount_gt0_all,2021,tab14,scorpincome,amount,S-corporation net income (2021+),gt0,filers,all,10,"$40,000 under $50,000",2703861000.0,21in14ar.xls,BI18,61,BI,18 +3314,2021_tab14_scorpincome_amount_gt0_all,2021,tab14,scorpincome,amount,S-corporation net income (2021+),gt0,filers,all,11,"$50,000 under $75,000",9980514000.0,21in14ar.xls,BI19,61,BI,19 +3315,2021_tab14_scorpincome_amount_gt0_all,2021,tab14,scorpincome,amount,S-corporation net income (2021+),gt0,filers,all,12,"$75,000 under $100,000",12626016000.0,21in14ar.xls,BI20,61,BI,20 +3316,2021_tab14_scorpincome_amount_gt0_all,2021,tab14,scorpincome,amount,S-corporation net income (2021+),gt0,filers,all,13,"$100,000 under $200,000",51717735000.0,21in14ar.xls,BI21,61,BI,21 +3317,2021_tab14_scorpincome_amount_gt0_all,2021,tab14,scorpincome,amount,S-corporation net income (2021+),gt0,filers,all,14,"$200,000 under $500,000",118036039000.0,21in14ar.xls,BI22,61,BI,22 +3318,2021_tab14_scorpincome_amount_gt0_all,2021,tab14,scorpincome,amount,S-corporation net income (2021+),gt0,filers,all,15,"$500,000 under $1,000,000",100763796000.0,21in14ar.xls,BI23,61,BI,23 +3319,2021_tab14_scorpincome_amount_gt0_all,2021,tab14,scorpincome,amount,S-corporation net income (2021+),gt0,filers,all,16,"$1,000,000 under $1,500,000",62531757000.0,21in14ar.xls,BI24,61,BI,24 +3320,2021_tab14_scorpincome_amount_gt0_all,2021,tab14,scorpincome,amount,S-corporation net income (2021+),gt0,filers,all,17,"$1,500,000 under $2,000,000",42085326000.0,21in14ar.xls,BI25,61,BI,25 +3321,2021_tab14_scorpincome_amount_gt0_all,2021,tab14,scorpincome,amount,S-corporation net income (2021+),gt0,filers,all,18,"$2,000,000 under $5,000,000",116109397000.0,21in14ar.xls,BI26,61,BI,26 +3322,2021_tab14_scorpincome_amount_gt0_all,2021,tab14,scorpincome,amount,S-corporation net income (2021+),gt0,filers,all,19,"$5,000,000 under $10,000,000",68737430000.0,21in14ar.xls,BI27,61,BI,27 +3323,2021_tab14_scorpincome_amount_gt0_all,2021,tab14,scorpincome,amount,S-corporation net income (2021+),gt0,filers,all,20,"$10,000,000 or more",171110216000.0,21in14ar.xls,BI28,61,BI,28 +3324,2021_tab14_scorpincome_amount_lt0_all,2021,tab14,scorpincome,amount,S-corporation net loss (2021+),lt0,filers,all,1,"All returns, total",92689104000.0,21in14ar.xls,BK9,63,BK,9 +3325,2021_tab14_scorpincome_amount_lt0_all,2021,tab14,scorpincome,amount,S-corporation net loss (2021+),lt0,filers,all,2,No adjusted gross income,29520422000.0,21in14ar.xls,BK10,63,BK,10 +3326,2021_tab14_scorpincome_amount_lt0_all,2021,tab14,scorpincome,amount,S-corporation net loss (2021+),lt0,filers,all,3,"$1 under $5,000",795211000.0,21in14ar.xls,BK11,63,BK,11 +3327,2021_tab14_scorpincome_amount_lt0_all,2021,tab14,scorpincome,amount,S-corporation net loss (2021+),lt0,filers,all,4,"$5,000 under $10,000",1043588000.0,21in14ar.xls,BK12,63,BK,12 +3328,2021_tab14_scorpincome_amount_lt0_all,2021,tab14,scorpincome,amount,S-corporation net loss (2021+),lt0,filers,all,5,"$10,000 under $15,000",889474000.0,21in14ar.xls,BK13,63,BK,13 +3329,2021_tab14_scorpincome_amount_lt0_all,2021,tab14,scorpincome,amount,S-corporation net loss (2021+),lt0,filers,all,6,"$15,000 under $20,000",1157717000.0,21in14ar.xls,BK14,63,BK,14 +3330,2021_tab14_scorpincome_amount_lt0_all,2021,tab14,scorpincome,amount,S-corporation net loss (2021+),lt0,filers,all,7,"$20,000 under $25,000",690852000.0,21in14ar.xls,BK15,63,BK,15 +3331,2021_tab14_scorpincome_amount_lt0_all,2021,tab14,scorpincome,amount,S-corporation net loss (2021+),lt0,filers,all,8,"$25,000 under $30,000",896241000.0,21in14ar.xls,BK16,63,BK,16 +3332,2021_tab14_scorpincome_amount_lt0_all,2021,tab14,scorpincome,amount,S-corporation net loss (2021+),lt0,filers,all,9,"$30,000 under $40,000",1582533000.0,21in14ar.xls,BK17,63,BK,17 +3333,2021_tab14_scorpincome_amount_lt0_all,2021,tab14,scorpincome,amount,S-corporation net loss (2021+),lt0,filers,all,10,"$40,000 under $50,000",1062758000.0,21in14ar.xls,BK18,63,BK,18 +3334,2021_tab14_scorpincome_amount_lt0_all,2021,tab14,scorpincome,amount,S-corporation net loss (2021+),lt0,filers,all,11,"$50,000 under $75,000",4382315000.0,21in14ar.xls,BK19,63,BK,19 +3335,2021_tab14_scorpincome_amount_lt0_all,2021,tab14,scorpincome,amount,S-corporation net loss (2021+),lt0,filers,all,12,"$75,000 under $100,000",3469917000.0,21in14ar.xls,BK20,63,BK,20 +3336,2021_tab14_scorpincome_amount_lt0_all,2021,tab14,scorpincome,amount,S-corporation net loss (2021+),lt0,filers,all,13,"$100,000 under $200,000",9417120000.0,21in14ar.xls,BK21,63,BK,21 +3337,2021_tab14_scorpincome_amount_lt0_all,2021,tab14,scorpincome,amount,S-corporation net loss (2021+),lt0,filers,all,14,"$200,000 under $500,000",9774224000.0,21in14ar.xls,BK22,63,BK,22 +3338,2021_tab14_scorpincome_amount_lt0_all,2021,tab14,scorpincome,amount,S-corporation net loss (2021+),lt0,filers,all,15,"$500,000 under $1,000,000",5305980000.0,21in14ar.xls,BK23,63,BK,23 +3339,2021_tab14_scorpincome_amount_lt0_all,2021,tab14,scorpincome,amount,S-corporation net loss (2021+),lt0,filers,all,16,"$1,000,000 under $1,500,000",2401748000.0,21in14ar.xls,BK24,63,BK,24 +3340,2021_tab14_scorpincome_amount_lt0_all,2021,tab14,scorpincome,amount,S-corporation net loss (2021+),lt0,filers,all,17,"$1,500,000 under $2,000,000",1521322000.0,21in14ar.xls,BK25,63,BK,25 +3341,2021_tab14_scorpincome_amount_lt0_all,2021,tab14,scorpincome,amount,S-corporation net loss (2021+),lt0,filers,all,18,"$2,000,000 under $5,000,000",4389329000.0,21in14ar.xls,BK26,63,BK,26 +3342,2021_tab14_scorpincome_amount_lt0_all,2021,tab14,scorpincome,amount,S-corporation net loss (2021+),lt0,filers,all,19,"$5,000,000 under $10,000,000",2633645000.0,21in14ar.xls,BK27,63,BK,27 +3343,2021_tab14_scorpincome_amount_lt0_all,2021,tab14,scorpincome,amount,S-corporation net loss (2021+),lt0,filers,all,20,"$10,000,000 or more",11754707000.0,21in14ar.xls,BK28,63,BK,28 +3344,2021_tab14_scorpincome_count_gt0_all,2021,tab14,scorpincome,count,S-corporation income — number with income (2021+),gt0,filers,all,1,"All returns, total",3878815.0,21in14ar.xls,BH9,60,BH,9 +3345,2021_tab14_scorpincome_count_gt0_all,2021,tab14,scorpincome,count,S-corporation income — number with income (2021+),gt0,filers,all,2,No adjusted gross income,29831.0,21in14ar.xls,BH10,60,BH,10 +3346,2021_tab14_scorpincome_count_gt0_all,2021,tab14,scorpincome,count,S-corporation income — number with income (2021+),gt0,filers,all,3,"$1 under $5,000",20073.0,21in14ar.xls,BH11,60,BH,11 +3347,2021_tab14_scorpincome_count_gt0_all,2021,tab14,scorpincome,count,S-corporation income — number with income (2021+),gt0,filers,all,4,"$5,000 under $10,000",35163.0,21in14ar.xls,BH12,60,BH,12 +3348,2021_tab14_scorpincome_count_gt0_all,2021,tab14,scorpincome,count,S-corporation income — number with income (2021+),gt0,filers,all,5,"$10,000 under $15,000",32367.0,21in14ar.xls,BH13,60,BH,13 +3349,2021_tab14_scorpincome_count_gt0_all,2021,tab14,scorpincome,count,S-corporation income — number with income (2021+),gt0,filers,all,6,"$15,000 under $20,000",56930.0,21in14ar.xls,BH14,60,BH,14 +3350,2021_tab14_scorpincome_count_gt0_all,2021,tab14,scorpincome,count,S-corporation income — number with income (2021+),gt0,filers,all,7,"$20,000 under $25,000",57490.0,21in14ar.xls,BH15,60,BH,15 +3351,2021_tab14_scorpincome_count_gt0_all,2021,tab14,scorpincome,count,S-corporation income — number with income (2021+),gt0,filers,all,8,"$25,000 under $30,000",67025.0,21in14ar.xls,BH16,60,BH,16 +3352,2021_tab14_scorpincome_count_gt0_all,2021,tab14,scorpincome,count,S-corporation income — number with income (2021+),gt0,filers,all,9,"$30,000 under $40,000",146497.0,21in14ar.xls,BH17,60,BH,17 +3353,2021_tab14_scorpincome_count_gt0_all,2021,tab14,scorpincome,count,S-corporation income — number with income (2021+),gt0,filers,all,10,"$40,000 under $50,000",127348.0,21in14ar.xls,BH18,60,BH,18 +3354,2021_tab14_scorpincome_count_gt0_all,2021,tab14,scorpincome,count,S-corporation income — number with income (2021+),gt0,filers,all,11,"$50,000 under $75,000",351051.0,21in14ar.xls,BH19,60,BH,19 +3355,2021_tab14_scorpincome_count_gt0_all,2021,tab14,scorpincome,count,S-corporation income — number with income (2021+),gt0,filers,all,12,"$75,000 under $100,000",344190.0,21in14ar.xls,BH20,60,BH,20 +3356,2021_tab14_scorpincome_count_gt0_all,2021,tab14,scorpincome,count,S-corporation income — number with income (2021+),gt0,filers,all,13,"$100,000 under $200,000",1023614.0,21in14ar.xls,BH21,60,BH,21 +3357,2021_tab14_scorpincome_count_gt0_all,2021,tab14,scorpincome,count,S-corporation income — number with income (2021+),gt0,filers,all,14,"$200,000 under $500,000",964074.0,21in14ar.xls,BH22,60,BH,22 +3358,2021_tab14_scorpincome_count_gt0_all,2021,tab14,scorpincome,count,S-corporation income — number with income (2021+),gt0,filers,all,15,"$500,000 under $1,000,000",341823.0,21in14ar.xls,BH23,60,BH,23 +3359,2021_tab14_scorpincome_count_gt0_all,2021,tab14,scorpincome,count,S-corporation income — number with income (2021+),gt0,filers,all,16,"$1,000,000 under $1,500,000",110295.0,21in14ar.xls,BH24,60,BH,24 +3360,2021_tab14_scorpincome_count_gt0_all,2021,tab14,scorpincome,count,S-corporation income — number with income (2021+),gt0,filers,all,17,"$1,500,000 under $2,000,000",50221.0,21in14ar.xls,BH25,60,BH,25 +3361,2021_tab14_scorpincome_count_gt0_all,2021,tab14,scorpincome,count,S-corporation income — number with income (2021+),gt0,filers,all,18,"$2,000,000 under $5,000,000",80671.0,21in14ar.xls,BH26,60,BH,26 +3362,2021_tab14_scorpincome_count_gt0_all,2021,tab14,scorpincome,count,S-corporation income — number with income (2021+),gt0,filers,all,19,"$5,000,000 under $10,000,000",23204.0,21in14ar.xls,BH27,60,BH,27 +3363,2021_tab14_scorpincome_count_gt0_all,2021,tab14,scorpincome,count,S-corporation income — number with income (2021+),gt0,filers,all,20,"$10,000,000 or more",16948.0,21in14ar.xls,BH28,60,BH,28 +3364,2021_tab14_scorpincome_count_lt0_all,2021,tab14,scorpincome,count,S-corporation income — number with loss (2021+),lt0,filers,all,1,"All returns, total",1453974.0,21in14ar.xls,BJ9,62,BJ,9 +3365,2021_tab14_scorpincome_count_lt0_all,2021,tab14,scorpincome,count,S-corporation income — number with loss (2021+),lt0,filers,all,2,No adjusted gross income,184546.0,21in14ar.xls,BJ10,62,BJ,10 +3366,2021_tab14_scorpincome_count_lt0_all,2021,tab14,scorpincome,count,S-corporation income — number with loss (2021+),lt0,filers,all,3,"$1 under $5,000",22633.0,21in14ar.xls,BJ11,62,BJ,11 +3367,2021_tab14_scorpincome_count_lt0_all,2021,tab14,scorpincome,count,S-corporation income — number with loss (2021+),lt0,filers,all,4,"$5,000 under $10,000",28589.0,21in14ar.xls,BJ12,62,BJ,12 +3368,2021_tab14_scorpincome_count_lt0_all,2021,tab14,scorpincome,count,S-corporation income — number with loss (2021+),lt0,filers,all,5,"$10,000 under $15,000",22953.0,21in14ar.xls,BJ13,62,BJ,13 +3369,2021_tab14_scorpincome_count_lt0_all,2021,tab14,scorpincome,count,S-corporation income — number with loss (2021+),lt0,filers,all,6,"$15,000 under $20,000",36524.0,21in14ar.xls,BJ14,62,BJ,14 +3370,2021_tab14_scorpincome_count_lt0_all,2021,tab14,scorpincome,count,S-corporation income — number with loss (2021+),lt0,filers,all,7,"$20,000 under $25,000",28645.0,21in14ar.xls,BJ15,62,BJ,15 +3371,2021_tab14_scorpincome_count_lt0_all,2021,tab14,scorpincome,count,S-corporation income — number with loss (2021+),lt0,filers,all,8,"$25,000 under $30,000",28773.0,21in14ar.xls,BJ16,62,BJ,16 +3372,2021_tab14_scorpincome_count_lt0_all,2021,tab14,scorpincome,count,S-corporation income — number with loss (2021+),lt0,filers,all,9,"$30,000 under $40,000",66998.0,21in14ar.xls,BJ17,62,BJ,17 +3373,2021_tab14_scorpincome_count_lt0_all,2021,tab14,scorpincome,count,S-corporation income — number with loss (2021+),lt0,filers,all,10,"$40,000 under $50,000",47866.0,21in14ar.xls,BJ18,62,BJ,18 +3374,2021_tab14_scorpincome_count_lt0_all,2021,tab14,scorpincome,count,S-corporation income — number with loss (2021+),lt0,filers,all,11,"$50,000 under $75,000",160626.0,21in14ar.xls,BJ19,62,BJ,19 +3375,2021_tab14_scorpincome_count_lt0_all,2021,tab14,scorpincome,count,S-corporation income — number with loss (2021+),lt0,filers,all,12,"$75,000 under $100,000",125252.0,21in14ar.xls,BJ20,62,BJ,20 +3376,2021_tab14_scorpincome_count_lt0_all,2021,tab14,scorpincome,count,S-corporation income — number with loss (2021+),lt0,filers,all,13,"$100,000 under $200,000",354264.0,21in14ar.xls,BJ21,62,BJ,21 +3377,2021_tab14_scorpincome_count_lt0_all,2021,tab14,scorpincome,count,S-corporation income — number with loss (2021+),lt0,filers,all,14,"$200,000 under $500,000",222459.0,21in14ar.xls,BJ22,62,BJ,22 +3378,2021_tab14_scorpincome_count_lt0_all,2021,tab14,scorpincome,count,S-corporation income — number with loss (2021+),lt0,filers,all,15,"$500,000 under $1,000,000",67985.0,21in14ar.xls,BJ23,62,BJ,23 +3379,2021_tab14_scorpincome_count_lt0_all,2021,tab14,scorpincome,count,S-corporation income — number with loss (2021+),lt0,filers,all,16,"$1,000,000 under $1,500,000",19489.0,21in14ar.xls,BJ24,62,BJ,24 +3380,2021_tab14_scorpincome_count_lt0_all,2021,tab14,scorpincome,count,S-corporation income — number with loss (2021+),lt0,filers,all,17,"$1,500,000 under $2,000,000",9229.0,21in14ar.xls,BJ25,62,BJ,25 +3381,2021_tab14_scorpincome_count_lt0_all,2021,tab14,scorpincome,count,S-corporation income — number with loss (2021+),lt0,filers,all,18,"$2,000,000 under $5,000,000",16093.0,21in14ar.xls,BJ26,62,BJ,26 +3382,2021_tab14_scorpincome_count_lt0_all,2021,tab14,scorpincome,count,S-corporation income — number with loss (2021+),lt0,filers,all,19,"$5,000,000 under $10,000,000",5688.0,21in14ar.xls,BJ27,62,BJ,27 +3383,2021_tab14_scorpincome_count_lt0_all,2021,tab14,scorpincome,count,S-corporation income — number with loss (2021+),lt0,filers,all,20,"$10,000,000 or more",5363.0,21in14ar.xls,BJ28,62,BJ,28 +3384,2021_tab14_socsectaxable_amount_nz_all,2021,tab14,socsectaxable,amount,Social security benefits (taxable),nz,filers,all,1,"All returns, total",412830233000.0,21in14ar.xls,BY9,77,BY,9 +3385,2021_tab14_socsectaxable_amount_nz_all,2021,tab14,socsectaxable,amount,Social security benefits (taxable),nz,filers,all,2,No adjusted gross income,5051000.0,21in14ar.xls,BY10,77,BY,10 +3386,2021_tab14_socsectaxable_amount_nz_all,2021,tab14,socsectaxable,amount,Social security benefits (taxable),nz,filers,all,3,"$1 under $5,000",56211000.0,21in14ar.xls,BY11,77,BY,11 +3387,2021_tab14_socsectaxable_amount_nz_all,2021,tab14,socsectaxable,amount,Social security benefits (taxable),nz,filers,all,4,"$5,000 under $10,000",236096000.0,21in14ar.xls,BY12,77,BY,12 +3388,2021_tab14_socsectaxable_amount_nz_all,2021,tab14,socsectaxable,amount,Social security benefits (taxable),nz,filers,all,5,"$10,000 under $15,000",376863000.0,21in14ar.xls,BY13,77,BY,13 +3389,2021_tab14_socsectaxable_amount_nz_all,2021,tab14,socsectaxable,amount,Social security benefits (taxable),nz,filers,all,6,"$15,000 under $20,000",1390216000.0,21in14ar.xls,BY14,77,BY,14 +3390,2021_tab14_socsectaxable_amount_nz_all,2021,tab14,socsectaxable,amount,Social security benefits (taxable),nz,filers,all,7,"$20,000 under $25,000",3274619000.0,21in14ar.xls,BY15,77,BY,15 +3391,2021_tab14_socsectaxable_amount_nz_all,2021,tab14,socsectaxable,amount,Social security benefits (taxable),nz,filers,all,8,"$25,000 under $30,000",5194320000.0,21in14ar.xls,BY16,77,BY,16 +3392,2021_tab14_socsectaxable_amount_nz_all,2021,tab14,socsectaxable,amount,Social security benefits (taxable),nz,filers,all,9,"$30,000 under $40,000",14547676000.0,21in14ar.xls,BY17,77,BY,17 +3393,2021_tab14_socsectaxable_amount_nz_all,2021,tab14,socsectaxable,amount,Social security benefits (taxable),nz,filers,all,10,"$40,000 under $50,000",20950320000.0,21in14ar.xls,BY18,77,BY,18 +3394,2021_tab14_socsectaxable_amount_nz_all,2021,tab14,socsectaxable,amount,Social security benefits (taxable),nz,filers,all,11,"$50,000 under $75,000",71433500000.0,21in14ar.xls,BY19,77,BY,19 +3395,2021_tab14_socsectaxable_amount_nz_all,2021,tab14,socsectaxable,amount,Social security benefits (taxable),nz,filers,all,12,"$75,000 under $100,000",73935780000.0,21in14ar.xls,BY20,77,BY,20 +3396,2021_tab14_socsectaxable_amount_nz_all,2021,tab14,socsectaxable,amount,Social security benefits (taxable),nz,filers,all,13,"$100,000 under $200,000",148855563000.0,21in14ar.xls,BY21,77,BY,21 +3397,2021_tab14_socsectaxable_amount_nz_all,2021,tab14,socsectaxable,amount,Social security benefits (taxable),nz,filers,all,14,"$200,000 under $500,000",56662240000.0,21in14ar.xls,BY22,77,BY,22 +3398,2021_tab14_socsectaxable_amount_nz_all,2021,tab14,socsectaxable,amount,Social security benefits (taxable),nz,filers,all,15,"$500,000 under $1,000,000",10063315000.0,21in14ar.xls,BY23,77,BY,23 +3399,2021_tab14_socsectaxable_amount_nz_all,2021,tab14,socsectaxable,amount,Social security benefits (taxable),nz,filers,all,16,"$1,000,000 under $1,500,000",2409392000.0,21in14ar.xls,BY24,77,BY,24 +3400,2021_tab14_socsectaxable_amount_nz_all,2021,tab14,socsectaxable,amount,Social security benefits (taxable),nz,filers,all,17,"$1,500,000 under $2,000,000",1049301000.0,21in14ar.xls,BY25,77,BY,25 +3401,2021_tab14_socsectaxable_amount_nz_all,2021,tab14,socsectaxable,amount,Social security benefits (taxable),nz,filers,all,18,"$2,000,000 under $5,000,000",1604460000.0,21in14ar.xls,BY26,77,BY,26 +3402,2021_tab14_socsectaxable_amount_nz_all,2021,tab14,socsectaxable,amount,Social security benefits (taxable),nz,filers,all,19,"$5,000,000 under $10,000,000",454512000.0,21in14ar.xls,BY27,77,BY,27 +3403,2021_tab14_socsectaxable_amount_nz_all,2021,tab14,socsectaxable,amount,Social security benefits (taxable),nz,filers,all,20,"$10,000,000 or more",330800000.0,21in14ar.xls,BY28,77,BY,28 +3404,2021_tab14_socsectaxable_count_nz_all,2021,tab14,socsectaxable,count,Social security benefits (taxable) — number of returns,nz,filers,all,1,"All returns, total",23798351.0,21in14ar.xls,BX9,76,BX,9 +3405,2021_tab14_socsectaxable_count_nz_all,2021,tab14,socsectaxable,count,Social security benefits (taxable) — number of returns,nz,filers,all,2,No adjusted gross income,1810.0,21in14ar.xls,BX10,76,BX,10 +3406,2021_tab14_socsectaxable_count_nz_all,2021,tab14,socsectaxable,count,Social security benefits (taxable) — number of returns,nz,filers,all,3,"$1 under $5,000",17871.0,21in14ar.xls,BX11,76,BX,11 +3407,2021_tab14_socsectaxable_count_nz_all,2021,tab14,socsectaxable,count,Social security benefits (taxable) — number of returns,nz,filers,all,4,"$5,000 under $10,000",53922.0,21in14ar.xls,BX12,76,BX,12 +3408,2021_tab14_socsectaxable_count_nz_all,2021,tab14,socsectaxable,count,Social security benefits (taxable) — number of returns,nz,filers,all,5,"$10,000 under $15,000",286325.0,21in14ar.xls,BX13,76,BX,13 +3409,2021_tab14_socsectaxable_count_nz_all,2021,tab14,socsectaxable,count,Social security benefits (taxable) — number of returns,nz,filers,all,6,"$15,000 under $20,000",1001301.0,21in14ar.xls,BX14,76,BX,14 +3410,2021_tab14_socsectaxable_count_nz_all,2021,tab14,socsectaxable,count,Social security benefits (taxable) — number of returns,nz,filers,all,7,"$20,000 under $25,000",1239135.0,21in14ar.xls,BX15,76,BX,15 +3411,2021_tab14_socsectaxable_count_nz_all,2021,tab14,socsectaxable,count,Social security benefits (taxable) — number of returns,nz,filers,all,8,"$25,000 under $30,000",1280188.0,21in14ar.xls,BX16,76,BX,16 +3412,2021_tab14_socsectaxable_count_nz_all,2021,tab14,socsectaxable,count,Social security benefits (taxable) — number of returns,nz,filers,all,9,"$30,000 under $40,000",2171147.0,21in14ar.xls,BX17,76,BX,17 +3413,2021_tab14_socsectaxable_count_nz_all,2021,tab14,socsectaxable,count,Social security benefits (taxable) — number of returns,nz,filers,all,10,"$40,000 under $50,000",1960565.0,21in14ar.xls,BX18,76,BX,18 +3414,2021_tab14_socsectaxable_count_nz_all,2021,tab14,socsectaxable,count,Social security benefits (taxable) — number of returns,nz,filers,all,11,"$50,000 under $75,000",4372880.0,21in14ar.xls,BX19,76,BX,19 +3415,2021_tab14_socsectaxable_count_nz_all,2021,tab14,socsectaxable,count,Social security benefits (taxable) — number of returns,nz,filers,all,12,"$75,000 under $100,000",3446381.0,21in14ar.xls,BX20,76,BX,20 +3416,2021_tab14_socsectaxable_count_nz_all,2021,tab14,socsectaxable,count,Social security benefits (taxable) — number of returns,nz,filers,all,13,"$100,000 under $200,000",5623506.0,21in14ar.xls,BX21,76,BX,21 +3417,2021_tab14_socsectaxable_count_nz_all,2021,tab14,socsectaxable,count,Social security benefits (taxable) — number of returns,nz,filers,all,14,"$200,000 under $500,000",1871269.0,21in14ar.xls,BX22,76,BX,22 +3418,2021_tab14_socsectaxable_count_nz_all,2021,tab14,socsectaxable,count,Social security benefits (taxable) — number of returns,nz,filers,all,15,"$500,000 under $1,000,000",303816.0,21in14ar.xls,BX23,76,BX,23 +3419,2021_tab14_socsectaxable_count_nz_all,2021,tab14,socsectaxable,count,Social security benefits (taxable) — number of returns,nz,filers,all,16,"$1,000,000 under $1,500,000",70581.0,21in14ar.xls,BX24,76,BX,24 +3420,2021_tab14_socsectaxable_count_nz_all,2021,tab14,socsectaxable,count,Social security benefits (taxable) — number of returns,nz,filers,all,17,"$1,500,000 under $2,000,000",30206.0,21in14ar.xls,BX25,76,BX,25 +3421,2021_tab14_socsectaxable_count_nz_all,2021,tab14,socsectaxable,count,Social security benefits (taxable) — number of returns,nz,filers,all,18,"$2,000,000 under $5,000,000",46179.0,21in14ar.xls,BX26,76,BX,26 +3422,2021_tab14_socsectaxable_count_nz_all,2021,tab14,socsectaxable,count,Social security benefits (taxable) — number of returns,nz,filers,all,19,"$5,000,000 under $10,000,000",12500.0,21in14ar.xls,BX27,76,BX,27 +3423,2021_tab14_socsectaxable_count_nz_all,2021,tab14,socsectaxable,count,Social security benefits (taxable) — number of returns,nz,filers,all,20,"$10,000,000 or more",8767.0,21in14ar.xls,BX28,76,BX,28 +3424,2021_tab14_socsectot_amount_nz_all,2021,tab14,socsectot,amount,Social security benefits (total),nz,filers,all,1,"All returns, total",791161174000.0,21in14ar.xls,BW9,75,BW,9 +3425,2021_tab14_socsectot_amount_nz_all,2021,tab14,socsectot,amount,Social security benefits (total),nz,filers,all,2,No adjusted gross income,23536368000.0,21in14ar.xls,BW10,75,BW,10 +3426,2021_tab14_socsectot_amount_nz_all,2021,tab14,socsectot,amount,Social security benefits (total),nz,filers,all,3,"$1 under $5,000",39846341000.0,21in14ar.xls,BW11,75,BW,11 +3427,2021_tab14_socsectot_amount_nz_all,2021,tab14,socsectot,amount,Social security benefits (total),nz,filers,all,4,"$5,000 under $10,000",35515487000.0,21in14ar.xls,BW12,75,BW,12 +3428,2021_tab14_socsectot_amount_nz_all,2021,tab14,socsectot,amount,Social security benefits (total),nz,filers,all,5,"$10,000 under $15,000",40383202000.0,21in14ar.xls,BW13,75,BW,13 +3429,2021_tab14_socsectot_amount_nz_all,2021,tab14,socsectot,amount,Social security benefits (total),nz,filers,all,6,"$15,000 under $20,000",36698208000.0,21in14ar.xls,BW14,75,BW,14 +3430,2021_tab14_socsectot_amount_nz_all,2021,tab14,socsectot,amount,Social security benefits (total),nz,filers,all,7,"$20,000 under $25,000",32270846000.0,21in14ar.xls,BW15,75,BW,15 +3431,2021_tab14_socsectot_amount_nz_all,2021,tab14,socsectot,amount,Social security benefits (total),nz,filers,all,8,"$25,000 under $30,000",30607751000.0,21in14ar.xls,BW16,75,BW,16 +3432,2021_tab14_socsectot_amount_nz_all,2021,tab14,socsectot,amount,Social security benefits (total),nz,filers,all,9,"$30,000 under $40,000",50301193000.0,21in14ar.xls,BW17,75,BW,17 +3433,2021_tab14_socsectot_amount_nz_all,2021,tab14,socsectot,amount,Social security benefits (total),nz,filers,all,10,"$40,000 under $50,000",45283931000.0,21in14ar.xls,BW18,75,BW,18 +3434,2021_tab14_socsectot_amount_nz_all,2021,tab14,socsectot,amount,Social security benefits (total),nz,filers,all,11,"$50,000 under $75,000",104788772000.0,21in14ar.xls,BW19,75,BW,19 +3435,2021_tab14_socsectot_amount_nz_all,2021,tab14,socsectot,amount,Social security benefits (total),nz,filers,all,12,"$75,000 under $100,000",90885785000.0,21in14ar.xls,BW20,75,BW,20 +3436,2021_tab14_socsectot_amount_nz_all,2021,tab14,socsectot,amount,Social security benefits (total),nz,filers,all,13,"$100,000 under $200,000",175599410000.0,21in14ar.xls,BW21,75,BW,21 +3437,2021_tab14_socsectot_amount_nz_all,2021,tab14,socsectot,amount,Social security benefits (total),nz,filers,all,14,"$200,000 under $500,000",66714127000.0,21in14ar.xls,BW22,75,BW,22 +3438,2021_tab14_socsectot_amount_nz_all,2021,tab14,socsectot,amount,Social security benefits (total),nz,filers,all,15,"$500,000 under $1,000,000",11845014000.0,21in14ar.xls,BW23,75,BW,23 +3439,2021_tab14_socsectot_amount_nz_all,2021,tab14,socsectot,amount,Social security benefits (total),nz,filers,all,16,"$1,000,000 under $1,500,000",2836780000.0,21in14ar.xls,BW24,75,BW,24 +3440,2021_tab14_socsectot_amount_nz_all,2021,tab14,socsectot,amount,Social security benefits (total),nz,filers,all,17,"$1,500,000 under $2,000,000",1235190000.0,21in14ar.xls,BW25,75,BW,25 +3441,2021_tab14_socsectot_amount_nz_all,2021,tab14,socsectot,amount,Social security benefits (total),nz,filers,all,18,"$2,000,000 under $5,000,000",1888392000.0,21in14ar.xls,BW26,75,BW,26 +3442,2021_tab14_socsectot_amount_nz_all,2021,tab14,socsectot,amount,Social security benefits (total),nz,filers,all,19,"$5,000,000 under $10,000,000",535125000.0,21in14ar.xls,BW27,75,BW,27 +3443,2021_tab14_socsectot_amount_nz_all,2021,tab14,socsectot,amount,Social security benefits (total),nz,filers,all,20,"$10,000,000 or more",389254000.0,21in14ar.xls,BW28,75,BW,28 +3444,2021_tab14_socsectot_count_nz_all,2021,tab14,socsectot,count,Social security benefits (total) — number of returns,nz,filers,all,1,"All returns, total",31293066.0,21in14ar.xls,BV9,74,BV,9 +3445,2021_tab14_socsectot_count_nz_all,2021,tab14,socsectot,count,Social security benefits (total) — number of returns,nz,filers,all,2,No adjusted gross income,1122130.0,21in14ar.xls,BV10,74,BV,10 +3446,2021_tab14_socsectot_count_nz_all,2021,tab14,socsectot,count,Social security benefits (total) — number of returns,nz,filers,all,3,"$1 under $5,000",2034531.0,21in14ar.xls,BV11,74,BV,11 +3447,2021_tab14_socsectot_count_nz_all,2021,tab14,socsectot,count,Social security benefits (total) — number of returns,nz,filers,all,4,"$5,000 under $10,000",1726114.0,21in14ar.xls,BV12,74,BV,12 +3448,2021_tab14_socsectot_count_nz_all,2021,tab14,socsectot,count,Social security benefits (total) — number of returns,nz,filers,all,5,"$10,000 under $15,000",1965208.0,21in14ar.xls,BV13,74,BV,13 +3449,2021_tab14_socsectot_count_nz_all,2021,tab14,socsectot,count,Social security benefits (total) — number of returns,nz,filers,all,6,"$15,000 under $20,000",1753163.0,21in14ar.xls,BV14,74,BV,14 +3450,2021_tab14_socsectot_count_nz_all,2021,tab14,socsectot,count,Social security benefits (total) — number of returns,nz,filers,all,7,"$20,000 under $25,000",1443145.0,21in14ar.xls,BV15,74,BV,15 +3451,2021_tab14_socsectot_count_nz_all,2021,tab14,socsectot,count,Social security benefits (total) — number of returns,nz,filers,all,8,"$25,000 under $30,000",1320304.0,21in14ar.xls,BV16,74,BV,16 +3452,2021_tab14_socsectot_count_nz_all,2021,tab14,socsectot,count,Social security benefits (total) — number of returns,nz,filers,all,9,"$30,000 under $40,000",2173266.0,21in14ar.xls,BV17,74,BV,17 +3453,2021_tab14_socsectot_count_nz_all,2021,tab14,socsectot,count,Social security benefits (total) — number of returns,nz,filers,all,10,"$40,000 under $50,000",1960809.0,21in14ar.xls,BV18,74,BV,18 +3454,2021_tab14_socsectot_count_nz_all,2021,tab14,socsectot,count,Social security benefits (total) — number of returns,nz,filers,all,11,"$50,000 under $75,000",4373045.0,21in14ar.xls,BV19,74,BV,19 +3455,2021_tab14_socsectot_count_nz_all,2021,tab14,socsectot,count,Social security benefits (total) — number of returns,nz,filers,all,12,"$75,000 under $100,000",3447623.0,21in14ar.xls,BV20,74,BV,20 +3456,2021_tab14_socsectot_count_nz_all,2021,tab14,socsectot,count,Social security benefits (total) — number of returns,nz,filers,all,13,"$100,000 under $200,000",5628183.0,21in14ar.xls,BV21,74,BV,21 +3457,2021_tab14_socsectot_count_nz_all,2021,tab14,socsectot,count,Social security benefits (total) — number of returns,nz,filers,all,14,"$200,000 under $500,000",1873015.0,21in14ar.xls,BV22,74,BV,22 +3458,2021_tab14_socsectot_count_nz_all,2021,tab14,socsectot,count,Social security benefits (total) — number of returns,nz,filers,all,15,"$500,000 under $1,000,000",304147.0,21in14ar.xls,BV23,74,BV,23 +3459,2021_tab14_socsectot_count_nz_all,2021,tab14,socsectot,count,Social security benefits (total) — number of returns,nz,filers,all,16,"$1,000,000 under $1,500,000",70642.0,21in14ar.xls,BV24,74,BV,24 +3460,2021_tab14_socsectot_count_nz_all,2021,tab14,socsectot,count,Social security benefits (total) — number of returns,nz,filers,all,17,"$1,500,000 under $2,000,000",30245.0,21in14ar.xls,BV25,74,BV,25 +3461,2021_tab14_socsectot_count_nz_all,2021,tab14,socsectot,count,Social security benefits (total) — number of returns,nz,filers,all,18,"$2,000,000 under $5,000,000",46214.0,21in14ar.xls,BV26,74,BV,26 +3462,2021_tab14_socsectot_count_nz_all,2021,tab14,socsectot,count,Social security benefits (total) — number of returns,nz,filers,all,19,"$5,000,000 under $10,000,000",12510.0,21in14ar.xls,BV27,74,BV,27 +3463,2021_tab14_socsectot_count_nz_all,2021,tab14,socsectot,count,Social security benefits (total) — number of returns,nz,filers,all,20,"$10,000,000 or more",8772.0,21in14ar.xls,BV28,74,BV,28 +3464,2021_tab14_taxbc_amount_nz_all,2021,tab14,taxbc,amount,Income tax before credits,nz,filers,all,1,"All returns, total",2290478645000.0,21in14ar.xls,EI9,139,EI,9 +3465,2021_tab14_taxbc_amount_nz_all,2021,tab14,taxbc,amount,Income tax before credits,nz,filers,all,2,No adjusted gross income,225572000.0,21in14ar.xls,EI10,139,EI,10 +3466,2021_tab14_taxbc_amount_nz_all,2021,tab14,taxbc,amount,Income tax before credits,nz,filers,all,3,"$1 under $5,000",85408000.0,21in14ar.xls,EI11,139,EI,11 +3467,2021_tab14_taxbc_amount_nz_all,2021,tab14,taxbc,amount,Income tax before credits,nz,filers,all,4,"$5,000 under $10,000",95009000.0,21in14ar.xls,EI12,139,EI,12 +3468,2021_tab14_taxbc_amount_nz_all,2021,tab14,taxbc,amount,Income tax before credits,nz,filers,all,5,"$10,000 under $15,000",491367000.0,21in14ar.xls,EI13,139,EI,13 +3469,2021_tab14_taxbc_amount_nz_all,2021,tab14,taxbc,amount,Income tax before credits,nz,filers,all,6,"$15,000 under $20,000",3112114000.0,21in14ar.xls,EI14,139,EI,14 +3470,2021_tab14_taxbc_amount_nz_all,2021,tab14,taxbc,amount,Income tax before credits,nz,filers,all,7,"$20,000 under $25,000",6155804000.0,21in14ar.xls,EI15,139,EI,15 +3471,2021_tab14_taxbc_amount_nz_all,2021,tab14,taxbc,amount,Income tax before credits,nz,filers,all,8,"$25,000 under $30,000",10227467000.0,21in14ar.xls,EI16,139,EI,16 +3472,2021_tab14_taxbc_amount_nz_all,2021,tab14,taxbc,amount,Income tax before credits,nz,filers,all,9,"$30,000 under $40,000",31177700000.0,21in14ar.xls,EI17,139,EI,17 +3473,2021_tab14_taxbc_amount_nz_all,2021,tab14,taxbc,amount,Income tax before credits,nz,filers,all,10,"$40,000 under $50,000",38366413000.0,21in14ar.xls,EI18,139,EI,18 +3474,2021_tab14_taxbc_amount_nz_all,2021,tab14,taxbc,amount,Income tax before credits,nz,filers,all,11,"$50,000 under $75,000",115766605000.0,21in14ar.xls,EI19,139,EI,19 +3475,2021_tab14_taxbc_amount_nz_all,2021,tab14,taxbc,amount,Income tax before credits,nz,filers,all,12,"$75,000 under $100,000",124411058000.0,21in14ar.xls,EI20,139,EI,20 +3476,2021_tab14_taxbc_amount_nz_all,2021,tab14,taxbc,amount,Income tax before credits,nz,filers,all,13,"$100,000 under $200,000",405668074000.0,21in14ar.xls,EI21,139,EI,21 +3477,2021_tab14_taxbc_amount_nz_all,2021,tab14,taxbc,amount,Income tax before credits,nz,filers,all,14,"$200,000 under $500,000",451924178000.0,21in14ar.xls,EI22,139,EI,22 +3478,2021_tab14_taxbc_amount_nz_all,2021,tab14,taxbc,amount,Income tax before credits,nz,filers,all,15,"$500,000 under $1,000,000",250471738000.0,21in14ar.xls,EI23,139,EI,23 +3479,2021_tab14_taxbc_amount_nz_all,2021,tab14,taxbc,amount,Income tax before credits,nz,filers,all,16,"$1,000,000 under $1,500,000",117790037000.0,21in14ar.xls,EI24,139,EI,24 +3480,2021_tab14_taxbc_amount_nz_all,2021,tab14,taxbc,amount,Income tax before credits,nz,filers,all,17,"$1,500,000 under $2,000,000",71950793000.0,21in14ar.xls,EI25,139,EI,25 +3481,2021_tab14_taxbc_amount_nz_all,2021,tab14,taxbc,amount,Income tax before credits,nz,filers,all,18,"$2,000,000 under $5,000,000",189909559000.0,21in14ar.xls,EI26,139,EI,26 +3482,2021_tab14_taxbc_amount_nz_all,2021,tab14,taxbc,amount,Income tax before credits,nz,filers,all,19,"$5,000,000 under $10,000,000",116498227000.0,21in14ar.xls,EI27,139,EI,27 +3483,2021_tab14_taxbc_amount_nz_all,2021,tab14,taxbc,amount,Income tax before credits,nz,filers,all,20,"$10,000,000 or more",356151525000.0,21in14ar.xls,EI28,139,EI,28 +3484,2021_tab14_taxbc_count_nz_all,2021,tab14,taxbc,count,Income tax before credits — number of returns,nz,filers,all,1,"All returns, total",127874599.0,21in14ar.xls,EH9,138,EH,9 +3485,2021_tab14_taxbc_count_nz_all,2021,tab14,taxbc,count,Income tax before credits — number of returns,nz,filers,all,2,No adjusted gross income,29216.0,21in14ar.xls,EH10,138,EH,10 +3486,2021_tab14_taxbc_count_nz_all,2021,tab14,taxbc,count,Income tax before credits — number of returns,nz,filers,all,3,"$1 under $5,000",181180.0,21in14ar.xls,EH11,138,EH,11 +3487,2021_tab14_taxbc_count_nz_all,2021,tab14,taxbc,count,Income tax before credits — number of returns,nz,filers,all,4,"$5,000 under $10,000",230722.0,21in14ar.xls,EH12,138,EH,12 +3488,2021_tab14_taxbc_count_nz_all,2021,tab14,taxbc,count,Income tax before credits — number of returns,nz,filers,all,5,"$10,000 under $15,000",3245394.0,21in14ar.xls,EH13,138,EH,13 +3489,2021_tab14_taxbc_count_nz_all,2021,tab14,taxbc,count,Income tax before credits — number of returns,nz,filers,all,6,"$15,000 under $20,000",7085512.0,21in14ar.xls,EH14,138,EH,14 +3490,2021_tab14_taxbc_count_nz_all,2021,tab14,taxbc,count,Income tax before credits — number of returns,nz,filers,all,7,"$20,000 under $25,000",7525781.0,21in14ar.xls,EH15,138,EH,15 +3491,2021_tab14_taxbc_count_nz_all,2021,tab14,taxbc,count,Income tax before credits — number of returns,nz,filers,all,8,"$25,000 under $30,000",8333779.0,21in14ar.xls,EH16,138,EH,16 +3492,2021_tab14_taxbc_count_nz_all,2021,tab14,taxbc,count,Income tax before credits — number of returns,nz,filers,all,9,"$30,000 under $40,000",15914155.0,21in14ar.xls,EH17,138,EH,17 +3493,2021_tab14_taxbc_count_nz_all,2021,tab14,taxbc,count,Income tax before credits — number of returns,nz,filers,all,10,"$40,000 under $50,000",12678971.0,21in14ar.xls,EH18,138,EH,18 +3494,2021_tab14_taxbc_count_nz_all,2021,tab14,taxbc,count,Income tax before credits — number of returns,nz,filers,all,11,"$50,000 under $75,000",22515023.0,21in14ar.xls,EH19,138,EH,19 +3495,2021_tab14_taxbc_count_nz_all,2021,tab14,taxbc,count,Income tax before credits — number of returns,nz,filers,all,12,"$75,000 under $100,000",14601342.0,21in14ar.xls,EH20,138,EH,20 +3496,2021_tab14_taxbc_count_nz_all,2021,tab14,taxbc,count,Income tax before credits — number of returns,nz,filers,all,13,"$100,000 under $200,000",24006476.0,21in14ar.xls,EH21,138,EH,21 +3497,2021_tab14_taxbc_count_nz_all,2021,tab14,taxbc,count,Income tax before credits — number of returns,nz,filers,all,14,"$200,000 under $500,000",9036803.0,21in14ar.xls,EH22,138,EH,22 +3498,2021_tab14_taxbc_count_nz_all,2021,tab14,taxbc,count,Income tax before credits — number of returns,nz,filers,all,15,"$500,000 under $1,000,000",1615890.0,21in14ar.xls,EH23,138,EH,23 +3499,2021_tab14_taxbc_count_nz_all,2021,tab14,taxbc,count,Income tax before credits — number of returns,nz,filers,all,16,"$1,000,000 under $1,500,000",376494.0,21in14ar.xls,EH24,138,EH,24 +3500,2021_tab14_taxbc_count_nz_all,2021,tab14,taxbc,count,Income tax before credits — number of returns,nz,filers,all,17,"$1,500,000 under $2,000,000",155831.0,21in14ar.xls,EH25,138,EH,25 +3501,2021_tab14_taxbc_count_nz_all,2021,tab14,taxbc,count,Income tax before credits — number of returns,nz,filers,all,18,"$2,000,000 under $5,000,000",233468.0,21in14ar.xls,EH26,138,EH,26 +3502,2021_tab14_taxbc_count_nz_all,2021,tab14,taxbc,count,Income tax before credits — number of returns,nz,filers,all,19,"$5,000,000 under $10,000,000",63288.0,21in14ar.xls,EH27,138,EH,27 +3503,2021_tab14_taxbc_count_nz_all,2021,tab14,taxbc,count,Income tax before credits — number of returns,nz,filers,all,20,"$10,000,000 or more",45273.0,21in14ar.xls,EH28,138,EH,28 +3504,2021_tab14_taxint_amount_nz_all,2021,tab14,taxint,amount,Taxable interest,nz,filers,all,1,"All returns, total",103535203000.0,21in14ar.xls,I9,9,I,9 +3505,2021_tab14_taxint_amount_nz_all,2021,tab14,taxint,amount,Taxable interest,nz,filers,all,2,No adjusted gross income,3480795000.0,21in14ar.xls,I10,9,I,10 +3506,2021_tab14_taxint_amount_nz_all,2021,tab14,taxint,amount,Taxable interest,nz,filers,all,3,"$1 under $5,000",448690000.0,21in14ar.xls,I11,9,I,11 +3507,2021_tab14_taxint_amount_nz_all,2021,tab14,taxint,amount,Taxable interest,nz,filers,all,4,"$5,000 under $10,000",510374000.0,21in14ar.xls,I12,9,I,12 +3508,2021_tab14_taxint_amount_nz_all,2021,tab14,taxint,amount,Taxable interest,nz,filers,all,5,"$10,000 under $15,000",647673000.0,21in14ar.xls,I13,9,I,13 +3509,2021_tab14_taxint_amount_nz_all,2021,tab14,taxint,amount,Taxable interest,nz,filers,all,6,"$15,000 under $20,000",671713000.0,21in14ar.xls,I14,9,I,14 +3510,2021_tab14_taxint_amount_nz_all,2021,tab14,taxint,amount,Taxable interest,nz,filers,all,7,"$20,000 under $25,000",678317000.0,21in14ar.xls,I15,9,I,15 +3511,2021_tab14_taxint_amount_nz_all,2021,tab14,taxint,amount,Taxable interest,nz,filers,all,8,"$25,000 under $30,000",739131000.0,21in14ar.xls,I16,9,I,16 +3512,2021_tab14_taxint_amount_nz_all,2021,tab14,taxint,amount,Taxable interest,nz,filers,all,9,"$30,000 under $40,000",1349938000.0,21in14ar.xls,I17,9,I,17 +3513,2021_tab14_taxint_amount_nz_all,2021,tab14,taxint,amount,Taxable interest,nz,filers,all,10,"$40,000 under $50,000",1523359000.0,21in14ar.xls,I18,9,I,18 +3514,2021_tab14_taxint_amount_nz_all,2021,tab14,taxint,amount,Taxable interest,nz,filers,all,11,"$50,000 under $75,000",4385387000.0,21in14ar.xls,I19,9,I,19 +3515,2021_tab14_taxint_amount_nz_all,2021,tab14,taxint,amount,Taxable interest,nz,filers,all,12,"$75,000 under $100,000",4173567000.0,21in14ar.xls,I20,9,I,20 +3516,2021_tab14_taxint_amount_nz_all,2021,tab14,taxint,amount,Taxable interest,nz,filers,all,13,"$100,000 under $200,000",13402654000.0,21in14ar.xls,I21,9,I,21 +3517,2021_tab14_taxint_amount_nz_all,2021,tab14,taxint,amount,Taxable interest,nz,filers,all,14,"$200,000 under $500,000",14439132000.0,21in14ar.xls,I22,9,I,22 +3518,2021_tab14_taxint_amount_nz_all,2021,tab14,taxint,amount,Taxable interest,nz,filers,all,15,"$500,000 under $1,000,000",8049644000.0,21in14ar.xls,I23,9,I,23 +3519,2021_tab14_taxint_amount_nz_all,2021,tab14,taxint,amount,Taxable interest,nz,filers,all,16,"$1,000,000 under $1,500,000",4459247000.0,21in14ar.xls,I24,9,I,24 +3520,2021_tab14_taxint_amount_nz_all,2021,tab14,taxint,amount,Taxable interest,nz,filers,all,17,"$1,500,000 under $2,000,000",2875469000.0,21in14ar.xls,I25,9,I,25 +3521,2021_tab14_taxint_amount_nz_all,2021,tab14,taxint,amount,Taxable interest,nz,filers,all,18,"$2,000,000 under $5,000,000",9097803000.0,21in14ar.xls,I26,9,I,26 +3522,2021_tab14_taxint_amount_nz_all,2021,tab14,taxint,amount,Taxable interest,nz,filers,all,19,"$5,000,000 under $10,000,000",6177098000.0,21in14ar.xls,I27,9,I,27 +3523,2021_tab14_taxint_amount_nz_all,2021,tab14,taxint,amount,Taxable interest,nz,filers,all,20,"$10,000,000 or more",26425211000.0,21in14ar.xls,I28,9,I,28 +3524,2021_tab14_taxint_count_nz_all,2021,tab14,taxint,count,Taxable interest — number of returns,nz,filers,all,1,"All returns, total",48990485.0,21in14ar.xls,H9,8,H,9 +3525,2021_tab14_taxint_count_nz_all,2021,tab14,taxint,count,Taxable interest — number of returns,nz,filers,all,2,No adjusted gross income,565509.0,21in14ar.xls,H10,8,H,10 +3526,2021_tab14_taxint_count_nz_all,2021,tab14,taxint,count,Taxable interest — number of returns,nz,filers,all,3,"$1 under $5,000",1715167.0,21in14ar.xls,H11,8,H,11 +3527,2021_tab14_taxint_count_nz_all,2021,tab14,taxint,count,Taxable interest — number of returns,nz,filers,all,4,"$5,000 under $10,000",1132747.0,21in14ar.xls,H12,8,H,12 +3528,2021_tab14_taxint_count_nz_all,2021,tab14,taxint,count,Taxable interest — number of returns,nz,filers,all,5,"$10,000 under $15,000",1414387.0,21in14ar.xls,H13,8,H,13 +3529,2021_tab14_taxint_count_nz_all,2021,tab14,taxint,count,Taxable interest — number of returns,nz,filers,all,6,"$15,000 under $20,000",1435178.0,21in14ar.xls,H14,8,H,14 +3530,2021_tab14_taxint_count_nz_all,2021,tab14,taxint,count,Taxable interest — number of returns,nz,filers,all,7,"$20,000 under $25,000",1439606.0,21in14ar.xls,H15,8,H,15 +3531,2021_tab14_taxint_count_nz_all,2021,tab14,taxint,count,Taxable interest — number of returns,nz,filers,all,8,"$25,000 under $30,000",1470320.0,21in14ar.xls,H16,8,H,16 +3532,2021_tab14_taxint_count_nz_all,2021,tab14,taxint,count,Taxable interest — number of returns,nz,filers,all,9,"$30,000 under $40,000",2801612.0,21in14ar.xls,H17,8,H,17 +3533,2021_tab14_taxint_count_nz_all,2021,tab14,taxint,count,Taxable interest — number of returns,nz,filers,all,10,"$40,000 under $50,000",2917116.0,21in14ar.xls,H18,8,H,18 +3534,2021_tab14_taxint_count_nz_all,2021,tab14,taxint,count,Taxable interest — number of returns,nz,filers,all,11,"$50,000 under $75,000",6685822.0,21in14ar.xls,H19,8,H,19 +3535,2021_tab14_taxint_count_nz_all,2021,tab14,taxint,count,Taxable interest — number of returns,nz,filers,all,12,"$75,000 under $100,000",5884358.0,21in14ar.xls,H20,8,H,20 +3536,2021_tab14_taxint_count_nz_all,2021,tab14,taxint,count,Taxable interest — number of returns,nz,filers,all,13,"$100,000 under $200,000",12805970.0,21in14ar.xls,H21,8,H,21 +3537,2021_tab14_taxint_count_nz_all,2021,tab14,taxint,count,Taxable interest — number of returns,nz,filers,all,14,"$200,000 under $500,000",6484175.0,21in14ar.xls,H22,8,H,22 +3538,2021_tab14_taxint_count_nz_all,2021,tab14,taxint,count,Taxable interest — number of returns,nz,filers,all,15,"$500,000 under $1,000,000",1408417.0,21in14ar.xls,H23,8,H,23 +3539,2021_tab14_taxint_count_nz_all,2021,tab14,taxint,count,Taxable interest — number of returns,nz,filers,all,16,"$1,000,000 under $1,500,000",349330.0,21in14ar.xls,H24,8,H,24 +3540,2021_tab14_taxint_count_nz_all,2021,tab14,taxint,count,Taxable interest — number of returns,nz,filers,all,17,"$1,500,000 under $2,000,000",148403.0,21in14ar.xls,H25,8,H,25 +3541,2021_tab14_taxint_count_nz_all,2021,tab14,taxint,count,Taxable interest — number of returns,nz,filers,all,18,"$2,000,000 under $5,000,000",225416.0,21in14ar.xls,H26,8,H,26 +3542,2021_tab14_taxint_count_nz_all,2021,tab14,taxint,count,Taxable interest — number of returns,nz,filers,all,19,"$5,000,000 under $10,000,000",62111.0,21in14ar.xls,H27,8,H,27 +3543,2021_tab14_taxint_count_nz_all,2021,tab14,taxint,count,Taxable interest — number of returns,nz,filers,all,20,"$10,000,000 or more",44841.0,21in14ar.xls,H28,8,H,28 +3544,2021_tab14_unempcomp_amount_nz_all,2021,tab14,unempcomp,amount,Unemployment compensation,nz,filers,all,1,"All returns, total",208872354000.0,21in14ar.xls,BU9,73,BU,9 +3545,2021_tab14_unempcomp_amount_nz_all,2021,tab14,unempcomp,amount,Unemployment compensation,nz,filers,all,2,No adjusted gross income,1731244000.0,21in14ar.xls,BU10,73,BU,10 +3546,2021_tab14_unempcomp_amount_nz_all,2021,tab14,unempcomp,amount,Unemployment compensation,nz,filers,all,3,"$1 under $5,000",1192432000.0,21in14ar.xls,BU11,73,BU,11 +3547,2021_tab14_unempcomp_amount_nz_all,2021,tab14,unempcomp,amount,Unemployment compensation,nz,filers,all,4,"$5,000 under $10,000",3477871000.0,21in14ar.xls,BU12,73,BU,12 +3548,2021_tab14_unempcomp_amount_nz_all,2021,tab14,unempcomp,amount,Unemployment compensation,nz,filers,all,5,"$10,000 under $15,000",11528307000.0,21in14ar.xls,BU13,73,BU,13 +3549,2021_tab14_unempcomp_amount_nz_all,2021,tab14,unempcomp,amount,Unemployment compensation,nz,filers,all,6,"$15,000 under $20,000",24375282000.0,21in14ar.xls,BU14,73,BU,14 +3550,2021_tab14_unempcomp_amount_nz_all,2021,tab14,unempcomp,amount,Unemployment compensation,nz,filers,all,7,"$20,000 under $25,000",23100700000.0,21in14ar.xls,BU15,73,BU,15 +3551,2021_tab14_unempcomp_amount_nz_all,2021,tab14,unempcomp,amount,Unemployment compensation,nz,filers,all,8,"$25,000 under $30,000",20127231000.0,21in14ar.xls,BU16,73,BU,16 +3552,2021_tab14_unempcomp_amount_nz_all,2021,tab14,unempcomp,amount,Unemployment compensation,nz,filers,all,9,"$30,000 under $40,000",29558905000.0,21in14ar.xls,BU17,73,BU,17 +3553,2021_tab14_unempcomp_amount_nz_all,2021,tab14,unempcomp,amount,Unemployment compensation,nz,filers,all,10,"$40,000 under $50,000",18740477000.0,21in14ar.xls,BU18,73,BU,18 +3554,2021_tab14_unempcomp_amount_nz_all,2021,tab14,unempcomp,amount,Unemployment compensation,nz,filers,all,11,"$50,000 under $75,000",28035317000.0,21in14ar.xls,BU19,73,BU,19 +3555,2021_tab14_unempcomp_amount_nz_all,2021,tab14,unempcomp,amount,Unemployment compensation,nz,filers,all,12,"$75,000 under $100,000",17043811000.0,21in14ar.xls,BU20,73,BU,20 +3556,2021_tab14_unempcomp_amount_nz_all,2021,tab14,unempcomp,amount,Unemployment compensation,nz,filers,all,13,"$100,000 under $200,000",23285476000.0,21in14ar.xls,BU21,73,BU,21 +3557,2021_tab14_unempcomp_amount_nz_all,2021,tab14,unempcomp,amount,Unemployment compensation,nz,filers,all,14,"$200,000 under $500,000",5767497000.0,21in14ar.xls,BU22,73,BU,22 +3558,2021_tab14_unempcomp_amount_nz_all,2021,tab14,unempcomp,amount,Unemployment compensation,nz,filers,all,15,"$500,000 under $1,000,000",694202000.0,21in14ar.xls,BU23,73,BU,23 +3559,2021_tab14_unempcomp_amount_nz_all,2021,tab14,unempcomp,amount,Unemployment compensation,nz,filers,all,16,"$1,000,000 under $1,500,000",113470000.0,21in14ar.xls,BU24,73,BU,24 +3560,2021_tab14_unempcomp_amount_nz_all,2021,tab14,unempcomp,amount,Unemployment compensation,nz,filers,all,17,"$1,500,000 under $2,000,000",41432000.0,21in14ar.xls,BU25,73,BU,25 +3561,2021_tab14_unempcomp_amount_nz_all,2021,tab14,unempcomp,amount,Unemployment compensation,nz,filers,all,18,"$2,000,000 under $5,000,000",47162000.0,21in14ar.xls,BU26,73,BU,26 +3562,2021_tab14_unempcomp_amount_nz_all,2021,tab14,unempcomp,amount,Unemployment compensation,nz,filers,all,19,"$5,000,000 under $10,000,000",7800000.0,21in14ar.xls,BU27,73,BU,27 +3563,2021_tab14_unempcomp_amount_nz_all,2021,tab14,unempcomp,amount,Unemployment compensation,nz,filers,all,20,"$10,000,000 or more",3737000.0,21in14ar.xls,BU28,73,BU,28 +3564,2021_tab14_unempcomp_count_nz_all,2021,tab14,unempcomp,count,Unemployment compensation — number of returns,nz,filers,all,1,"All returns, total",15809172.0,21in14ar.xls,BT9,72,BT,9 +3565,2021_tab14_unempcomp_count_nz_all,2021,tab14,unempcomp,count,Unemployment compensation — number of returns,nz,filers,all,2,No adjusted gross income,124275.0,21in14ar.xls,BT10,72,BT,10 +3566,2021_tab14_unempcomp_count_nz_all,2021,tab14,unempcomp,count,Unemployment compensation — number of returns,nz,filers,all,3,"$1 under $5,000",197448.0,21in14ar.xls,BT11,72,BT,11 +3567,2021_tab14_unempcomp_count_nz_all,2021,tab14,unempcomp,count,Unemployment compensation — number of returns,nz,filers,all,4,"$5,000 under $10,000",466107.0,21in14ar.xls,BT12,72,BT,12 +3568,2021_tab14_unempcomp_count_nz_all,2021,tab14,unempcomp,count,Unemployment compensation — number of returns,nz,filers,all,5,"$10,000 under $15,000",1136775.0,21in14ar.xls,BT13,72,BT,13 +3569,2021_tab14_unempcomp_count_nz_all,2021,tab14,unempcomp,count,Unemployment compensation — number of returns,nz,filers,all,6,"$15,000 under $20,000",1878369.0,21in14ar.xls,BT14,72,BT,14 +3570,2021_tab14_unempcomp_count_nz_all,2021,tab14,unempcomp,count,Unemployment compensation — number of returns,nz,filers,all,7,"$20,000 under $25,000",1642065.0,21in14ar.xls,BT15,72,BT,15 +3571,2021_tab14_unempcomp_count_nz_all,2021,tab14,unempcomp,count,Unemployment compensation — number of returns,nz,filers,all,8,"$25,000 under $30,000",1390637.0,21in14ar.xls,BT16,72,BT,16 +3572,2021_tab14_unempcomp_count_nz_all,2021,tab14,unempcomp,count,Unemployment compensation — number of returns,nz,filers,all,9,"$30,000 under $40,000",2022975.0,21in14ar.xls,BT17,72,BT,17 +3573,2021_tab14_unempcomp_count_nz_all,2021,tab14,unempcomp,count,Unemployment compensation — number of returns,nz,filers,all,10,"$40,000 under $50,000",1312942.0,21in14ar.xls,BT18,72,BT,18 +3574,2021_tab14_unempcomp_count_nz_all,2021,tab14,unempcomp,count,Unemployment compensation — number of returns,nz,filers,all,11,"$50,000 under $75,000",2011827.0,21in14ar.xls,BT19,72,BT,19 +3575,2021_tab14_unempcomp_count_nz_all,2021,tab14,unempcomp,count,Unemployment compensation — number of returns,nz,filers,all,12,"$75,000 under $100,000",1289395.0,21in14ar.xls,BT20,72,BT,20 +3576,2021_tab14_unempcomp_count_nz_all,2021,tab14,unempcomp,count,Unemployment compensation — number of returns,nz,filers,all,13,"$100,000 under $200,000",1840565.0,21in14ar.xls,BT21,72,BT,21 +3577,2021_tab14_unempcomp_count_nz_all,2021,tab14,unempcomp,count,Unemployment compensation — number of returns,nz,filers,all,14,"$200,000 under $500,000",433790.0,21in14ar.xls,BT22,72,BT,22 +3578,2021_tab14_unempcomp_count_nz_all,2021,tab14,unempcomp,count,Unemployment compensation — number of returns,nz,filers,all,15,"$500,000 under $1,000,000",47030.0,21in14ar.xls,BT23,72,BT,23 +3579,2021_tab14_unempcomp_count_nz_all,2021,tab14,unempcomp,count,Unemployment compensation — number of returns,nz,filers,all,16,"$1,000,000 under $1,500,000",8021.0,21in14ar.xls,BT24,72,BT,24 +3580,2021_tab14_unempcomp_count_nz_all,2021,tab14,unempcomp,count,Unemployment compensation — number of returns,nz,filers,all,17,"$1,500,000 under $2,000,000",2944.0,21in14ar.xls,BT25,72,BT,25 +3581,2021_tab14_unempcomp_count_nz_all,2021,tab14,unempcomp,count,Unemployment compensation — number of returns,nz,filers,all,18,"$2,000,000 under $5,000,000",3154.0,21in14ar.xls,BT26,72,BT,26 +3582,2021_tab14_unempcomp_count_nz_all,2021,tab14,unempcomp,count,Unemployment compensation — number of returns,nz,filers,all,19,"$5,000,000 under $10,000,000",550.0,21in14ar.xls,BT27,72,BT,27 +3583,2021_tab14_unempcomp_count_nz_all,2021,tab14,unempcomp,count,Unemployment compensation — number of returns,nz,filers,all,20,"$10,000,000 or more",303.0,21in14ar.xls,BT28,72,BT,28 +3584,2021_tab14_wages_amount_nz_all,2021,tab14,wages,amount,Salaries and wages,nz,filers,all,1,"All returns, total",9022352941000.0,21in14ar.xls,G9,7,G,9 +3585,2021_tab14_wages_amount_nz_all,2021,tab14,wages,amount,Salaries and wages,nz,filers,all,2,No adjusted gross income,23670507000.0,21in14ar.xls,G10,7,G,10 +3586,2021_tab14_wages_amount_nz_all,2021,tab14,wages,amount,Salaries and wages,nz,filers,all,3,"$1 under $5,000",20132275000.0,21in14ar.xls,G11,7,G,11 +3587,2021_tab14_wages_amount_nz_all,2021,tab14,wages,amount,Salaries and wages,nz,filers,all,4,"$5,000 under $10,000",48844902000.0,21in14ar.xls,G12,7,G,12 +3588,2021_tab14_wages_amount_nz_all,2021,tab14,wages,amount,Salaries and wages,nz,filers,all,5,"$10,000 under $15,000",83858745000.0,21in14ar.xls,G13,7,G,13 +3589,2021_tab14_wages_amount_nz_all,2021,tab14,wages,amount,Salaries and wages,nz,filers,all,6,"$15,000 under $20,000",112149988000.0,21in14ar.xls,G14,7,G,14 +3590,2021_tab14_wages_amount_nz_all,2021,tab14,wages,amount,Salaries and wages,nz,filers,all,7,"$20,000 under $25,000",140010172000.0,21in14ar.xls,G15,7,G,15 +3591,2021_tab14_wages_amount_nz_all,2021,tab14,wages,amount,Salaries and wages,nz,filers,all,8,"$25,000 under $30,000",181173976000.0,21in14ar.xls,G16,7,G,16 +3592,2021_tab14_wages_amount_nz_all,2021,tab14,wages,amount,Salaries and wages,nz,filers,all,9,"$30,000 under $40,000",445172100000.0,21in14ar.xls,G17,7,G,17 +3593,2021_tab14_wages_amount_nz_all,2021,tab14,wages,amount,Salaries and wages,nz,filers,all,10,"$40,000 under $50,000",456243382000.0,21in14ar.xls,G18,7,G,18 +3594,2021_tab14_wages_amount_nz_all,2021,tab14,wages,amount,Salaries and wages,nz,filers,all,11,"$50,000 under $75,000",1063075172000.0,21in14ar.xls,G19,7,G,19 +3595,2021_tab14_wages_amount_nz_all,2021,tab14,wages,amount,Salaries and wages,nz,filers,all,12,"$75,000 under $100,000",933327679000.0,21in14ar.xls,G20,7,G,20 +3596,2021_tab14_wages_amount_nz_all,2021,tab14,wages,amount,Salaries and wages,nz,filers,all,13,"$100,000 under $200,000",2355845184000.0,21in14ar.xls,G21,7,G,21 +3597,2021_tab14_wages_amount_nz_all,2021,tab14,wages,amount,Salaries and wages,nz,filers,all,14,"$200,000 under $500,000",1713498524000.0,21in14ar.xls,G22,7,G,22 +3598,2021_tab14_wages_amount_nz_all,2021,tab14,wages,amount,Salaries and wages,nz,filers,all,15,"$500,000 under $1,000,000",593531858000.0,21in14ar.xls,G23,7,G,23 +3599,2021_tab14_wages_amount_nz_all,2021,tab14,wages,amount,Salaries and wages,nz,filers,all,16,"$1,000,000 under $1,500,000",202146931000.0,21in14ar.xls,G24,7,G,24 +3600,2021_tab14_wages_amount_nz_all,2021,tab14,wages,amount,Salaries and wages,nz,filers,all,17,"$1,500,000 under $2,000,000",104008030000.0,21in14ar.xls,G25,7,G,25 +3601,2021_tab14_wages_amount_nz_all,2021,tab14,wages,amount,Salaries and wages,nz,filers,all,18,"$2,000,000 under $5,000,000",220575715000.0,21in14ar.xls,G26,7,G,26 +3602,2021_tab14_wages_amount_nz_all,2021,tab14,wages,amount,Salaries and wages,nz,filers,all,19,"$5,000,000 under $10,000,000",108085376000.0,21in14ar.xls,G27,7,G,27 +3603,2021_tab14_wages_amount_nz_all,2021,tab14,wages,amount,Salaries and wages,nz,filers,all,20,"$10,000,000 or more",217002426000.0,21in14ar.xls,G28,7,G,28 +3604,2021_tab14_wages_count_nz_all,2021,tab14,wages,count,Salaries and wages — number of returns,nz,filers,all,1,"All returns, total",126082290.0,21in14ar.xls,F9,6,F,9 +3605,2021_tab14_wages_count_nz_all,2021,tab14,wages,count,Salaries and wages — number of returns,nz,filers,all,2,No adjusted gross income,488212.0,21in14ar.xls,F10,6,F,10 +3606,2021_tab14_wages_count_nz_all,2021,tab14,wages,count,Salaries and wages — number of returns,nz,filers,all,3,"$1 under $5,000",4990145.0,21in14ar.xls,F11,6,F,11 +3607,2021_tab14_wages_count_nz_all,2021,tab14,wages,count,Salaries and wages — number of returns,nz,filers,all,4,"$5,000 under $10,000",6353567.0,21in14ar.xls,F12,6,F,12 +3608,2021_tab14_wages_count_nz_all,2021,tab14,wages,count,Salaries and wages — number of returns,nz,filers,all,5,"$10,000 under $15,000",6943210.0,21in14ar.xls,F13,6,F,13 +3609,2021_tab14_wages_count_nz_all,2021,tab14,wages,count,Salaries and wages — number of returns,nz,filers,all,6,"$15,000 under $20,000",6925718.0,21in14ar.xls,F14,6,F,14 +3610,2021_tab14_wages_count_nz_all,2021,tab14,wages,count,Salaries and wages — number of returns,nz,filers,all,7,"$20,000 under $25,000",6845285.0,21in14ar.xls,F15,6,F,15 +3611,2021_tab14_wages_count_nz_all,2021,tab14,wages,count,Salaries and wages — number of returns,nz,filers,all,8,"$25,000 under $30,000",7155012.0,21in14ar.xls,F16,6,F,16 +3612,2021_tab14_wages_count_nz_all,2021,tab14,wages,count,Salaries and wages — number of returns,nz,filers,all,9,"$30,000 under $40,000",13754153.0,21in14ar.xls,F17,6,F,17 +3613,2021_tab14_wages_count_nz_all,2021,tab14,wages,count,Salaries and wages — number of returns,nz,filers,all,10,"$40,000 under $50,000",10991851.0,21in14ar.xls,F18,6,F,18 +3614,2021_tab14_wages_count_nz_all,2021,tab14,wages,count,Salaries and wages — number of returns,nz,filers,all,11,"$50,000 under $75,000",19109110.0,21in14ar.xls,F19,6,F,19 +3615,2021_tab14_wages_count_nz_all,2021,tab14,wages,count,Salaries and wages — number of returns,nz,filers,all,12,"$75,000 under $100,000",12291548.0,21in14ar.xls,F20,6,F,20 +3616,2021_tab14_wages_count_nz_all,2021,tab14,wages,count,Salaries and wages — number of returns,nz,filers,all,13,"$100,000 under $200,000",20368720.0,21in14ar.xls,F21,6,F,21 +3617,2021_tab14_wages_count_nz_all,2021,tab14,wages,count,Salaries and wages — number of returns,nz,filers,all,14,"$200,000 under $500,000",7776331.0,21in14ar.xls,F22,6,F,22 +3618,2021_tab14_wages_count_nz_all,2021,tab14,wages,count,Salaries and wages — number of returns,nz,filers,all,15,"$500,000 under $1,000,000",1371980.0,21in14ar.xls,F23,6,F,23 +3619,2021_tab14_wages_count_nz_all,2021,tab14,wages,count,Salaries and wages — number of returns,nz,filers,all,16,"$1,000,000 under $1,500,000",314686.0,21in14ar.xls,F24,6,F,24 +3620,2021_tab14_wages_count_nz_all,2021,tab14,wages,count,Salaries and wages — number of returns,nz,filers,all,17,"$1,500,000 under $2,000,000",127464.0,21in14ar.xls,F25,6,F,25 +3621,2021_tab14_wages_count_nz_all,2021,tab14,wages,count,Salaries and wages — number of returns,nz,filers,all,18,"$2,000,000 under $5,000,000",188625.0,21in14ar.xls,F26,6,F,26 +3622,2021_tab14_wages_count_nz_all,2021,tab14,wages,count,Salaries and wages — number of returns,nz,filers,all,19,"$5,000,000 under $10,000,000",50463.0,21in14ar.xls,F27,6,F,27 +3623,2021_tab14_wages_count_nz_all,2021,tab14,wages,count,Salaries and wages — number of returns,nz,filers,all,20,"$10,000,000 or more",36210.0,21in14ar.xls,F28,6,F,28 +3624,2021_tab21_id_count_nz_all,2021,tab21,id,count,Number of returns with itemized deductions,nz,filers,all,1,"All returns, total",14842685.0,21in21id.xls,B10,2,B,10 +3625,2021_tab21_id_count_nz_all,2021,tab21,id,count,Number of returns with itemized deductions,nz,filers,all,2,"Under $5,000",80236.0,21in21id.xls,B11,2,B,11 +3626,2021_tab21_id_count_nz_all,2021,tab21,id,count,Number of returns with itemized deductions,nz,filers,all,3,"$5,000 under $10,000",93583.0,21in21id.xls,B12,2,B,12 +3627,2021_tab21_id_count_nz_all,2021,tab21,id,count,Number of returns with itemized deductions,nz,filers,all,4,"$10,000 under $15,000",109149.0,21in21id.xls,B13,2,B,13 +3628,2021_tab21_id_count_nz_all,2021,tab21,id,count,Number of returns with itemized deductions,nz,filers,all,5,"$15,000 under $20,000",161030.0,21in21id.xls,B14,2,B,14 +3629,2021_tab21_id_count_nz_all,2021,tab21,id,count,Number of returns with itemized deductions,nz,filers,all,6,"$20,000 under $25,000",167731.0,21in21id.xls,B15,2,B,15 +3630,2021_tab21_id_count_nz_all,2021,tab21,id,count,Number of returns with itemized deductions,nz,filers,all,7,"$25,000 under $30,000",193007.0,21in21id.xls,B16,2,B,16 +3631,2021_tab21_id_count_nz_all,2021,tab21,id,count,Number of returns with itemized deductions,nz,filers,all,8,"$30,000 under $35,000",226911.0,21in21id.xls,B17,2,B,17 +3632,2021_tab21_id_count_nz_all,2021,tab21,id,count,Number of returns with itemized deductions,nz,filers,all,9,"$35,000 under $40,000",240304.0,21in21id.xls,B18,2,B,18 +3633,2021_tab21_id_count_nz_all,2021,tab21,id,count,Number of returns with itemized deductions,nz,filers,all,10,"$40,000 under $45,000",294054.0,21in21id.xls,B19,2,B,19 +3634,2021_tab21_id_count_nz_all,2021,tab21,id,count,Number of returns with itemized deductions,nz,filers,all,11,"$45,000 under $50,000",320410.0,21in21id.xls,B20,2,B,20 +3635,2021_tab21_id_count_nz_all,2021,tab21,id,count,Number of returns with itemized deductions,nz,filers,all,12,"$50,000 under $55,000",347058.0,21in21id.xls,B21,2,B,21 +3636,2021_tab21_id_count_nz_all,2021,tab21,id,count,Number of returns with itemized deductions,nz,filers,all,13,"$55,000 under $60,000",353841.0,21in21id.xls,B22,2,B,22 +3637,2021_tab21_id_count_nz_all,2021,tab21,id,count,Number of returns with itemized deductions,nz,filers,all,14,"$60,000 under $75,000",1140465.0,21in21id.xls,B23,2,B,23 +3638,2021_tab21_id_count_nz_all,2021,tab21,id,count,Number of returns with itemized deductions,nz,filers,all,15,"$75,000 under $100,000",1985056.0,21in21id.xls,B24,2,B,24 +3639,2021_tab21_id_count_nz_all,2021,tab21,id,count,Number of returns with itemized deductions,nz,filers,all,16,"$100,000 under $200,000",4513652.0,21in21id.xls,B25,2,B,25 +3640,2021_tab21_id_count_nz_all,2021,tab21,id,count,Number of returns with itemized deductions,nz,filers,all,17,"$200,000 under $500,000",3134769.0,21in21id.xls,B26,2,B,26 +3641,2021_tab21_id_count_nz_all,2021,tab21,id,count,Number of returns with itemized deductions,nz,filers,all,18,"$500,000 under $1,000,000",874181.0,21in21id.xls,B27,2,B,27 +3642,2021_tab21_id_count_nz_all,2021,tab21,id,count,Number of returns with itemized deductions,nz,filers,all,19,"$1,000,000 under $1,500,000",236902.0,21in21id.xls,B28,2,B,28 +3643,2021_tab21_id_count_nz_all,2021,tab21,id,count,Number of returns with itemized deductions,nz,filers,all,20,"$1,500,000 under $2,000,000",107470.0,21in21id.xls,B29,2,B,29 +3644,2021_tab21_id_count_nz_all,2021,tab21,id,count,Number of returns with itemized deductions,nz,filers,all,21,"$2,000,000 under $5,000,000",172234.0,21in21id.xls,B30,2,B,30 +3645,2021_tab21_id_count_nz_all,2021,tab21,id,count,Number of returns with itemized deductions,nz,filers,all,22,"$5,000,000 under $10,000,000",51030.0,21in21id.xls,B31,2,B,31 +3646,2021_tab21_id_count_nz_all,2021,tab21,id,count,Number of returns with itemized deductions,nz,filers,all,23,"$10,000,000 or more",39613.0,21in21id.xls,B32,2,B,32 +3647,2021_tab21_id_contributions_amount_nz_all,2021,tab21,id_contributions,amount,Charitable contributions,nz,filers,all,1,"All returns, total",263250541000.0,21in21id.xls,CX10,102,CX,10 +3648,2021_tab21_id_contributions_amount_nz_all,2021,tab21,id_contributions,amount,Charitable contributions,nz,filers,all,2,"Under $5,000",27412000.0,21in21id.xls,CX11,102,CX,11 +3649,2021_tab21_id_contributions_amount_nz_all,2021,tab21,id_contributions,amount,Charitable contributions,nz,filers,all,3,"$5,000 under $10,000",96560000.0,21in21id.xls,CX12,102,CX,12 +3650,2021_tab21_id_contributions_amount_nz_all,2021,tab21,id_contributions,amount,Charitable contributions,nz,filers,all,4,"$10,000 under $15,000",155840000.0,21in21id.xls,CX13,102,CX,13 +3651,2021_tab21_id_contributions_amount_nz_all,2021,tab21,id_contributions,amount,Charitable contributions,nz,filers,all,5,"$15,000 under $20,000",277664000.0,21in21id.xls,CX14,102,CX,14 +3652,2021_tab21_id_contributions_amount_nz_all,2021,tab21,id_contributions,amount,Charitable contributions,nz,filers,all,6,"$20,000 under $25,000",419994000.0,21in21id.xls,CX15,102,CX,15 +3653,2021_tab21_id_contributions_amount_nz_all,2021,tab21,id_contributions,amount,Charitable contributions,nz,filers,all,7,"$25,000 under $30,000",706756000.0,21in21id.xls,CX16,102,CX,16 +3654,2021_tab21_id_contributions_amount_nz_all,2021,tab21,id_contributions,amount,Charitable contributions,nz,filers,all,8,"$30,000 under $35,000",904472000.0,21in21id.xls,CX17,102,CX,17 +3655,2021_tab21_id_contributions_amount_nz_all,2021,tab21,id_contributions,amount,Charitable contributions,nz,filers,all,9,"$35,000 under $40,000",903908000.0,21in21id.xls,CX18,102,CX,18 +3656,2021_tab21_id_contributions_amount_nz_all,2021,tab21,id_contributions,amount,Charitable contributions,nz,filers,all,10,"$40,000 under $45,000",1110681000.0,21in21id.xls,CX19,102,CX,19 +3657,2021_tab21_id_contributions_amount_nz_all,2021,tab21,id_contributions,amount,Charitable contributions,nz,filers,all,11,"$45,000 under $50,000",1105708000.0,21in21id.xls,CX20,102,CX,20 +3658,2021_tab21_id_contributions_amount_nz_all,2021,tab21,id_contributions,amount,Charitable contributions,nz,filers,all,12,"$50,000 under $55,000",1349600000.0,21in21id.xls,CX21,102,CX,21 +3659,2021_tab21_id_contributions_amount_nz_all,2021,tab21,id_contributions,amount,Charitable contributions,nz,filers,all,13,"$55,000 under $60,000",1438248000.0,21in21id.xls,CX22,102,CX,22 +3660,2021_tab21_id_contributions_amount_nz_all,2021,tab21,id_contributions,amount,Charitable contributions,nz,filers,all,14,"$60,000 under $75,000",4778416000.0,21in21id.xls,CX23,102,CX,23 +3661,2021_tab21_id_contributions_amount_nz_all,2021,tab21,id_contributions,amount,Charitable contributions,nz,filers,all,15,"$75,000 under $100,000",9765308000.0,21in21id.xls,CX24,102,CX,24 +3662,2021_tab21_id_contributions_amount_nz_all,2021,tab21,id_contributions,amount,Charitable contributions,nz,filers,all,16,"$100,000 under $200,000",32601479000.0,21in21id.xls,CX25,102,CX,25 +3663,2021_tab21_id_contributions_amount_nz_all,2021,tab21,id_contributions,amount,Charitable contributions,nz,filers,all,17,"$200,000 under $500,000",36617094000.0,21in21id.xls,CX26,102,CX,26 +3664,2021_tab21_id_contributions_amount_nz_all,2021,tab21,id_contributions,amount,Charitable contributions,nz,filers,all,18,"$500,000 under $1,000,000",20410026000.0,21in21id.xls,CX27,102,CX,27 +3665,2021_tab21_id_contributions_amount_nz_all,2021,tab21,id_contributions,amount,Charitable contributions,nz,filers,all,19,"$1,000,000 under $1,500,000",10362710000.0,21in21id.xls,CX28,102,CX,28 +3666,2021_tab21_id_contributions_amount_nz_all,2021,tab21,id_contributions,amount,Charitable contributions,nz,filers,all,20,"$1,500,000 under $2,000,000",6878704000.0,21in21id.xls,CX29,102,CX,29 +3667,2021_tab21_id_contributions_amount_nz_all,2021,tab21,id_contributions,amount,Charitable contributions,nz,filers,all,21,"$2,000,000 under $5,000,000",20644770000.0,21in21id.xls,CX30,102,CX,30 +3668,2021_tab21_id_contributions_amount_nz_all,2021,tab21,id_contributions,amount,Charitable contributions,nz,filers,all,22,"$5,000,000 under $10,000,000",14896310000.0,21in21id.xls,CX31,102,CX,31 +3669,2021_tab21_id_contributions_amount_nz_all,2021,tab21,id_contributions,amount,Charitable contributions,nz,filers,all,23,"$10,000,000 or more",97798882000.0,21in21id.xls,CX32,102,CX,32 +3670,2021_tab21_id_contributions_count_nz_all,2021,tab21,id_contributions,count,Charitable contributions — number of returns,nz,filers,all,1,"All returns, total",12117590.0,21in21id.xls,CW10,101,CW,10 +3671,2021_tab21_id_contributions_count_nz_all,2021,tab21,id_contributions,count,Charitable contributions — number of returns,nz,filers,all,2,"Under $5,000",36897.0,21in21id.xls,CW11,101,CW,11 +3672,2021_tab21_id_contributions_count_nz_all,2021,tab21,id_contributions,count,Charitable contributions — number of returns,nz,filers,all,3,"$5,000 under $10,000",50340.0,21in21id.xls,CW12,101,CW,12 +3673,2021_tab21_id_contributions_count_nz_all,2021,tab21,id_contributions,count,Charitable contributions — number of returns,nz,filers,all,4,"$10,000 under $15,000",64125.0,21in21id.xls,CW13,101,CW,13 +3674,2021_tab21_id_contributions_count_nz_all,2021,tab21,id_contributions,count,Charitable contributions — number of returns,nz,filers,all,5,"$15,000 under $20,000",97378.0,21in21id.xls,CW14,101,CW,14 +3675,2021_tab21_id_contributions_count_nz_all,2021,tab21,id_contributions,count,Charitable contributions — number of returns,nz,filers,all,6,"$20,000 under $25,000",108446.0,21in21id.xls,CW15,101,CW,15 +3676,2021_tab21_id_contributions_count_nz_all,2021,tab21,id_contributions,count,Charitable contributions — number of returns,nz,filers,all,7,"$25,000 under $30,000",144537.0,21in21id.xls,CW16,101,CW,16 +3677,2021_tab21_id_contributions_count_nz_all,2021,tab21,id_contributions,count,Charitable contributions — number of returns,nz,filers,all,8,"$30,000 under $35,000",174762.0,21in21id.xls,CW17,101,CW,17 +3678,2021_tab21_id_contributions_count_nz_all,2021,tab21,id_contributions,count,Charitable contributions — number of returns,nz,filers,all,9,"$35,000 under $40,000",163203.0,21in21id.xls,CW18,101,CW,18 +3679,2021_tab21_id_contributions_count_nz_all,2021,tab21,id_contributions,count,Charitable contributions — number of returns,nz,filers,all,10,"$40,000 under $45,000",212594.0,21in21id.xls,CW19,101,CW,19 +3680,2021_tab21_id_contributions_count_nz_all,2021,tab21,id_contributions,count,Charitable contributions — number of returns,nz,filers,all,11,"$45,000 under $50,000",232425.0,21in21id.xls,CW20,101,CW,20 +3681,2021_tab21_id_contributions_count_nz_all,2021,tab21,id_contributions,count,Charitable contributions — number of returns,nz,filers,all,12,"$50,000 under $55,000",239594.0,21in21id.xls,CW21,101,CW,21 +3682,2021_tab21_id_contributions_count_nz_all,2021,tab21,id_contributions,count,Charitable contributions — number of returns,nz,filers,all,13,"$55,000 under $60,000",267505.0,21in21id.xls,CW22,101,CW,22 +3683,2021_tab21_id_contributions_count_nz_all,2021,tab21,id_contributions,count,Charitable contributions — number of returns,nz,filers,all,14,"$60,000 under $75,000",876462.0,21in21id.xls,CW23,101,CW,23 +3684,2021_tab21_id_contributions_count_nz_all,2021,tab21,id_contributions,count,Charitable contributions — number of returns,nz,filers,all,15,"$75,000 under $100,000",1533838.0,21in21id.xls,CW24,101,CW,24 +3685,2021_tab21_id_contributions_count_nz_all,2021,tab21,id_contributions,count,Charitable contributions — number of returns,nz,filers,all,16,"$100,000 under $200,000",3779220.0,21in21id.xls,CW25,101,CW,25 +3686,2021_tab21_id_contributions_count_nz_all,2021,tab21,id_contributions,count,Charitable contributions — number of returns,nz,filers,all,17,"$200,000 under $500,000",2772371.0,21in21id.xls,CW26,101,CW,26 +3687,2021_tab21_id_contributions_count_nz_all,2021,tab21,id_contributions,count,Charitable contributions — number of returns,nz,filers,all,18,"$500,000 under $1,000,000",792642.0,21in21id.xls,CW27,101,CW,27 +3688,2021_tab21_id_contributions_count_nz_all,2021,tab21,id_contributions,count,Charitable contributions — number of returns,nz,filers,all,19,"$1,000,000 under $1,500,000",220383.0,21in21id.xls,CW28,101,CW,28 +3689,2021_tab21_id_contributions_count_nz_all,2021,tab21,id_contributions,count,Charitable contributions — number of returns,nz,filers,all,20,"$1,500,000 under $2,000,000",100341.0,21in21id.xls,CW29,101,CW,29 +3690,2021_tab21_id_contributions_count_nz_all,2021,tab21,id_contributions,count,Charitable contributions — number of returns,nz,filers,all,21,"$2,000,000 under $5,000,000",162976.0,21in21id.xls,CW30,101,CW,30 +3691,2021_tab21_id_contributions_count_nz_all,2021,tab21,id_contributions,count,Charitable contributions — number of returns,nz,filers,all,22,"$5,000,000 under $10,000,000",49077.0,21in21id.xls,CW31,101,CW,31 +3692,2021_tab21_id_contributions_count_nz_all,2021,tab21,id_contributions,count,Charitable contributions — number of returns,nz,filers,all,23,"$10,000,000 or more",38473.0,21in21id.xls,CW32,101,CW,32 +3693,2021_tab21_id_gst_amount_nz_all,2021,tab21,id_gst,amount,General sales taxes,nz,filers,all,1,"All returns, total",7642643000.0,21in21id.xls,BX10,76,BX,10 +3694,2021_tab21_id_gst_amount_nz_all,2021,tab21,id_gst,amount,General sales taxes,nz,filers,all,2,"Under $5,000",20064000.0,21in21id.xls,BX11,76,BX,11 +3695,2021_tab21_id_gst_amount_nz_all,2021,tab21,id_gst,amount,General sales taxes,nz,filers,all,3,"$5,000 under $10,000",28935000.0,21in21id.xls,BX12,76,BX,12 +3696,2021_tab21_id_gst_amount_nz_all,2021,tab21,id_gst,amount,General sales taxes,nz,filers,all,4,"$10,000 under $15,000",34004000.0,21in21id.xls,BX13,76,BX,13 +3697,2021_tab21_id_gst_amount_nz_all,2021,tab21,id_gst,amount,General sales taxes,nz,filers,all,5,"$15,000 under $20,000",73684000.0,21in21id.xls,BX14,76,BX,14 +3698,2021_tab21_id_gst_amount_nz_all,2021,tab21,id_gst,amount,General sales taxes,nz,filers,all,6,"$20,000 under $25,000",85770000.0,21in21id.xls,BX15,76,BX,15 +3699,2021_tab21_id_gst_amount_nz_all,2021,tab21,id_gst,amount,General sales taxes,nz,filers,all,7,"$25,000 under $30,000",99703000.0,21in21id.xls,BX16,76,BX,16 +3700,2021_tab21_id_gst_amount_nz_all,2021,tab21,id_gst,amount,General sales taxes,nz,filers,all,8,"$30,000 under $35,000",148397000.0,21in21id.xls,BX17,76,BX,17 +3701,2021_tab21_id_gst_amount_nz_all,2021,tab21,id_gst,amount,General sales taxes,nz,filers,all,9,"$35,000 under $40,000",127765000.0,21in21id.xls,BX18,76,BX,18 +3702,2021_tab21_id_gst_amount_nz_all,2021,tab21,id_gst,amount,General sales taxes,nz,filers,all,10,"$40,000 under $45,000",138996000.0,21in21id.xls,BX19,76,BX,19 +3703,2021_tab21_id_gst_amount_nz_all,2021,tab21,id_gst,amount,General sales taxes,nz,filers,all,11,"$45,000 under $50,000",140861000.0,21in21id.xls,BX20,76,BX,20 +3704,2021_tab21_id_gst_amount_nz_all,2021,tab21,id_gst,amount,General sales taxes,nz,filers,all,12,"$50,000 under $55,000",146664000.0,21in21id.xls,BX21,76,BX,21 +3705,2021_tab21_id_gst_amount_nz_all,2021,tab21,id_gst,amount,General sales taxes,nz,filers,all,13,"$55,000 under $60,000",124418000.0,21in21id.xls,BX22,76,BX,22 +3706,2021_tab21_id_gst_amount_nz_all,2021,tab21,id_gst,amount,General sales taxes,nz,filers,all,14,"$60,000 under $75,000",484758000.0,21in21id.xls,BX23,76,BX,23 +3707,2021_tab21_id_gst_amount_nz_all,2021,tab21,id_gst,amount,General sales taxes,nz,filers,all,15,"$75,000 under $100,000",848993000.0,21in21id.xls,BX24,76,BX,24 +3708,2021_tab21_id_gst_amount_nz_all,2021,tab21,id_gst,amount,General sales taxes,nz,filers,all,16,"$100,000 under $200,000",1957484000.0,21in21id.xls,BX25,76,BX,25 +3709,2021_tab21_id_gst_amount_nz_all,2021,tab21,id_gst,amount,General sales taxes,nz,filers,all,17,"$200,000 under $500,000",1859432000.0,21in21id.xls,BX26,76,BX,26 +3710,2021_tab21_id_gst_amount_nz_all,2021,tab21,id_gst,amount,General sales taxes,nz,filers,all,18,"$500,000 under $1,000,000",629114000.0,21in21id.xls,BX27,76,BX,27 +3711,2021_tab21_id_gst_amount_nz_all,2021,tab21,id_gst,amount,General sales taxes,nz,filers,all,19,"$1,000,000 under $1,500,000",163249000.0,21in21id.xls,BX28,76,BX,28 +3712,2021_tab21_id_gst_amount_nz_all,2021,tab21,id_gst,amount,General sales taxes,nz,filers,all,20,"$1,500,000 under $2,000,000",80089000.0,21in21id.xls,BX29,76,BX,29 +3713,2021_tab21_id_gst_amount_nz_all,2021,tab21,id_gst,amount,General sales taxes,nz,filers,all,21,"$2,000,000 under $5,000,000",138735000.0,21in21id.xls,BX30,76,BX,30 +3714,2021_tab21_id_gst_amount_nz_all,2021,tab21,id_gst,amount,General sales taxes,nz,filers,all,22,"$5,000,000 under $10,000,000",55981000.0,21in21id.xls,BX31,76,BX,31 +3715,2021_tab21_id_gst_amount_nz_all,2021,tab21,id_gst,amount,General sales taxes,nz,filers,all,23,"$10,000,000 or more",255548000.0,21in21id.xls,BX32,76,BX,32 +3716,2021_tab21_id_gst_count_nz_all,2021,tab21,id_gst,count,General sales taxes — number of returns,nz,filers,all,1,"All returns, total",3540640.0,21in21id.xls,BW10,75,BW,10 +3717,2021_tab21_id_gst_count_nz_all,2021,tab21,id_gst,count,General sales taxes — number of returns,nz,filers,all,2,"Under $5,000",42999.0,21in21id.xls,BW11,75,BW,11 +3718,2021_tab21_id_gst_count_nz_all,2021,tab21,id_gst,count,General sales taxes — number of returns,nz,filers,all,3,"$5,000 under $10,000",54451.0,21in21id.xls,BW12,75,BW,12 +3719,2021_tab21_id_gst_count_nz_all,2021,tab21,id_gst,count,General sales taxes — number of returns,nz,filers,all,4,"$10,000 under $15,000",58735.0,21in21id.xls,BW13,75,BW,13 +3720,2021_tab21_id_gst_count_nz_all,2021,tab21,id_gst,count,General sales taxes — number of returns,nz,filers,all,5,"$15,000 under $20,000",85755.0,21in21id.xls,BW14,75,BW,14 +3721,2021_tab21_id_gst_count_nz_all,2021,tab21,id_gst,count,General sales taxes — number of returns,nz,filers,all,6,"$20,000 under $25,000",80697.0,21in21id.xls,BW15,75,BW,15 +3722,2021_tab21_id_gst_count_nz_all,2021,tab21,id_gst,count,General sales taxes — number of returns,nz,filers,all,7,"$25,000 under $30,000",84858.0,21in21id.xls,BW16,75,BW,16 +3723,2021_tab21_id_gst_count_nz_all,2021,tab21,id_gst,count,General sales taxes — number of returns,nz,filers,all,8,"$30,000 under $35,000",87722.0,21in21id.xls,BW17,75,BW,17 +3724,2021_tab21_id_gst_count_nz_all,2021,tab21,id_gst,count,General sales taxes — number of returns,nz,filers,all,9,"$35,000 under $40,000",91605.0,21in21id.xls,BW18,75,BW,18 +3725,2021_tab21_id_gst_count_nz_all,2021,tab21,id_gst,count,General sales taxes — number of returns,nz,filers,all,10,"$40,000 under $45,000",104970.0,21in21id.xls,BW19,75,BW,19 +3726,2021_tab21_id_gst_count_nz_all,2021,tab21,id_gst,count,General sales taxes — number of returns,nz,filers,all,11,"$45,000 under $50,000",96072.0,21in21id.xls,BW20,75,BW,20 +3727,2021_tab21_id_gst_count_nz_all,2021,tab21,id_gst,count,General sales taxes — number of returns,nz,filers,all,12,"$50,000 under $55,000",117197.0,21in21id.xls,BW21,75,BW,21 +3728,2021_tab21_id_gst_count_nz_all,2021,tab21,id_gst,count,General sales taxes — number of returns,nz,filers,all,13,"$55,000 under $60,000",104878.0,21in21id.xls,BW22,75,BW,22 +3729,2021_tab21_id_gst_count_nz_all,2021,tab21,id_gst,count,General sales taxes — number of returns,nz,filers,all,14,"$60,000 under $75,000",282627.0,21in21id.xls,BW23,75,BW,23 +3730,2021_tab21_id_gst_count_nz_all,2021,tab21,id_gst,count,General sales taxes — number of returns,nz,filers,all,15,"$75,000 under $100,000",435436.0,21in21id.xls,BW24,75,BW,24 +3731,2021_tab21_id_gst_count_nz_all,2021,tab21,id_gst,count,General sales taxes — number of returns,nz,filers,all,16,"$100,000 under $200,000",895878.0,21in21id.xls,BW25,75,BW,25 +3732,2021_tab21_id_gst_count_nz_all,2021,tab21,id_gst,count,General sales taxes — number of returns,nz,filers,all,17,"$200,000 under $500,000",617892.0,21in21id.xls,BW26,75,BW,26 +3733,2021_tab21_id_gst_count_nz_all,2021,tab21,id_gst,count,General sales taxes — number of returns,nz,filers,all,18,"$500,000 under $1,000,000",184506.0,21in21id.xls,BW27,75,BW,27 +3734,2021_tab21_id_gst_count_nz_all,2021,tab21,id_gst,count,General sales taxes — number of returns,nz,filers,all,19,"$1,000,000 under $1,500,000",47719.0,21in21id.xls,BW28,75,BW,28 +3735,2021_tab21_id_gst_count_nz_all,2021,tab21,id_gst,count,General sales taxes — number of returns,nz,filers,all,20,"$1,500,000 under $2,000,000",21394.0,21in21id.xls,BW29,75,BW,29 +3736,2021_tab21_id_gst_count_nz_all,2021,tab21,id_gst,count,General sales taxes — number of returns,nz,filers,all,21,"$2,000,000 under $5,000,000",31424.0,21in21id.xls,BW30,75,BW,30 +3737,2021_tab21_id_gst_count_nz_all,2021,tab21,id_gst,count,General sales taxes — number of returns,nz,filers,all,22,"$5,000,000 under $10,000,000",8332.0,21in21id.xls,BW31,75,BW,31 +3738,2021_tab21_id_gst_count_nz_all,2021,tab21,id_gst,count,General sales taxes — number of returns,nz,filers,all,23,"$10,000,000 or more",5492.0,21in21id.xls,BW32,75,BW,32 +3739,2021_tab21_id_intpaid_amount_nz_all,2021,tab21,id_intpaid,amount,Interest paid,nz,filers,all,1,"All returns, total",163273742000.0,21in21id.xls,CH10,86,CH,10 +3740,2021_tab21_id_intpaid_amount_nz_all,2021,tab21,id_intpaid,amount,Interest paid,nz,filers,all,2,"Under $5,000",351878000.0,21in21id.xls,CH11,86,CH,11 +3741,2021_tab21_id_intpaid_amount_nz_all,2021,tab21,id_intpaid,amount,Interest paid,nz,filers,all,3,"$5,000 under $10,000",505199000.0,21in21id.xls,CH12,86,CH,12 +3742,2021_tab21_id_intpaid_amount_nz_all,2021,tab21,id_intpaid,amount,Interest paid,nz,filers,all,4,"$10,000 under $15,000",661032000.0,21in21id.xls,CH13,86,CH,13 +3743,2021_tab21_id_intpaid_amount_nz_all,2021,tab21,id_intpaid,amount,Interest paid,nz,filers,all,5,"$15,000 under $20,000",795523000.0,21in21id.xls,CH14,86,CH,14 +3744,2021_tab21_id_intpaid_amount_nz_all,2021,tab21,id_intpaid,amount,Interest paid,nz,filers,all,6,"$20,000 under $25,000",975865000.0,21in21id.xls,CH15,86,CH,15 +3745,2021_tab21_id_intpaid_amount_nz_all,2021,tab21,id_intpaid,amount,Interest paid,nz,filers,all,7,"$25,000 under $30,000",964858000.0,21in21id.xls,CH16,86,CH,16 +3746,2021_tab21_id_intpaid_amount_nz_all,2021,tab21,id_intpaid,amount,Interest paid,nz,filers,all,8,"$30,000 under $35,000",1300974000.0,21in21id.xls,CH17,86,CH,17 +3747,2021_tab21_id_intpaid_amount_nz_all,2021,tab21,id_intpaid,amount,Interest paid,nz,filers,all,9,"$35,000 under $40,000",1472192000.0,21in21id.xls,CH18,86,CH,18 +3748,2021_tab21_id_intpaid_amount_nz_all,2021,tab21,id_intpaid,amount,Interest paid,nz,filers,all,10,"$40,000 under $45,000",1942763000.0,21in21id.xls,CH19,86,CH,19 +3749,2021_tab21_id_intpaid_amount_nz_all,2021,tab21,id_intpaid,amount,Interest paid,nz,filers,all,11,"$45,000 under $50,000",2040007000.0,21in21id.xls,CH20,86,CH,20 +3750,2021_tab21_id_intpaid_amount_nz_all,2021,tab21,id_intpaid,amount,Interest paid,nz,filers,all,12,"$50,000 under $55,000",2236435000.0,21in21id.xls,CH21,86,CH,21 +3751,2021_tab21_id_intpaid_amount_nz_all,2021,tab21,id_intpaid,amount,Interest paid,nz,filers,all,13,"$55,000 under $60,000",2296099000.0,21in21id.xls,CH22,86,CH,22 +3752,2021_tab21_id_intpaid_amount_nz_all,2021,tab21,id_intpaid,amount,Interest paid,nz,filers,all,14,"$60,000 under $75,000",8299830000.0,21in21id.xls,CH23,86,CH,23 +3753,2021_tab21_id_intpaid_amount_nz_all,2021,tab21,id_intpaid,amount,Interest paid,nz,filers,all,15,"$75,000 under $100,000",16691350000.0,21in21id.xls,CH24,86,CH,24 +3754,2021_tab21_id_intpaid_amount_nz_all,2021,tab21,id_intpaid,amount,Interest paid,nz,filers,all,16,"$100,000 under $200,000",42043244000.0,21in21id.xls,CH25,86,CH,25 +3755,2021_tab21_id_intpaid_amount_nz_all,2021,tab21,id_intpaid,amount,Interest paid,nz,filers,all,17,"$200,000 under $500,000",41669568000.0,21in21id.xls,CH26,86,CH,26 +3756,2021_tab21_id_intpaid_amount_nz_all,2021,tab21,id_intpaid,amount,Interest paid,nz,filers,all,18,"$500,000 under $1,000,000",14990473000.0,21in21id.xls,CH27,86,CH,27 +3757,2021_tab21_id_intpaid_amount_nz_all,2021,tab21,id_intpaid,amount,Interest paid,nz,filers,all,19,"$1,000,000 under $1,500,000",4571747000.0,21in21id.xls,CH28,86,CH,28 +3758,2021_tab21_id_intpaid_amount_nz_all,2021,tab21,id_intpaid,amount,Interest paid,nz,filers,all,20,"$1,500,000 under $2,000,000",2376237000.0,21in21id.xls,CH29,86,CH,29 +3759,2021_tab21_id_intpaid_amount_nz_all,2021,tab21,id_intpaid,amount,Interest paid,nz,filers,all,21,"$2,000,000 under $5,000,000",4793545000.0,21in21id.xls,CH30,86,CH,30 +3760,2021_tab21_id_intpaid_amount_nz_all,2021,tab21,id_intpaid,amount,Interest paid,nz,filers,all,22,"$5,000,000 under $10,000,000",2504179000.0,21in21id.xls,CH31,86,CH,31 +3761,2021_tab21_id_intpaid_amount_nz_all,2021,tab21,id_intpaid,amount,Interest paid,nz,filers,all,23,"$10,000,000 or more",9790742000.0,21in21id.xls,CH32,86,CH,32 +3762,2021_tab21_id_intpaid_count_nz_all,2021,tab21,id_intpaid,count,Interest paid — number of returns,nz,filers,all,1,"All returns, total",11754235.0,21in21id.xls,CG10,85,CG,10 +3763,2021_tab21_id_intpaid_count_nz_all,2021,tab21,id_intpaid,count,Interest paid — number of returns,nz,filers,all,2,"Under $5,000",34775.0,21in21id.xls,CG11,85,CG,11 +3764,2021_tab21_id_intpaid_count_nz_all,2021,tab21,id_intpaid,count,Interest paid — number of returns,nz,filers,all,3,"$5,000 under $10,000",42464.0,21in21id.xls,CG12,85,CG,12 +3765,2021_tab21_id_intpaid_count_nz_all,2021,tab21,id_intpaid,count,Interest paid — number of returns,nz,filers,all,4,"$10,000 under $15,000",58324.0,21in21id.xls,CG13,85,CG,13 +3766,2021_tab21_id_intpaid_count_nz_all,2021,tab21,id_intpaid,count,Interest paid — number of returns,nz,filers,all,5,"$15,000 under $20,000",78442.0,21in21id.xls,CG14,85,CG,14 +3767,2021_tab21_id_intpaid_count_nz_all,2021,tab21,id_intpaid,count,Interest paid — number of returns,nz,filers,all,6,"$20,000 under $25,000",92849.0,21in21id.xls,CG15,85,CG,15 +3768,2021_tab21_id_intpaid_count_nz_all,2021,tab21,id_intpaid,count,Interest paid — number of returns,nz,filers,all,7,"$25,000 under $30,000",97966.0,21in21id.xls,CG16,85,CG,16 +3769,2021_tab21_id_intpaid_count_nz_all,2021,tab21,id_intpaid,count,Interest paid — number of returns,nz,filers,all,8,"$30,000 under $35,000",128477.0,21in21id.xls,CG17,85,CG,17 +3770,2021_tab21_id_intpaid_count_nz_all,2021,tab21,id_intpaid,count,Interest paid — number of returns,nz,filers,all,9,"$35,000 under $40,000",151067.0,21in21id.xls,CG18,85,CG,18 +3771,2021_tab21_id_intpaid_count_nz_all,2021,tab21,id_intpaid,count,Interest paid — number of returns,nz,filers,all,10,"$40,000 under $45,000",178110.0,21in21id.xls,CG19,85,CG,19 +3772,2021_tab21_id_intpaid_count_nz_all,2021,tab21,id_intpaid,count,Interest paid — number of returns,nz,filers,all,11,"$45,000 under $50,000",197093.0,21in21id.xls,CG20,85,CG,20 +3773,2021_tab21_id_intpaid_count_nz_all,2021,tab21,id_intpaid,count,Interest paid — number of returns,nz,filers,all,12,"$50,000 under $55,000",237857.0,21in21id.xls,CG21,85,CG,21 +3774,2021_tab21_id_intpaid_count_nz_all,2021,tab21,id_intpaid,count,Interest paid — number of returns,nz,filers,all,13,"$55,000 under $60,000",240249.0,21in21id.xls,CG22,85,CG,22 +3775,2021_tab21_id_intpaid_count_nz_all,2021,tab21,id_intpaid,count,Interest paid — number of returns,nz,filers,all,14,"$60,000 under $75,000",880459.0,21in21id.xls,CG23,85,CG,23 +3776,2021_tab21_id_intpaid_count_nz_all,2021,tab21,id_intpaid,count,Interest paid — number of returns,nz,filers,all,15,"$75,000 under $100,000",1615876.0,21in21id.xls,CG24,85,CG,24 +3777,2021_tab21_id_intpaid_count_nz_all,2021,tab21,id_intpaid,count,Interest paid — number of returns,nz,filers,all,16,"$100,000 under $200,000",3736970.0,21in21id.xls,CG25,85,CG,25 +3778,2021_tab21_id_intpaid_count_nz_all,2021,tab21,id_intpaid,count,Interest paid — number of returns,nz,filers,all,17,"$200,000 under $500,000",2711961.0,21in21id.xls,CG26,85,CG,26 +3779,2021_tab21_id_intpaid_count_nz_all,2021,tab21,id_intpaid,count,Interest paid — number of returns,nz,filers,all,18,"$500,000 under $1,000,000",761726.0,21in21id.xls,CG27,85,CG,27 +3780,2021_tab21_id_intpaid_count_nz_all,2021,tab21,id_intpaid,count,Interest paid — number of returns,nz,filers,all,19,"$1,000,000 under $1,500,000",202243.0,21in21id.xls,CG28,85,CG,28 +3781,2021_tab21_id_intpaid_count_nz_all,2021,tab21,id_intpaid,count,Interest paid — number of returns,nz,filers,all,20,"$1,500,000 under $2,000,000",89958.0,21in21id.xls,CG29,85,CG,29 +3782,2021_tab21_id_intpaid_count_nz_all,2021,tab21,id_intpaid,count,Interest paid — number of returns,nz,filers,all,21,"$2,000,000 under $5,000,000",141920.0,21in21id.xls,CG30,85,CG,30 +3783,2021_tab21_id_intpaid_count_nz_all,2021,tab21,id_intpaid,count,Interest paid — number of returns,nz,filers,all,22,"$5,000,000 under $10,000,000",42161.0,21in21id.xls,CG31,85,CG,31 +3784,2021_tab21_id_intpaid_count_nz_all,2021,tab21,id_intpaid,count,Interest paid — number of returns,nz,filers,all,23,"$10,000,000 or more",33287.0,21in21id.xls,CG32,85,CG,32 +3785,2021_tab21_id_medical_capped_amount_nz_all,2021,tab21,id_medical_capped,amount,Medical expenses (deductible/capped),nz,filers,all,1,"All returns, total",75886325000.0,21in21id.xls,BJ10,62,BJ,10 +3786,2021_tab21_id_medical_capped_amount_nz_all,2021,tab21,id_medical_capped,amount,Medical expenses (deductible/capped),nz,filers,all,2,"Under $5,000",1182428000.0,21in21id.xls,BJ11,62,BJ,11 +3787,2021_tab21_id_medical_capped_amount_nz_all,2021,tab21,id_medical_capped,amount,Medical expenses (deductible/capped),nz,filers,all,3,"$5,000 under $10,000",1290734000.0,21in21id.xls,BJ12,62,BJ,12 +3788,2021_tab21_id_medical_capped_amount_nz_all,2021,tab21,id_medical_capped,amount,Medical expenses (deductible/capped),nz,filers,all,4,"$10,000 under $15,000",1366812000.0,21in21id.xls,BJ13,62,BJ,13 +3789,2021_tab21_id_medical_capped_amount_nz_all,2021,tab21,id_medical_capped,amount,Medical expenses (deductible/capped),nz,filers,all,5,"$15,000 under $20,000",2885547000.0,21in21id.xls,BJ14,62,BJ,14 +3790,2021_tab21_id_medical_capped_amount_nz_all,2021,tab21,id_medical_capped,amount,Medical expenses (deductible/capped),nz,filers,all,6,"$20,000 under $25,000",2057325000.0,21in21id.xls,BJ15,62,BJ,15 +3791,2021_tab21_id_medical_capped_amount_nz_all,2021,tab21,id_medical_capped,amount,Medical expenses (deductible/capped),nz,filers,all,7,"$25,000 under $30,000",2142120000.0,21in21id.xls,BJ16,62,BJ,16 +3792,2021_tab21_id_medical_capped_amount_nz_all,2021,tab21,id_medical_capped,amount,Medical expenses (deductible/capped),nz,filers,all,8,"$30,000 under $35,000",2492152000.0,21in21id.xls,BJ17,62,BJ,17 +3793,2021_tab21_id_medical_capped_amount_nz_all,2021,tab21,id_medical_capped,amount,Medical expenses (deductible/capped),nz,filers,all,9,"$35,000 under $40,000",2572548000.0,21in21id.xls,BJ18,62,BJ,18 +3794,2021_tab21_id_medical_capped_amount_nz_all,2021,tab21,id_medical_capped,amount,Medical expenses (deductible/capped),nz,filers,all,10,"$40,000 under $45,000",2397784000.0,21in21id.xls,BJ19,62,BJ,19 +3795,2021_tab21_id_medical_capped_amount_nz_all,2021,tab21,id_medical_capped,amount,Medical expenses (deductible/capped),nz,filers,all,11,"$45,000 under $50,000",3270037000.0,21in21id.xls,BJ20,62,BJ,20 +3796,2021_tab21_id_medical_capped_amount_nz_all,2021,tab21,id_medical_capped,amount,Medical expenses (deductible/capped),nz,filers,all,12,"$50,000 under $55,000",3052627000.0,21in21id.xls,BJ21,62,BJ,21 +3797,2021_tab21_id_medical_capped_amount_nz_all,2021,tab21,id_medical_capped,amount,Medical expenses (deductible/capped),nz,filers,all,13,"$55,000 under $60,000",2517256000.0,21in21id.xls,BJ22,62,BJ,22 +3798,2021_tab21_id_medical_capped_amount_nz_all,2021,tab21,id_medical_capped,amount,Medical expenses (deductible/capped),nz,filers,all,14,"$60,000 under $75,000",7867927000.0,21in21id.xls,BJ23,62,BJ,23 +3799,2021_tab21_id_medical_capped_amount_nz_all,2021,tab21,id_medical_capped,amount,Medical expenses (deductible/capped),nz,filers,all,15,"$75,000 under $100,000",11251902000.0,21in21id.xls,BJ24,62,BJ,24 +3800,2021_tab21_id_medical_capped_amount_nz_all,2021,tab21,id_medical_capped,amount,Medical expenses (deductible/capped),nz,filers,all,16,"$100,000 under $200,000",18438486000.0,21in21id.xls,BJ25,62,BJ,25 +3801,2021_tab21_id_medical_capped_amount_nz_all,2021,tab21,id_medical_capped,amount,Medical expenses (deductible/capped),nz,filers,all,17,"$200,000 under $500,000",9442173000.0,21in21id.xls,BJ26,62,BJ,26 +3802,2021_tab21_id_medical_capped_amount_nz_all,2021,tab21,id_medical_capped,amount,Medical expenses (deductible/capped),nz,filers,all,18,"$500,000 under $1,000,000",1198745000.0,21in21id.xls,BJ27,62,BJ,27 +3803,2021_tab21_id_medical_capped_amount_nz_all,2021,tab21,id_medical_capped,amount,Medical expenses (deductible/capped),nz,filers,all,19,"$1,000,000 under $1,500,000",263035000.0,21in21id.xls,BJ28,62,BJ,28 +3804,2021_tab21_id_medical_capped_amount_nz_all,2021,tab21,id_medical_capped,amount,Medical expenses (deductible/capped),nz,filers,all,20,"$1,500,000 under $2,000,000",72898000.0,21in21id.xls,BJ29,62,BJ,29 +3805,2021_tab21_id_medical_capped_amount_nz_all,2021,tab21,id_medical_capped,amount,Medical expenses (deductible/capped),nz,filers,all,21,"$2,000,000 under $5,000,000",114862000.0,21in21id.xls,BJ30,62,BJ,30 +3806,2021_tab21_id_medical_capped_amount_nz_all,2021,tab21,id_medical_capped,amount,Medical expenses (deductible/capped),nz,filers,all,22,"$5,000,000 under $10,000,000",8927000.0,21in21id.xls,BJ31,62,BJ,31 +3807,2021_tab21_id_medical_capped_amount_nz_all,2021,tab21,id_medical_capped,amount,Medical expenses (deductible/capped),nz,filers,all,23,"$10,000,000 or more",0.0,21in21id.xls,BJ32,62,BJ,32 +3808,2021_tab21_id_medical_capped_count_nz_all,2021,tab21,id_medical_capped,count,Medical expenses (deductible/capped) — number of returns,nz,filers,all,1,"All returns, total",3693434.0,21in21id.xls,BI10,61,BI,10 +3809,2021_tab21_id_medical_capped_count_nz_all,2021,tab21,id_medical_capped,count,Medical expenses (deductible/capped) — number of returns,nz,filers,all,2,"Under $5,000",64071.0,21in21id.xls,BI11,61,BI,11 +3810,2021_tab21_id_medical_capped_count_nz_all,2021,tab21,id_medical_capped,count,Medical expenses (deductible/capped) — number of returns,nz,filers,all,3,"$5,000 under $10,000",67090.0,21in21id.xls,BI12,61,BI,12 +3811,2021_tab21_id_medical_capped_count_nz_all,2021,tab21,id_medical_capped,count,Medical expenses (deductible/capped) — number of returns,nz,filers,all,4,"$10,000 under $15,000",74656.0,21in21id.xls,BI13,61,BI,13 +3812,2021_tab21_id_medical_capped_count_nz_all,2021,tab21,id_medical_capped,count,Medical expenses (deductible/capped) — number of returns,nz,filers,all,5,"$15,000 under $20,000",126081.0,21in21id.xls,BI14,61,BI,14 +3813,2021_tab21_id_medical_capped_count_nz_all,2021,tab21,id_medical_capped,count,Medical expenses (deductible/capped) — number of returns,nz,filers,all,6,"$20,000 under $25,000",120657.0,21in21id.xls,BI15,61,BI,15 +3814,2021_tab21_id_medical_capped_count_nz_all,2021,tab21,id_medical_capped,count,Medical expenses (deductible/capped) — number of returns,nz,filers,all,7,"$25,000 under $30,000",128192.0,21in21id.xls,BI16,61,BI,16 +3815,2021_tab21_id_medical_capped_count_nz_all,2021,tab21,id_medical_capped,count,Medical expenses (deductible/capped) — number of returns,nz,filers,all,8,"$30,000 under $35,000",135437.0,21in21id.xls,BI17,61,BI,17 +3816,2021_tab21_id_medical_capped_count_nz_all,2021,tab21,id_medical_capped,count,Medical expenses (deductible/capped) — number of returns,nz,filers,all,9,"$35,000 under $40,000",133583.0,21in21id.xls,BI18,61,BI,18 +3817,2021_tab21_id_medical_capped_count_nz_all,2021,tab21,id_medical_capped,count,Medical expenses (deductible/capped) — number of returns,nz,filers,all,10,"$40,000 under $45,000",148065.0,21in21id.xls,BI19,61,BI,19 +3818,2021_tab21_id_medical_capped_count_nz_all,2021,tab21,id_medical_capped,count,Medical expenses (deductible/capped) — number of returns,nz,filers,all,11,"$45,000 under $50,000",169056.0,21in21id.xls,BI20,61,BI,20 +3819,2021_tab21_id_medical_capped_count_nz_all,2021,tab21,id_medical_capped,count,Medical expenses (deductible/capped) — number of returns,nz,filers,all,12,"$50,000 under $55,000",163599.0,21in21id.xls,BI21,61,BI,21 +3820,2021_tab21_id_medical_capped_count_nz_all,2021,tab21,id_medical_capped,count,Medical expenses (deductible/capped) — number of returns,nz,filers,all,13,"$55,000 under $60,000",152888.0,21in21id.xls,BI22,61,BI,22 +3821,2021_tab21_id_medical_capped_count_nz_all,2021,tab21,id_medical_capped,count,Medical expenses (deductible/capped) — number of returns,nz,filers,all,14,"$60,000 under $75,000",416631.0,21in21id.xls,BI23,61,BI,23 +3822,2021_tab21_id_medical_capped_count_nz_all,2021,tab21,id_medical_capped,count,Medical expenses (deductible/capped) — number of returns,nz,filers,all,15,"$75,000 under $100,000",568901.0,21in21id.xls,BI24,61,BI,24 +3823,2021_tab21_id_medical_capped_count_nz_all,2021,tab21,id_medical_capped,count,Medical expenses (deductible/capped) — number of returns,nz,filers,all,16,"$100,000 under $200,000",930719.0,21in21id.xls,BI25,61,BI,25 +3824,2021_tab21_id_medical_capped_count_nz_all,2021,tab21,id_medical_capped,count,Medical expenses (deductible/capped) — number of returns,nz,filers,all,17,"$200,000 under $500,000",274102.0,21in21id.xls,BI26,61,BI,26 +3825,2021_tab21_id_medical_capped_count_nz_all,2021,tab21,id_medical_capped,count,Medical expenses (deductible/capped) — number of returns,nz,filers,all,18,"$500,000 under $1,000,000",16117.0,21in21id.xls,BI27,61,BI,27 +3826,2021_tab21_id_medical_capped_count_nz_all,2021,tab21,id_medical_capped,count,Medical expenses (deductible/capped) — number of returns,nz,filers,all,19,"$1,000,000 under $1,500,000",2294.0,21in21id.xls,BI28,61,BI,28 +3827,2021_tab21_id_medical_capped_count_nz_all,2021,tab21,id_medical_capped,count,Medical expenses (deductible/capped) — number of returns,nz,filers,all,20,"$1,500,000 under $2,000,000",567.0,21in21id.xls,BI29,61,BI,29 +3828,2021_tab21_id_medical_capped_count_nz_all,2021,tab21,id_medical_capped,count,Medical expenses (deductible/capped) — number of returns,nz,filers,all,21,"$2,000,000 under $5,000,000",700.0,21in21id.xls,BI30,61,BI,30 +3829,2021_tab21_id_medical_capped_count_nz_all,2021,tab21,id_medical_capped,count,Medical expenses (deductible/capped) — number of returns,nz,filers,all,22,"$5,000,000 under $10,000,000",27.0,21in21id.xls,BI31,61,BI,31 +3830,2021_tab21_id_medical_capped_count_nz_all,2021,tab21,id_medical_capped,count,Medical expenses (deductible/capped) — number of returns,nz,filers,all,23,"$10,000,000 or more",0.0,21in21id.xls,BI32,61,BI,32 +3831,2021_tab21_id_medical_uncapped_amount_nz_all,2021,tab21,id_medical_uncapped,amount,Medical expenses (total/uncapped),nz,filers,all,1,"All returns, total",101860682000.0,21in21id.xls,BL10,64,BL,10 +3832,2021_tab21_id_medical_uncapped_amount_nz_all,2021,tab21,id_medical_uncapped,amount,Medical expenses (total/uncapped),nz,filers,all,2,"Under $5,000",1191945000.0,21in21id.xls,BL11,64,BL,11 +3833,2021_tab21_id_medical_uncapped_amount_nz_all,2021,tab21,id_medical_uncapped,amount,Medical expenses (total/uncapped),nz,filers,all,3,"$5,000 under $10,000",1328511000.0,21in21id.xls,BL12,64,BL,12 +3834,2021_tab21_id_medical_uncapped_amount_nz_all,2021,tab21,id_medical_uncapped,amount,Medical expenses (total/uncapped),nz,filers,all,4,"$10,000 under $15,000",1436712000.0,21in21id.xls,BL13,64,BL,13 +3835,2021_tab21_id_medical_uncapped_amount_nz_all,2021,tab21,id_medical_uncapped,amount,Medical expenses (total/uncapped),nz,filers,all,5,"$15,000 under $20,000",3049836000.0,21in21id.xls,BL14,64,BL,14 +3836,2021_tab21_id_medical_uncapped_amount_nz_all,2021,tab21,id_medical_uncapped,amount,Medical expenses (total/uncapped),nz,filers,all,6,"$20,000 under $25,000",2262637000.0,21in21id.xls,BL15,64,BL,15 +3837,2021_tab21_id_medical_uncapped_amount_nz_all,2021,tab21,id_medical_uncapped,amount,Medical expenses (total/uncapped),nz,filers,all,7,"$25,000 under $30,000",2408161000.0,21in21id.xls,BL16,64,BL,16 +3838,2021_tab21_id_medical_uncapped_amount_nz_all,2021,tab21,id_medical_uncapped,amount,Medical expenses (total/uncapped),nz,filers,all,8,"$30,000 under $35,000",2824184000.0,21in21id.xls,BL17,64,BL,17 +3839,2021_tab21_id_medical_uncapped_amount_nz_all,2021,tab21,id_medical_uncapped,amount,Medical expenses (total/uncapped),nz,filers,all,9,"$35,000 under $40,000",2949560000.0,21in21id.xls,BL18,64,BL,18 +3840,2021_tab21_id_medical_uncapped_amount_nz_all,2021,tab21,id_medical_uncapped,amount,Medical expenses (total/uncapped),nz,filers,all,10,"$40,000 under $45,000",2869363000.0,21in21id.xls,BL19,64,BL,19 +3841,2021_tab21_id_medical_uncapped_amount_nz_all,2021,tab21,id_medical_uncapped,amount,Medical expenses (total/uncapped),nz,filers,all,11,"$45,000 under $50,000",3869434000.0,21in21id.xls,BL20,64,BL,20 +3842,2021_tab21_id_medical_uncapped_amount_nz_all,2021,tab21,id_medical_uncapped,amount,Medical expenses (total/uncapped),nz,filers,all,12,"$50,000 under $55,000",3696666000.0,21in21id.xls,BL21,64,BL,21 +3843,2021_tab21_id_medical_uncapped_amount_nz_all,2021,tab21,id_medical_uncapped,amount,Medical expenses (total/uncapped),nz,filers,all,13,"$55,000 under $60,000",3175555000.0,21in21id.xls,BL22,64,BL,22 +3844,2021_tab21_id_medical_uncapped_amount_nz_all,2021,tab21,id_medical_uncapped,amount,Medical expenses (total/uncapped),nz,filers,all,14,"$60,000 under $75,000",9961801000.0,21in21id.xls,BL23,64,BL,23 +3845,2021_tab21_id_medical_uncapped_amount_nz_all,2021,tab21,id_medical_uncapped,amount,Medical expenses (total/uncapped),nz,filers,all,15,"$75,000 under $100,000",14967597000.0,21in21id.xls,BL24,64,BL,24 +3846,2021_tab21_id_medical_uncapped_amount_nz_all,2021,tab21,id_medical_uncapped,amount,Medical expenses (total/uncapped),nz,filers,all,16,"$100,000 under $200,000",27979072000.0,21in21id.xls,BL25,64,BL,25 +3847,2021_tab21_id_medical_uncapped_amount_nz_all,2021,tab21,id_medical_uncapped,amount,Medical expenses (total/uncapped),nz,filers,all,17,"$200,000 under $500,000",15009041000.0,21in21id.xls,BL26,64,BL,26 +3848,2021_tab21_id_medical_uncapped_amount_nz_all,2021,tab21,id_medical_uncapped,amount,Medical expenses (total/uncapped),nz,filers,all,18,"$500,000 under $1,000,000",1982643000.0,21in21id.xls,BL27,64,BL,27 +3849,2021_tab21_id_medical_uncapped_amount_nz_all,2021,tab21,id_medical_uncapped,amount,Medical expenses (total/uncapped),nz,filers,all,19,"$1,000,000 under $1,500,000",462885000.0,21in21id.xls,BL28,64,BL,28 +3850,2021_tab21_id_medical_uncapped_amount_nz_all,2021,tab21,id_medical_uncapped,amount,Medical expenses (total/uncapped),nz,filers,all,20,"$1,500,000 under $2,000,000",146817000.0,21in21id.xls,BL29,64,BL,29 +3851,2021_tab21_id_medical_uncapped_amount_nz_all,2021,tab21,id_medical_uncapped,amount,Medical expenses (total/uncapped),nz,filers,all,21,"$2,000,000 under $5,000,000",264656000.0,21in21id.xls,BL30,64,BL,30 +3852,2021_tab21_id_medical_uncapped_amount_nz_all,2021,tab21,id_medical_uncapped,amount,Medical expenses (total/uncapped),nz,filers,all,22,"$5,000,000 under $10,000,000",23606000.0,21in21id.xls,BL31,64,BL,31 +3853,2021_tab21_id_medical_uncapped_amount_nz_all,2021,tab21,id_medical_uncapped,amount,Medical expenses (total/uncapped),nz,filers,all,23,"$10,000,000 or more",0.0,21in21id.xls,BL32,64,BL,32 +3854,2021_tab21_id_medical_uncapped_count_nz_all,2021,tab21,id_medical_uncapped,count,Medical expenses (total/uncapped) — number of returns,nz,filers,all,1,"All returns, total",3693434.0,21in21id.xls,BK10,63,BK,10 +3855,2021_tab21_id_medical_uncapped_count_nz_all,2021,tab21,id_medical_uncapped,count,Medical expenses (total/uncapped) — number of returns,nz,filers,all,2,"Under $5,000",64071.0,21in21id.xls,BK11,63,BK,11 +3856,2021_tab21_id_medical_uncapped_count_nz_all,2021,tab21,id_medical_uncapped,count,Medical expenses (total/uncapped) — number of returns,nz,filers,all,3,"$5,000 under $10,000",67090.0,21in21id.xls,BK12,63,BK,12 +3857,2021_tab21_id_medical_uncapped_count_nz_all,2021,tab21,id_medical_uncapped,count,Medical expenses (total/uncapped) — number of returns,nz,filers,all,4,"$10,000 under $15,000",74656.0,21in21id.xls,BK13,63,BK,13 +3858,2021_tab21_id_medical_uncapped_count_nz_all,2021,tab21,id_medical_uncapped,count,Medical expenses (total/uncapped) — number of returns,nz,filers,all,5,"$15,000 under $20,000",126081.0,21in21id.xls,BK14,63,BK,14 +3859,2021_tab21_id_medical_uncapped_count_nz_all,2021,tab21,id_medical_uncapped,count,Medical expenses (total/uncapped) — number of returns,nz,filers,all,6,"$20,000 under $25,000",120657.0,21in21id.xls,BK15,63,BK,15 +3860,2021_tab21_id_medical_uncapped_count_nz_all,2021,tab21,id_medical_uncapped,count,Medical expenses (total/uncapped) — number of returns,nz,filers,all,7,"$25,000 under $30,000",128192.0,21in21id.xls,BK16,63,BK,16 +3861,2021_tab21_id_medical_uncapped_count_nz_all,2021,tab21,id_medical_uncapped,count,Medical expenses (total/uncapped) — number of returns,nz,filers,all,8,"$30,000 under $35,000",135437.0,21in21id.xls,BK17,63,BK,17 +3862,2021_tab21_id_medical_uncapped_count_nz_all,2021,tab21,id_medical_uncapped,count,Medical expenses (total/uncapped) — number of returns,nz,filers,all,9,"$35,000 under $40,000",133583.0,21in21id.xls,BK18,63,BK,18 +3863,2021_tab21_id_medical_uncapped_count_nz_all,2021,tab21,id_medical_uncapped,count,Medical expenses (total/uncapped) — number of returns,nz,filers,all,10,"$40,000 under $45,000",148065.0,21in21id.xls,BK19,63,BK,19 +3864,2021_tab21_id_medical_uncapped_count_nz_all,2021,tab21,id_medical_uncapped,count,Medical expenses (total/uncapped) — number of returns,nz,filers,all,11,"$45,000 under $50,000",169056.0,21in21id.xls,BK20,63,BK,20 +3865,2021_tab21_id_medical_uncapped_count_nz_all,2021,tab21,id_medical_uncapped,count,Medical expenses (total/uncapped) — number of returns,nz,filers,all,12,"$50,000 under $55,000",163599.0,21in21id.xls,BK21,63,BK,21 +3866,2021_tab21_id_medical_uncapped_count_nz_all,2021,tab21,id_medical_uncapped,count,Medical expenses (total/uncapped) — number of returns,nz,filers,all,13,"$55,000 under $60,000",152888.0,21in21id.xls,BK22,63,BK,22 +3867,2021_tab21_id_medical_uncapped_count_nz_all,2021,tab21,id_medical_uncapped,count,Medical expenses (total/uncapped) — number of returns,nz,filers,all,14,"$60,000 under $75,000",416631.0,21in21id.xls,BK23,63,BK,23 +3868,2021_tab21_id_medical_uncapped_count_nz_all,2021,tab21,id_medical_uncapped,count,Medical expenses (total/uncapped) — number of returns,nz,filers,all,15,"$75,000 under $100,000",568901.0,21in21id.xls,BK24,63,BK,24 +3869,2021_tab21_id_medical_uncapped_count_nz_all,2021,tab21,id_medical_uncapped,count,Medical expenses (total/uncapped) — number of returns,nz,filers,all,16,"$100,000 under $200,000",930719.0,21in21id.xls,BK25,63,BK,25 +3870,2021_tab21_id_medical_uncapped_count_nz_all,2021,tab21,id_medical_uncapped,count,Medical expenses (total/uncapped) — number of returns,nz,filers,all,17,"$200,000 under $500,000",274102.0,21in21id.xls,BK26,63,BK,26 +3871,2021_tab21_id_medical_uncapped_count_nz_all,2021,tab21,id_medical_uncapped,count,Medical expenses (total/uncapped) — number of returns,nz,filers,all,18,"$500,000 under $1,000,000",16117.0,21in21id.xls,BK27,63,BK,27 +3872,2021_tab21_id_medical_uncapped_count_nz_all,2021,tab21,id_medical_uncapped,count,Medical expenses (total/uncapped) — number of returns,nz,filers,all,19,"$1,000,000 under $1,500,000",2294.0,21in21id.xls,BK28,63,BK,28 +3873,2021_tab21_id_medical_uncapped_count_nz_all,2021,tab21,id_medical_uncapped,count,Medical expenses (total/uncapped) — number of returns,nz,filers,all,20,"$1,500,000 under $2,000,000",567.0,21in21id.xls,BK29,63,BK,29 +3874,2021_tab21_id_medical_uncapped_count_nz_all,2021,tab21,id_medical_uncapped,count,Medical expenses (total/uncapped) — number of returns,nz,filers,all,21,"$2,000,000 under $5,000,000",700.0,21in21id.xls,BK30,63,BK,30 +3875,2021_tab21_id_medical_uncapped_count_nz_all,2021,tab21,id_medical_uncapped,count,Medical expenses (total/uncapped) — number of returns,nz,filers,all,22,"$5,000,000 under $10,000,000",27.0,21in21id.xls,BK31,63,BK,31 +3876,2021_tab21_id_medical_uncapped_count_nz_all,2021,tab21,id_medical_uncapped,count,Medical expenses (total/uncapped) — number of returns,nz,filers,all,23,"$10,000,000 or more",0.0,21in21id.xls,BK32,63,BK,32 +3877,2021_tab21_id_mortgage_amount_nz_all,2021,tab21,id_mortgage,amount,Home mortgage interest,nz,filers,all,1,"All returns, total",143469233000.0,21in21id.xls,CJ10,88,CJ,10 +3878,2021_tab21_id_mortgage_amount_nz_all,2021,tab21,id_mortgage,amount,Home mortgage interest,nz,filers,all,2,"Under $5,000",349116000.0,21in21id.xls,CJ11,88,CJ,11 +3879,2021_tab21_id_mortgage_amount_nz_all,2021,tab21,id_mortgage,amount,Home mortgage interest,nz,filers,all,3,"$5,000 under $10,000",504725000.0,21in21id.xls,CJ12,88,CJ,12 +3880,2021_tab21_id_mortgage_amount_nz_all,2021,tab21,id_mortgage,amount,Home mortgage interest,nz,filers,all,4,"$10,000 under $15,000",654059000.0,21in21id.xls,CJ13,88,CJ,13 +3881,2021_tab21_id_mortgage_amount_nz_all,2021,tab21,id_mortgage,amount,Home mortgage interest,nz,filers,all,5,"$15,000 under $20,000",793827000.0,21in21id.xls,CJ14,88,CJ,14 +3882,2021_tab21_id_mortgage_amount_nz_all,2021,tab21,id_mortgage,amount,Home mortgage interest,nz,filers,all,6,"$20,000 under $25,000",966376000.0,21in21id.xls,CJ15,88,CJ,15 +3883,2021_tab21_id_mortgage_amount_nz_all,2021,tab21,id_mortgage,amount,Home mortgage interest,nz,filers,all,7,"$25,000 under $30,000",958030000.0,21in21id.xls,CJ16,88,CJ,16 +3884,2021_tab21_id_mortgage_amount_nz_all,2021,tab21,id_mortgage,amount,Home mortgage interest,nz,filers,all,8,"$30,000 under $35,000",1296531000.0,21in21id.xls,CJ17,88,CJ,17 +3885,2021_tab21_id_mortgage_amount_nz_all,2021,tab21,id_mortgage,amount,Home mortgage interest,nz,filers,all,9,"$35,000 under $40,000",1465880000.0,21in21id.xls,CJ18,88,CJ,18 +3886,2021_tab21_id_mortgage_amount_nz_all,2021,tab21,id_mortgage,amount,Home mortgage interest,nz,filers,all,10,"$40,000 under $45,000",1933451000.0,21in21id.xls,CJ19,88,CJ,19 +3887,2021_tab21_id_mortgage_amount_nz_all,2021,tab21,id_mortgage,amount,Home mortgage interest,nz,filers,all,11,"$45,000 under $50,000",2030291000.0,21in21id.xls,CJ20,88,CJ,20 +3888,2021_tab21_id_mortgage_amount_nz_all,2021,tab21,id_mortgage,amount,Home mortgage interest,nz,filers,all,12,"$50,000 under $55,000",2224423000.0,21in21id.xls,CJ21,88,CJ,21 +3889,2021_tab21_id_mortgage_amount_nz_all,2021,tab21,id_mortgage,amount,Home mortgage interest,nz,filers,all,13,"$55,000 under $60,000",2286536000.0,21in21id.xls,CJ22,88,CJ,22 +3890,2021_tab21_id_mortgage_amount_nz_all,2021,tab21,id_mortgage,amount,Home mortgage interest,nz,filers,all,14,"$60,000 under $75,000",8263595000.0,21in21id.xls,CJ23,88,CJ,23 +3891,2021_tab21_id_mortgage_amount_nz_all,2021,tab21,id_mortgage,amount,Home mortgage interest,nz,filers,all,15,"$75,000 under $100,000",16552940000.0,21in21id.xls,CJ24,88,CJ,24 +3892,2021_tab21_id_mortgage_amount_nz_all,2021,tab21,id_mortgage,amount,Home mortgage interest,nz,filers,all,16,"$100,000 under $200,000",41472589000.0,21in21id.xls,CJ25,88,CJ,25 +3893,2021_tab21_id_mortgage_amount_nz_all,2021,tab21,id_mortgage,amount,Home mortgage interest,nz,filers,all,17,"$200,000 under $500,000",40001465000.0,21in21id.xls,CJ26,88,CJ,26 +3894,2021_tab21_id_mortgage_amount_nz_all,2021,tab21,id_mortgage,amount,Home mortgage interest,nz,filers,all,18,"$500,000 under $1,000,000",13291073000.0,21in21id.xls,CJ27,88,CJ,27 +3895,2021_tab21_id_mortgage_amount_nz_all,2021,tab21,id_mortgage,amount,Home mortgage interest,nz,filers,all,19,"$1,000,000 under $1,500,000",3564332000.0,21in21id.xls,CJ28,88,CJ,28 +3896,2021_tab21_id_mortgage_amount_nz_all,2021,tab21,id_mortgage,amount,Home mortgage interest,nz,filers,all,20,"$1,500,000 under $2,000,000",1547029000.0,21in21id.xls,CJ29,88,CJ,29 +3897,2021_tab21_id_mortgage_amount_nz_all,2021,tab21,id_mortgage,amount,Home mortgage interest,nz,filers,all,21,"$2,000,000 under $5,000,000",2275375000.0,21in21id.xls,CJ30,88,CJ,30 +3898,2021_tab21_id_mortgage_amount_nz_all,2021,tab21,id_mortgage,amount,Home mortgage interest,nz,filers,all,22,"$5,000,000 under $10,000,000",623376000.0,21in21id.xls,CJ31,88,CJ,31 +3899,2021_tab21_id_mortgage_amount_nz_all,2021,tab21,id_mortgage,amount,Home mortgage interest,nz,filers,all,23,"$10,000,000 or more",414211000.0,21in21id.xls,CJ32,88,CJ,32 +3900,2021_tab21_id_mortgage_count_nz_all,2021,tab21,id_mortgage,count,Home mortgage interest — number of returns,nz,filers,all,1,"All returns, total",11538228.0,21in21id.xls,CI10,87,CI,10 +3901,2021_tab21_id_mortgage_count_nz_all,2021,tab21,id_mortgage,count,Home mortgage interest — number of returns,nz,filers,all,2,"Under $5,000",33207.0,21in21id.xls,CI11,87,CI,11 +3902,2021_tab21_id_mortgage_count_nz_all,2021,tab21,id_mortgage,count,Home mortgage interest — number of returns,nz,filers,all,3,"$5,000 under $10,000",42439.0,21in21id.xls,CI12,87,CI,12 +3903,2021_tab21_id_mortgage_count_nz_all,2021,tab21,id_mortgage,count,Home mortgage interest — number of returns,nz,filers,all,4,"$10,000 under $15,000",55732.0,21in21id.xls,CI13,87,CI,13 +3904,2021_tab21_id_mortgage_count_nz_all,2021,tab21,id_mortgage,count,Home mortgage interest — number of returns,nz,filers,all,5,"$15,000 under $20,000",77595.0,21in21id.xls,CI14,87,CI,14 +3905,2021_tab21_id_mortgage_count_nz_all,2021,tab21,id_mortgage,count,Home mortgage interest — number of returns,nz,filers,all,6,"$20,000 under $25,000",91706.0,21in21id.xls,CI15,87,CI,15 +3906,2021_tab21_id_mortgage_count_nz_all,2021,tab21,id_mortgage,count,Home mortgage interest — number of returns,nz,filers,all,7,"$25,000 under $30,000",96818.0,21in21id.xls,CI16,87,CI,16 +3907,2021_tab21_id_mortgage_count_nz_all,2021,tab21,id_mortgage,count,Home mortgage interest — number of returns,nz,filers,all,8,"$30,000 under $35,000",125957.0,21in21id.xls,CI17,87,CI,17 +3908,2021_tab21_id_mortgage_count_nz_all,2021,tab21,id_mortgage,count,Home mortgage interest — number of returns,nz,filers,all,9,"$35,000 under $40,000",150651.0,21in21id.xls,CI18,87,CI,18 +3909,2021_tab21_id_mortgage_count_nz_all,2021,tab21,id_mortgage,count,Home mortgage interest — number of returns,nz,filers,all,10,"$40,000 under $45,000",176842.0,21in21id.xls,CI19,87,CI,19 +3910,2021_tab21_id_mortgage_count_nz_all,2021,tab21,id_mortgage,count,Home mortgage interest — number of returns,nz,filers,all,11,"$45,000 under $50,000",196700.0,21in21id.xls,CI20,87,CI,20 +3911,2021_tab21_id_mortgage_count_nz_all,2021,tab21,id_mortgage,count,Home mortgage interest — number of returns,nz,filers,all,12,"$50,000 under $55,000",235397.0,21in21id.xls,CI21,87,CI,21 +3912,2021_tab21_id_mortgage_count_nz_all,2021,tab21,id_mortgage,count,Home mortgage interest — number of returns,nz,filers,all,13,"$55,000 under $60,000",239179.0,21in21id.xls,CI22,87,CI,22 +3913,2021_tab21_id_mortgage_count_nz_all,2021,tab21,id_mortgage,count,Home mortgage interest — number of returns,nz,filers,all,14,"$60,000 under $75,000",879564.0,21in21id.xls,CI23,87,CI,23 +3914,2021_tab21_id_mortgage_count_nz_all,2021,tab21,id_mortgage,count,Home mortgage interest — number of returns,nz,filers,all,15,"$75,000 under $100,000",1605710.0,21in21id.xls,CI24,87,CI,24 +3915,2021_tab21_id_mortgage_count_nz_all,2021,tab21,id_mortgage,count,Home mortgage interest — number of returns,nz,filers,all,16,"$100,000 under $200,000",3707749.0,21in21id.xls,CI25,87,CI,25 +3916,2021_tab21_id_mortgage_count_nz_all,2021,tab21,id_mortgage,count,Home mortgage interest — number of returns,nz,filers,all,17,"$200,000 under $500,000",2664041.0,21in21id.xls,CI26,87,CI,26 +3917,2021_tab21_id_mortgage_count_nz_all,2021,tab21,id_mortgage,count,Home mortgage interest — number of returns,nz,filers,all,18,"$500,000 under $1,000,000",728125.0,21in21id.xls,CI27,87,CI,27 +3918,2021_tab21_id_mortgage_count_nz_all,2021,tab21,id_mortgage,count,Home mortgage interest — number of returns,nz,filers,all,19,"$1,000,000 under $1,500,000",184775.0,21in21id.xls,CI28,87,CI,28 +3919,2021_tab21_id_mortgage_count_nz_all,2021,tab21,id_mortgage,count,Home mortgage interest — number of returns,nz,filers,all,20,"$1,500,000 under $2,000,000",78662.0,21in21id.xls,CI29,87,CI,29 +3920,2021_tab21_id_mortgage_count_nz_all,2021,tab21,id_mortgage,count,Home mortgage interest — number of returns,nz,filers,all,21,"$2,000,000 under $5,000,000",115934.0,21in21id.xls,CI30,87,CI,30 +3921,2021_tab21_id_mortgage_count_nz_all,2021,tab21,id_mortgage,count,Home mortgage interest — number of returns,nz,filers,all,22,"$5,000,000 under $10,000,000",31004.0,21in21id.xls,CI31,87,CI,31 +3922,2021_tab21_id_mortgage_count_nz_all,2021,tab21,id_mortgage,count,Home mortgage interest — number of returns,nz,filers,all,23,"$10,000,000 or more",20442.0,21in21id.xls,CI32,87,CI,32 +3923,2021_tab21_id_pit_amount_nz_all,2021,tab21,id_pit,amount,State income taxes,nz,filers,all,1,"All returns, total",250997086000.0,21in21id.xls,BV10,74,BV,10 +3924,2021_tab21_id_pit_amount_nz_all,2021,tab21,id_pit,amount,State income taxes,nz,filers,all,2,"Under $5,000",49819000.0,21in21id.xls,BV11,74,BV,11 +3925,2021_tab21_id_pit_amount_nz_all,2021,tab21,id_pit,amount,State income taxes,nz,filers,all,3,"$5,000 under $10,000",52308000.0,21in21id.xls,BV12,74,BV,12 +3926,2021_tab21_id_pit_amount_nz_all,2021,tab21,id_pit,amount,State income taxes,nz,filers,all,4,"$10,000 under $15,000",104215000.0,21in21id.xls,BV13,74,BV,13 +3927,2021_tab21_id_pit_amount_nz_all,2021,tab21,id_pit,amount,State income taxes,nz,filers,all,5,"$15,000 under $20,000",183949000.0,21in21id.xls,BV14,74,BV,14 +3928,2021_tab21_id_pit_amount_nz_all,2021,tab21,id_pit,amount,State income taxes,nz,filers,all,6,"$20,000 under $25,000",124232000.0,21in21id.xls,BV15,74,BV,15 +3929,2021_tab21_id_pit_amount_nz_all,2021,tab21,id_pit,amount,State income taxes,nz,filers,all,7,"$25,000 under $30,000",155739000.0,21in21id.xls,BV16,74,BV,16 +3930,2021_tab21_id_pit_amount_nz_all,2021,tab21,id_pit,amount,State income taxes,nz,filers,all,8,"$30,000 under $35,000",283058000.0,21in21id.xls,BV17,74,BV,17 +3931,2021_tab21_id_pit_amount_nz_all,2021,tab21,id_pit,amount,State income taxes,nz,filers,all,9,"$35,000 under $40,000",402927000.0,21in21id.xls,BV18,74,BV,18 +3932,2021_tab21_id_pit_amount_nz_all,2021,tab21,id_pit,amount,State income taxes,nz,filers,all,10,"$40,000 under $45,000",393145000.0,21in21id.xls,BV19,74,BV,19 +3933,2021_tab21_id_pit_amount_nz_all,2021,tab21,id_pit,amount,State income taxes,nz,filers,all,11,"$45,000 under $50,000",533009000.0,21in21id.xls,BV20,74,BV,20 +3934,2021_tab21_id_pit_amount_nz_all,2021,tab21,id_pit,amount,State income taxes,nz,filers,all,12,"$50,000 under $55,000",528568000.0,21in21id.xls,BV21,74,BV,21 +3935,2021_tab21_id_pit_amount_nz_all,2021,tab21,id_pit,amount,State income taxes,nz,filers,all,13,"$55,000 under $60,000",757495000.0,21in21id.xls,BV22,74,BV,22 +3936,2021_tab21_id_pit_amount_nz_all,2021,tab21,id_pit,amount,State income taxes,nz,filers,all,14,"$60,000 under $75,000",2791591000.0,21in21id.xls,BV23,74,BV,23 +3937,2021_tab21_id_pit_amount_nz_all,2021,tab21,id_pit,amount,State income taxes,nz,filers,all,15,"$75,000 under $100,000",6804275000.0,21in21id.xls,BV24,74,BV,24 +3938,2021_tab21_id_pit_amount_nz_all,2021,tab21,id_pit,amount,State income taxes,nz,filers,all,16,"$100,000 under $200,000",26778437000.0,21in21id.xls,BV25,74,BV,25 +3939,2021_tab21_id_pit_amount_nz_all,2021,tab21,id_pit,amount,State income taxes,nz,filers,all,17,"$200,000 under $500,000",44765649000.0,21in21id.xls,BV26,74,BV,26 +3940,2021_tab21_id_pit_amount_nz_all,2021,tab21,id_pit,amount,State income taxes,nz,filers,all,18,"$500,000 under $1,000,000",30215027000.0,21in21id.xls,BV27,74,BV,27 +3941,2021_tab21_id_pit_amount_nz_all,2021,tab21,id_pit,amount,State income taxes,nz,filers,all,19,"$1,000,000 under $1,500,000",15658427000.0,21in21id.xls,BV28,74,BV,28 +3942,2021_tab21_id_pit_amount_nz_all,2021,tab21,id_pit,amount,State income taxes,nz,filers,all,20,"$1,500,000 under $2,000,000",10183883000.0,21in21id.xls,BV29,74,BV,29 +3943,2021_tab21_id_pit_amount_nz_all,2021,tab21,id_pit,amount,State income taxes,nz,filers,all,21,"$2,000,000 under $5,000,000",29112954000.0,21in21id.xls,BV30,74,BV,30 +3944,2021_tab21_id_pit_amount_nz_all,2021,tab21,id_pit,amount,State income taxes,nz,filers,all,22,"$5,000,000 under $10,000,000",18561732000.0,21in21id.xls,BV31,74,BV,31 +3945,2021_tab21_id_pit_amount_nz_all,2021,tab21,id_pit,amount,State income taxes,nz,filers,all,23,"$10,000,000 or more",62556646000.0,21in21id.xls,BV32,74,BV,32 +3946,2021_tab21_id_pit_count_nz_all,2021,tab21,id_pit,count,State income taxes — number of returns,nz,filers,all,1,"All returns, total",10770045.0,21in21id.xls,BU10,73,BU,10 +3947,2021_tab21_id_pit_count_nz_all,2021,tab21,id_pit,count,State income taxes — number of returns,nz,filers,all,2,"Under $5,000",16674.0,21in21id.xls,BU11,73,BU,11 +3948,2021_tab21_id_pit_count_nz_all,2021,tab21,id_pit,count,State income taxes — number of returns,nz,filers,all,3,"$5,000 under $10,000",23016.0,21in21id.xls,BU12,73,BU,12 +3949,2021_tab21_id_pit_count_nz_all,2021,tab21,id_pit,count,State income taxes — number of returns,nz,filers,all,4,"$10,000 under $15,000",36489.0,21in21id.xls,BU13,73,BU,13 +3950,2021_tab21_id_pit_count_nz_all,2021,tab21,id_pit,count,State income taxes — number of returns,nz,filers,all,5,"$15,000 under $20,000",54965.0,21in21id.xls,BU14,73,BU,14 +3951,2021_tab21_id_pit_count_nz_all,2021,tab21,id_pit,count,State income taxes — number of returns,nz,filers,all,6,"$20,000 under $25,000",68182.0,21in21id.xls,BU15,73,BU,15 +3952,2021_tab21_id_pit_count_nz_all,2021,tab21,id_pit,count,State income taxes — number of returns,nz,filers,all,7,"$25,000 under $30,000",87029.0,21in21id.xls,BU16,73,BU,16 +3953,2021_tab21_id_pit_count_nz_all,2021,tab21,id_pit,count,State income taxes — number of returns,nz,filers,all,8,"$30,000 under $35,000",122508.0,21in21id.xls,BU17,73,BU,17 +3954,2021_tab21_id_pit_count_nz_all,2021,tab21,id_pit,count,State income taxes — number of returns,nz,filers,all,9,"$35,000 under $40,000",132013.0,21in21id.xls,BU18,73,BU,18 +3955,2021_tab21_id_pit_count_nz_all,2021,tab21,id_pit,count,State income taxes — number of returns,nz,filers,all,10,"$40,000 under $45,000",168904.0,21in21id.xls,BU19,73,BU,19 +3956,2021_tab21_id_pit_count_nz_all,2021,tab21,id_pit,count,State income taxes — number of returns,nz,filers,all,11,"$45,000 under $50,000",203815.0,21in21id.xls,BU20,73,BU,20 +3957,2021_tab21_id_pit_count_nz_all,2021,tab21,id_pit,count,State income taxes — number of returns,nz,filers,all,12,"$50,000 under $55,000",203778.0,21in21id.xls,BU21,73,BU,21 +3958,2021_tab21_id_pit_count_nz_all,2021,tab21,id_pit,count,State income taxes — number of returns,nz,filers,all,13,"$55,000 under $60,000",233712.0,21in21id.xls,BU22,73,BU,22 +3959,2021_tab21_id_pit_count_nz_all,2021,tab21,id_pit,count,State income taxes — number of returns,nz,filers,all,14,"$60,000 under $75,000",794833.0,21in21id.xls,BU23,73,BU,23 +3960,2021_tab21_id_pit_count_nz_all,2021,tab21,id_pit,count,State income taxes — number of returns,nz,filers,all,15,"$75,000 under $100,000",1488980.0,21in21id.xls,BU24,73,BU,24 +3961,2021_tab21_id_pit_count_nz_all,2021,tab21,id_pit,count,State income taxes — number of returns,nz,filers,all,16,"$100,000 under $200,000",3508177.0,21in21id.xls,BU25,73,BU,25 +3962,2021_tab21_id_pit_count_nz_all,2021,tab21,id_pit,count,State income taxes — number of returns,nz,filers,all,17,"$200,000 under $500,000",2463551.0,21in21id.xls,BU26,73,BU,26 +3963,2021_tab21_id_pit_count_nz_all,2021,tab21,id_pit,count,State income taxes — number of returns,nz,filers,all,18,"$500,000 under $1,000,000",677002.0,21in21id.xls,BU27,73,BU,27 +3964,2021_tab21_id_pit_count_nz_all,2021,tab21,id_pit,count,State income taxes — number of returns,nz,filers,all,19,"$1,000,000 under $1,500,000",186856.0,21in21id.xls,BU28,73,BU,28 +3965,2021_tab21_id_pit_count_nz_all,2021,tab21,id_pit,count,State income taxes — number of returns,nz,filers,all,20,"$1,500,000 under $2,000,000",85032.0,21in21id.xls,BU29,73,BU,29 +3966,2021_tab21_id_pit_count_nz_all,2021,tab21,id_pit,count,State income taxes — number of returns,nz,filers,all,21,"$2,000,000 under $5,000,000",138820.0,21in21id.xls,BU30,73,BU,30 +3967,2021_tab21_id_pit_count_nz_all,2021,tab21,id_pit,count,State income taxes — number of returns,nz,filers,all,22,"$5,000,000 under $10,000,000",42074.0,21in21id.xls,BU31,73,BU,31 +3968,2021_tab21_id_pit_count_nz_all,2021,tab21,id_pit,count,State income taxes — number of returns,nz,filers,all,23,"$10,000,000 or more",33638.0,21in21id.xls,BU32,73,BU,32 +3969,2021_tab21_id_pitgst_amount_nz_all,2021,tab21,id_pitgst,amount,State income or sales taxes combined (2021+),nz,filers,all,1,"All returns, total",258639729000.0,21in21id.xls,BT10,72,BT,10 +3970,2021_tab21_id_pitgst_amount_nz_all,2021,tab21,id_pitgst,amount,State income or sales taxes combined (2021+),nz,filers,all,2,"Under $5,000",69882000.0,21in21id.xls,BT11,72,BT,11 +3971,2021_tab21_id_pitgst_amount_nz_all,2021,tab21,id_pitgst,amount,State income or sales taxes combined (2021+),nz,filers,all,3,"$5,000 under $10,000",81243000.0,21in21id.xls,BT12,72,BT,12 +3972,2021_tab21_id_pitgst_amount_nz_all,2021,tab21,id_pitgst,amount,State income or sales taxes combined (2021+),nz,filers,all,4,"$10,000 under $15,000",138219000.0,21in21id.xls,BT13,72,BT,13 +3973,2021_tab21_id_pitgst_amount_nz_all,2021,tab21,id_pitgst,amount,State income or sales taxes combined (2021+),nz,filers,all,5,"$15,000 under $20,000",257632000.0,21in21id.xls,BT14,72,BT,14 +3974,2021_tab21_id_pitgst_amount_nz_all,2021,tab21,id_pitgst,amount,State income or sales taxes combined (2021+),nz,filers,all,6,"$20,000 under $25,000",210001000.0,21in21id.xls,BT15,72,BT,15 +3975,2021_tab21_id_pitgst_amount_nz_all,2021,tab21,id_pitgst,amount,State income or sales taxes combined (2021+),nz,filers,all,7,"$25,000 under $30,000",255442000.0,21in21id.xls,BT16,72,BT,16 +3976,2021_tab21_id_pitgst_amount_nz_all,2021,tab21,id_pitgst,amount,State income or sales taxes combined (2021+),nz,filers,all,8,"$30,000 under $35,000",431455000.0,21in21id.xls,BT17,72,BT,17 +3977,2021_tab21_id_pitgst_amount_nz_all,2021,tab21,id_pitgst,amount,State income or sales taxes combined (2021+),nz,filers,all,9,"$35,000 under $40,000",530692000.0,21in21id.xls,BT18,72,BT,18 +3978,2021_tab21_id_pitgst_amount_nz_all,2021,tab21,id_pitgst,amount,State income or sales taxes combined (2021+),nz,filers,all,10,"$40,000 under $45,000",532141000.0,21in21id.xls,BT19,72,BT,19 +3979,2021_tab21_id_pitgst_amount_nz_all,2021,tab21,id_pitgst,amount,State income or sales taxes combined (2021+),nz,filers,all,11,"$45,000 under $50,000",673870000.0,21in21id.xls,BT20,72,BT,20 +3980,2021_tab21_id_pitgst_amount_nz_all,2021,tab21,id_pitgst,amount,State income or sales taxes combined (2021+),nz,filers,all,12,"$50,000 under $55,000",675232000.0,21in21id.xls,BT21,72,BT,21 +3981,2021_tab21_id_pitgst_amount_nz_all,2021,tab21,id_pitgst,amount,State income or sales taxes combined (2021+),nz,filers,all,13,"$55,000 under $60,000",881913000.0,21in21id.xls,BT22,72,BT,22 +3982,2021_tab21_id_pitgst_amount_nz_all,2021,tab21,id_pitgst,amount,State income or sales taxes combined (2021+),nz,filers,all,14,"$60,000 under $75,000",3276349000.0,21in21id.xls,BT23,72,BT,23 +3983,2021_tab21_id_pitgst_amount_nz_all,2021,tab21,id_pitgst,amount,State income or sales taxes combined (2021+),nz,filers,all,15,"$75,000 under $100,000",7653268000.0,21in21id.xls,BT24,72,BT,24 +3984,2021_tab21_id_pitgst_amount_nz_all,2021,tab21,id_pitgst,amount,State income or sales taxes combined (2021+),nz,filers,all,16,"$100,000 under $200,000",28735921000.0,21in21id.xls,BT25,72,BT,25 +3985,2021_tab21_id_pitgst_amount_nz_all,2021,tab21,id_pitgst,amount,State income or sales taxes combined (2021+),nz,filers,all,17,"$200,000 under $500,000",46625081000.0,21in21id.xls,BT26,72,BT,26 +3986,2021_tab21_id_pitgst_amount_nz_all,2021,tab21,id_pitgst,amount,State income or sales taxes combined (2021+),nz,filers,all,18,"$500,000 under $1,000,000",30844141000.0,21in21id.xls,BT27,72,BT,27 +3987,2021_tab21_id_pitgst_amount_nz_all,2021,tab21,id_pitgst,amount,State income or sales taxes combined (2021+),nz,filers,all,19,"$1,000,000 under $1,500,000",15821676000.0,21in21id.xls,BT28,72,BT,28 +3988,2021_tab21_id_pitgst_amount_nz_all,2021,tab21,id_pitgst,amount,State income or sales taxes combined (2021+),nz,filers,all,20,"$1,500,000 under $2,000,000",10263972000.0,21in21id.xls,BT29,72,BT,29 +3989,2021_tab21_id_pitgst_amount_nz_all,2021,tab21,id_pitgst,amount,State income or sales taxes combined (2021+),nz,filers,all,21,"$2,000,000 under $5,000,000",29251689000.0,21in21id.xls,BT30,72,BT,30 +3990,2021_tab21_id_pitgst_amount_nz_all,2021,tab21,id_pitgst,amount,State income or sales taxes combined (2021+),nz,filers,all,22,"$5,000,000 under $10,000,000",18617713000.0,21in21id.xls,BT31,72,BT,31 +3991,2021_tab21_id_pitgst_amount_nz_all,2021,tab21,id_pitgst,amount,State income or sales taxes combined (2021+),nz,filers,all,23,"$10,000,000 or more",62812195000.0,21in21id.xls,BT32,72,BT,32 +3992,2021_tab21_id_pitgst_count_nz_all,2021,tab21,id_pitgst,count,State income or sales taxes combined — number of returns (2021+),nz,filers,all,1,"All returns, total",14310685.0,21in21id.xls,BS10,71,BS,10 +3993,2021_tab21_id_pitgst_count_nz_all,2021,tab21,id_pitgst,count,State income or sales taxes combined — number of returns (2021+),nz,filers,all,2,"Under $5,000",59673.0,21in21id.xls,BS11,71,BS,11 +3994,2021_tab21_id_pitgst_count_nz_all,2021,tab21,id_pitgst,count,State income or sales taxes combined — number of returns (2021+),nz,filers,all,3,"$5,000 under $10,000",77467.0,21in21id.xls,BS12,71,BS,12 +3995,2021_tab21_id_pitgst_count_nz_all,2021,tab21,id_pitgst,count,State income or sales taxes combined — number of returns (2021+),nz,filers,all,4,"$10,000 under $15,000",95224.0,21in21id.xls,BS13,71,BS,13 +3996,2021_tab21_id_pitgst_count_nz_all,2021,tab21,id_pitgst,count,State income or sales taxes combined — number of returns (2021+),nz,filers,all,5,"$15,000 under $20,000",140720.0,21in21id.xls,BS14,71,BS,14 +3997,2021_tab21_id_pitgst_count_nz_all,2021,tab21,id_pitgst,count,State income or sales taxes combined — number of returns (2021+),nz,filers,all,6,"$20,000 under $25,000",148879.0,21in21id.xls,BS15,71,BS,15 +3998,2021_tab21_id_pitgst_count_nz_all,2021,tab21,id_pitgst,count,State income or sales taxes combined — number of returns (2021+),nz,filers,all,7,"$25,000 under $30,000",171887.0,21in21id.xls,BS16,71,BS,16 +3999,2021_tab21_id_pitgst_count_nz_all,2021,tab21,id_pitgst,count,State income or sales taxes combined — number of returns (2021+),nz,filers,all,8,"$30,000 under $35,000",210230.0,21in21id.xls,BS17,71,BS,17 +4000,2021_tab21_id_pitgst_count_nz_all,2021,tab21,id_pitgst,count,State income or sales taxes combined — number of returns (2021+),nz,filers,all,9,"$35,000 under $40,000",223618.0,21in21id.xls,BS18,71,BS,18 +4001,2021_tab21_id_pitgst_count_nz_all,2021,tab21,id_pitgst,count,State income or sales taxes combined — number of returns (2021+),nz,filers,all,10,"$40,000 under $45,000",273874.0,21in21id.xls,BS19,71,BS,19 +4002,2021_tab21_id_pitgst_count_nz_all,2021,tab21,id_pitgst,count,State income or sales taxes combined — number of returns (2021+),nz,filers,all,11,"$45,000 under $50,000",299887.0,21in21id.xls,BS20,71,BS,20 +4003,2021_tab21_id_pitgst_count_nz_all,2021,tab21,id_pitgst,count,State income or sales taxes combined — number of returns (2021+),nz,filers,all,12,"$50,000 under $55,000",320975.0,21in21id.xls,BS21,71,BS,21 +4004,2021_tab21_id_pitgst_count_nz_all,2021,tab21,id_pitgst,count,State income or sales taxes combined — number of returns (2021+),nz,filers,all,13,"$55,000 under $60,000",338591.0,21in21id.xls,BS22,71,BS,22 +4005,2021_tab21_id_pitgst_count_nz_all,2021,tab21,id_pitgst,count,State income or sales taxes combined — number of returns (2021+),nz,filers,all,14,"$60,000 under $75,000",1077460.0,21in21id.xls,BS23,71,BS,23 +4006,2021_tab21_id_pitgst_count_nz_all,2021,tab21,id_pitgst,count,State income or sales taxes combined — number of returns (2021+),nz,filers,all,15,"$75,000 under $100,000",1924416.0,21in21id.xls,BS24,71,BS,24 +4007,2021_tab21_id_pitgst_count_nz_all,2021,tab21,id_pitgst,count,State income or sales taxes combined — number of returns (2021+),nz,filers,all,16,"$100,000 under $200,000",4404055.0,21in21id.xls,BS25,71,BS,25 +4008,2021_tab21_id_pitgst_count_nz_all,2021,tab21,id_pitgst,count,State income or sales taxes combined — number of returns (2021+),nz,filers,all,17,"$200,000 under $500,000",3081442.0,21in21id.xls,BS26,71,BS,26 +4009,2021_tab21_id_pitgst_count_nz_all,2021,tab21,id_pitgst,count,State income or sales taxes combined — number of returns (2021+),nz,filers,all,18,"$500,000 under $1,000,000",861508.0,21in21id.xls,BS27,71,BS,27 +4010,2021_tab21_id_pitgst_count_nz_all,2021,tab21,id_pitgst,count,State income or sales taxes combined — number of returns (2021+),nz,filers,all,19,"$1,000,000 under $1,500,000",234575.0,21in21id.xls,BS28,71,BS,28 +4011,2021_tab21_id_pitgst_count_nz_all,2021,tab21,id_pitgst,count,State income or sales taxes combined — number of returns (2021+),nz,filers,all,20,"$1,500,000 under $2,000,000",106426.0,21in21id.xls,BS29,71,BS,29 +4012,2021_tab21_id_pitgst_count_nz_all,2021,tab21,id_pitgst,count,State income or sales taxes combined — number of returns (2021+),nz,filers,all,21,"$2,000,000 under $5,000,000",170243.0,21in21id.xls,BS30,71,BS,30 +4013,2021_tab21_id_pitgst_count_nz_all,2021,tab21,id_pitgst,count,State income or sales taxes combined — number of returns (2021+),nz,filers,all,22,"$5,000,000 under $10,000,000",50405.0,21in21id.xls,BS31,71,BS,31 +4014,2021_tab21_id_pitgst_count_nz_all,2021,tab21,id_pitgst,count,State income or sales taxes combined — number of returns (2021+),nz,filers,all,23,"$10,000,000 or more",39130.0,21in21id.xls,BS32,71,BS,32 +4015,2021_tab21_id_retax_amount_nz_all,2021,tab21,id_retax,amount,Real estate taxes,nz,filers,all,1,"All returns, total",99984344000.0,21in21id.xls,BZ10,78,BZ,10 +4016,2021_tab21_id_retax_amount_nz_all,2021,tab21,id_retax,amount,Real estate taxes,nz,filers,all,2,"Under $5,000",256216000.0,21in21id.xls,BZ11,78,BZ,11 +4017,2021_tab21_id_retax_amount_nz_all,2021,tab21,id_retax,amount,Real estate taxes,nz,filers,all,3,"$5,000 under $10,000",294963000.0,21in21id.xls,BZ12,78,BZ,12 +4018,2021_tab21_id_retax_amount_nz_all,2021,tab21,id_retax,amount,Real estate taxes,nz,filers,all,4,"$10,000 under $15,000",423838000.0,21in21id.xls,BZ13,78,BZ,13 +4019,2021_tab21_id_retax_amount_nz_all,2021,tab21,id_retax,amount,Real estate taxes,nz,filers,all,5,"$15,000 under $20,000",556597000.0,21in21id.xls,BZ14,78,BZ,14 +4020,2021_tab21_id_retax_amount_nz_all,2021,tab21,id_retax,amount,Real estate taxes,nz,filers,all,6,"$20,000 under $25,000",565930000.0,21in21id.xls,BZ15,78,BZ,15 +4021,2021_tab21_id_retax_amount_nz_all,2021,tab21,id_retax,amount,Real estate taxes,nz,filers,all,7,"$25,000 under $30,000",525455000.0,21in21id.xls,BZ16,78,BZ,16 +4022,2021_tab21_id_retax_amount_nz_all,2021,tab21,id_retax,amount,Real estate taxes,nz,filers,all,8,"$30,000 under $35,000",740176000.0,21in21id.xls,BZ17,78,BZ,17 +4023,2021_tab21_id_retax_amount_nz_all,2021,tab21,id_retax,amount,Real estate taxes,nz,filers,all,9,"$35,000 under $40,000",773900000.0,21in21id.xls,BZ18,78,BZ,18 +4024,2021_tab21_id_retax_amount_nz_all,2021,tab21,id_retax,amount,Real estate taxes,nz,filers,all,10,"$40,000 under $45,000",1014207000.0,21in21id.xls,BZ19,78,BZ,19 +4025,2021_tab21_id_retax_amount_nz_all,2021,tab21,id_retax,amount,Real estate taxes,nz,filers,all,11,"$45,000 under $50,000",1129842000.0,21in21id.xls,BZ20,78,BZ,20 +4026,2021_tab21_id_retax_amount_nz_all,2021,tab21,id_retax,amount,Real estate taxes,nz,filers,all,12,"$50,000 under $55,000",1251885000.0,21in21id.xls,BZ21,78,BZ,21 +4027,2021_tab21_id_retax_amount_nz_all,2021,tab21,id_retax,amount,Real estate taxes,nz,filers,all,13,"$55,000 under $60,000",1322707000.0,21in21id.xls,BZ22,78,BZ,22 +4028,2021_tab21_id_retax_amount_nz_all,2021,tab21,id_retax,amount,Real estate taxes,nz,filers,all,14,"$60,000 under $75,000",4541711000.0,21in21id.xls,BZ23,78,BZ,23 +4029,2021_tab21_id_retax_amount_nz_all,2021,tab21,id_retax,amount,Real estate taxes,nz,filers,all,15,"$75,000 under $100,000",8792062000.0,21in21id.xls,BZ24,78,BZ,24 +4030,2021_tab21_id_retax_amount_nz_all,2021,tab21,id_retax,amount,Real estate taxes,nz,filers,all,16,"$100,000 under $200,000",24647914000.0,21in21id.xls,BZ25,78,BZ,25 +4031,2021_tab21_id_retax_amount_nz_all,2021,tab21,id_retax,amount,Real estate taxes,nz,filers,all,17,"$200,000 under $500,000",26891746000.0,21in21id.xls,BZ26,78,BZ,26 +4032,2021_tab21_id_retax_amount_nz_all,2021,tab21,id_retax,amount,Real estate taxes,nz,filers,all,18,"$500,000 under $1,000,000",11588950000.0,21in21id.xls,BZ27,78,BZ,27 +4033,2021_tab21_id_retax_amount_nz_all,2021,tab21,id_retax,amount,Real estate taxes,nz,filers,all,19,"$1,000,000 under $1,500,000",4093373000.0,21in21id.xls,BZ28,78,BZ,28 +4034,2021_tab21_id_retax_amount_nz_all,2021,tab21,id_retax,amount,Real estate taxes,nz,filers,all,20,"$1,500,000 under $2,000,000",2067297000.0,21in21id.xls,BZ29,78,BZ,29 +4035,2021_tab21_id_retax_amount_nz_all,2021,tab21,id_retax,amount,Real estate taxes,nz,filers,all,21,"$2,000,000 under $5,000,000",4228788000.0,21in21id.xls,BZ30,78,BZ,30 +4036,2021_tab21_id_retax_amount_nz_all,2021,tab21,id_retax,amount,Real estate taxes,nz,filers,all,22,"$5,000,000 under $10,000,000",1781149000.0,21in21id.xls,BZ31,78,BZ,31 +4037,2021_tab21_id_retax_amount_nz_all,2021,tab21,id_retax,amount,Real estate taxes,nz,filers,all,23,"$10,000,000 or more",2495637000.0,21in21id.xls,BZ32,78,BZ,32 +4038,2021_tab21_id_retax_count_nz_all,2021,tab21,id_retax,count,Real estate taxes — number of returns,nz,filers,all,1,"All returns, total",12779463.0,21in21id.xls,BY10,77,BY,10 +4039,2021_tab21_id_retax_count_nz_all,2021,tab21,id_retax,count,Real estate taxes — number of returns,nz,filers,all,2,"Under $5,000",46424.0,21in21id.xls,BY11,77,BY,11 +4040,2021_tab21_id_retax_count_nz_all,2021,tab21,id_retax,count,Real estate taxes — number of returns,nz,filers,all,3,"$5,000 under $10,000",60133.0,21in21id.xls,BY12,77,BY,12 +4041,2021_tab21_id_retax_count_nz_all,2021,tab21,id_retax,count,Real estate taxes — number of returns,nz,filers,all,4,"$10,000 under $15,000",75943.0,21in21id.xls,BY13,77,BY,13 +4042,2021_tab21_id_retax_count_nz_all,2021,tab21,id_retax,count,Real estate taxes — number of returns,nz,filers,all,5,"$15,000 under $20,000",97224.0,21in21id.xls,BY14,77,BY,14 +4043,2021_tab21_id_retax_count_nz_all,2021,tab21,id_retax,count,Real estate taxes — number of returns,nz,filers,all,6,"$20,000 under $25,000",112133.0,21in21id.xls,BY15,77,BY,15 +4044,2021_tab21_id_retax_count_nz_all,2021,tab21,id_retax,count,Real estate taxes — number of returns,nz,filers,all,7,"$25,000 under $30,000",110828.0,21in21id.xls,BY16,77,BY,16 +4045,2021_tab21_id_retax_count_nz_all,2021,tab21,id_retax,count,Real estate taxes — number of returns,nz,filers,all,8,"$30,000 under $35,000",141234.0,21in21id.xls,BY17,77,BY,17 +4046,2021_tab21_id_retax_count_nz_all,2021,tab21,id_retax,count,Real estate taxes — number of returns,nz,filers,all,9,"$35,000 under $40,000",169721.0,21in21id.xls,BY18,77,BY,18 +4047,2021_tab21_id_retax_count_nz_all,2021,tab21,id_retax,count,Real estate taxes — number of returns,nz,filers,all,10,"$40,000 under $45,000",200465.0,21in21id.xls,BY19,77,BY,19 +4048,2021_tab21_id_retax_count_nz_all,2021,tab21,id_retax,count,Real estate taxes — number of returns,nz,filers,all,11,"$45,000 under $50,000",224009.0,21in21id.xls,BY20,77,BY,20 +4049,2021_tab21_id_retax_count_nz_all,2021,tab21,id_retax,count,Real estate taxes — number of returns,nz,filers,all,12,"$50,000 under $55,000",266129.0,21in21id.xls,BY21,77,BY,21 +4050,2021_tab21_id_retax_count_nz_all,2021,tab21,id_retax,count,Real estate taxes — number of returns,nz,filers,all,13,"$55,000 under $60,000",270434.0,21in21id.xls,BY22,77,BY,22 +4051,2021_tab21_id_retax_count_nz_all,2021,tab21,id_retax,count,Real estate taxes — number of returns,nz,filers,all,14,"$60,000 under $75,000",948235.0,21in21id.xls,BY23,77,BY,23 +4052,2021_tab21_id_retax_count_nz_all,2021,tab21,id_retax,count,Real estate taxes — number of returns,nz,filers,all,15,"$75,000 under $100,000",1737166.0,21in21id.xls,BY24,77,BY,24 +4053,2021_tab21_id_retax_count_nz_all,2021,tab21,id_retax,count,Real estate taxes — number of returns,nz,filers,all,16,"$100,000 under $200,000",4074023.0,21in21id.xls,BY25,77,BY,25 +4054,2021_tab21_id_retax_count_nz_all,2021,tab21,id_retax,count,Real estate taxes — number of returns,nz,filers,all,17,"$200,000 under $500,000",2894851.0,21in21id.xls,BY26,77,BY,26 +4055,2021_tab21_id_retax_count_nz_all,2021,tab21,id_retax,count,Real estate taxes — number of returns,nz,filers,all,18,"$500,000 under $1,000,000",804340.0,21in21id.xls,BY27,77,BY,27 +4056,2021_tab21_id_retax_count_nz_all,2021,tab21,id_retax,count,Real estate taxes — number of returns,nz,filers,all,19,"$1,000,000 under $1,500,000",216368.0,21in21id.xls,BY28,77,BY,28 +4057,2021_tab21_id_retax_count_nz_all,2021,tab21,id_retax,count,Real estate taxes — number of returns,nz,filers,all,20,"$1,500,000 under $2,000,000",96934.0,21in21id.xls,BY29,77,BY,29 +4058,2021_tab21_id_retax_count_nz_all,2021,tab21,id_retax,count,Real estate taxes — number of returns,nz,filers,all,21,"$2,000,000 under $5,000,000",153461.0,21in21id.xls,BY30,77,BY,30 +4059,2021_tab21_id_retax_count_nz_all,2021,tab21,id_retax,count,Real estate taxes — number of returns,nz,filers,all,22,"$5,000,000 under $10,000,000",45063.0,21in21id.xls,BY31,77,BY,31 +4060,2021_tab21_id_retax_count_nz_all,2021,tab21,id_retax,count,Real estate taxes — number of returns,nz,filers,all,23,"$10,000,000 or more",34347.0,21in21id.xls,BY32,77,BY,32 +4061,2021_tab21_id_salt_amount_nz_all,2021,tab21,id_salt,amount,State and local taxes (SALT),nz,filers,all,1,"All returns, total",362507801000.0,21in21id.xls,BR10,70,BR,10 +4062,2021_tab21_id_salt_amount_nz_all,2021,tab21,id_salt,amount,State and local taxes (SALT),nz,filers,all,2,"Under $5,000",336650000.0,21in21id.xls,BR11,70,BR,11 +4063,2021_tab21_id_salt_amount_nz_all,2021,tab21,id_salt,amount,State and local taxes (SALT),nz,filers,all,3,"$5,000 under $10,000",380502000.0,21in21id.xls,BR12,70,BR,12 +4064,2021_tab21_id_salt_amount_nz_all,2021,tab21,id_salt,amount,State and local taxes (SALT),nz,filers,all,4,"$10,000 under $15,000",581150000.0,21in21id.xls,BR13,70,BR,13 +4065,2021_tab21_id_salt_amount_nz_all,2021,tab21,id_salt,amount,State and local taxes (SALT),nz,filers,all,5,"$15,000 under $20,000",821023000.0,21in21id.xls,BR14,70,BR,14 +4066,2021_tab21_id_salt_amount_nz_all,2021,tab21,id_salt,amount,State and local taxes (SALT),nz,filers,all,6,"$20,000 under $25,000",811022000.0,21in21id.xls,BR15,70,BR,15 +4067,2021_tab21_id_salt_amount_nz_all,2021,tab21,id_salt,amount,State and local taxes (SALT),nz,filers,all,7,"$25,000 under $30,000",835417000.0,21in21id.xls,BR16,70,BR,16 +4068,2021_tab21_id_salt_amount_nz_all,2021,tab21,id_salt,amount,State and local taxes (SALT),nz,filers,all,8,"$30,000 under $35,000",1209086000.0,21in21id.xls,BR17,70,BR,17 +4069,2021_tab21_id_salt_amount_nz_all,2021,tab21,id_salt,amount,State and local taxes (SALT),nz,filers,all,9,"$35,000 under $40,000",1372777000.0,21in21id.xls,BR18,70,BR,18 +4070,2021_tab21_id_salt_amount_nz_all,2021,tab21,id_salt,amount,State and local taxes (SALT),nz,filers,all,10,"$40,000 under $45,000",1576721000.0,21in21id.xls,BR19,70,BR,19 +4071,2021_tab21_id_salt_amount_nz_all,2021,tab21,id_salt,amount,State and local taxes (SALT),nz,filers,all,11,"$45,000 under $50,000",1926544000.0,21in21id.xls,BR20,70,BR,20 +4072,2021_tab21_id_salt_amount_nz_all,2021,tab21,id_salt,amount,State and local taxes (SALT),nz,filers,all,12,"$50,000 under $55,000",2041826000.0,21in21id.xls,BR21,70,BR,21 +4073,2021_tab21_id_salt_amount_nz_all,2021,tab21,id_salt,amount,State and local taxes (SALT),nz,filers,all,13,"$55,000 under $60,000",2299240000.0,21in21id.xls,BR22,70,BR,22 +4074,2021_tab21_id_salt_amount_nz_all,2021,tab21,id_salt,amount,State and local taxes (SALT),nz,filers,all,14,"$60,000 under $75,000",8106733000.0,21in21id.xls,BR23,70,BR,23 +4075,2021_tab21_id_salt_amount_nz_all,2021,tab21,id_salt,amount,State and local taxes (SALT),nz,filers,all,15,"$75,000 under $100,000",16952297000.0,21in21id.xls,BR24,70,BR,24 +4076,2021_tab21_id_salt_amount_nz_all,2021,tab21,id_salt,amount,State and local taxes (SALT),nz,filers,all,16,"$100,000 under $200,000",54478221000.0,21in21id.xls,BR25,70,BR,25 +4077,2021_tab21_id_salt_amount_nz_all,2021,tab21,id_salt,amount,State and local taxes (SALT),nz,filers,all,17,"$200,000 under $500,000",74417699000.0,21in21id.xls,BR26,70,BR,26 +4078,2021_tab21_id_salt_amount_nz_all,2021,tab21,id_salt,amount,State and local taxes (SALT),nz,filers,all,18,"$500,000 under $1,000,000",42702238000.0,21in21id.xls,BR27,70,BR,27 +4079,2021_tab21_id_salt_amount_nz_all,2021,tab21,id_salt,amount,State and local taxes (SALT),nz,filers,all,19,"$1,000,000 under $1,500,000",20002533000.0,21in21id.xls,BR28,70,BR,28 +4080,2021_tab21_id_salt_amount_nz_all,2021,tab21,id_salt,amount,State and local taxes (SALT),nz,filers,all,20,"$1,500,000 under $2,000,000",12367696000.0,21in21id.xls,BR29,70,BR,29 +4081,2021_tab21_id_salt_amount_nz_all,2021,tab21,id_salt,amount,State and local taxes (SALT),nz,filers,all,21,"$2,000,000 under $5,000,000",33547583000.0,21in21id.xls,BR30,70,BR,30 +4082,2021_tab21_id_salt_amount_nz_all,2021,tab21,id_salt,amount,State and local taxes (SALT),nz,filers,all,22,"$5,000,000 under $10,000,000",20421310000.0,21in21id.xls,BR31,70,BR,31 +4083,2021_tab21_id_salt_amount_nz_all,2021,tab21,id_salt,amount,State and local taxes (SALT),nz,filers,all,23,"$10,000,000 or more",65319533000.0,21in21id.xls,BR32,70,BR,32 +4084,2021_tab21_id_salt_count_nz_all,2021,tab21,id_salt,count,State and local taxes (SALT) — number of returns,nz,filers,all,1,"All returns, total",14644905.0,21in21id.xls,BQ10,69,BQ,10 +4085,2021_tab21_id_salt_count_nz_all,2021,tab21,id_salt,count,State and local taxes (SALT) — number of returns,nz,filers,all,2,"Under $5,000",72301.0,21in21id.xls,BQ11,69,BQ,11 +4086,2021_tab21_id_salt_count_nz_all,2021,tab21,id_salt,count,State and local taxes (SALT) — number of returns,nz,filers,all,3,"$5,000 under $10,000",87056.0,21in21id.xls,BQ12,69,BQ,12 +4087,2021_tab21_id_salt_count_nz_all,2021,tab21,id_salt,count,State and local taxes (SALT) — number of returns,nz,filers,all,4,"$10,000 under $15,000",102025.0,21in21id.xls,BQ13,69,BQ,13 +4088,2021_tab21_id_salt_count_nz_all,2021,tab21,id_salt,count,State and local taxes (SALT) — number of returns,nz,filers,all,5,"$15,000 under $20,000",148557.0,21in21id.xls,BQ14,69,BQ,14 +4089,2021_tab21_id_salt_count_nz_all,2021,tab21,id_salt,count,State and local taxes (SALT) — number of returns,nz,filers,all,6,"$20,000 under $25,000",155007.0,21in21id.xls,BQ15,69,BQ,15 +4090,2021_tab21_id_salt_count_nz_all,2021,tab21,id_salt,count,State and local taxes (SALT) — number of returns,nz,filers,all,7,"$25,000 under $30,000",184738.0,21in21id.xls,BQ16,69,BQ,16 +4091,2021_tab21_id_salt_count_nz_all,2021,tab21,id_salt,count,State and local taxes (SALT) — number of returns,nz,filers,all,8,"$30,000 under $35,000",220479.0,21in21id.xls,BQ17,69,BQ,17 +4092,2021_tab21_id_salt_count_nz_all,2021,tab21,id_salt,count,State and local taxes (SALT) — number of returns,nz,filers,all,9,"$35,000 under $40,000",234030.0,21in21id.xls,BQ18,69,BQ,18 +4093,2021_tab21_id_salt_count_nz_all,2021,tab21,id_salt,count,State and local taxes (SALT) — number of returns,nz,filers,all,10,"$40,000 under $45,000",286943.0,21in21id.xls,BQ19,69,BQ,19 +4094,2021_tab21_id_salt_count_nz_all,2021,tab21,id_salt,count,State and local taxes (SALT) — number of returns,nz,filers,all,11,"$45,000 under $50,000",312280.0,21in21id.xls,BQ20,69,BQ,20 +4095,2021_tab21_id_salt_count_nz_all,2021,tab21,id_salt,count,State and local taxes (SALT) — number of returns,nz,filers,all,12,"$50,000 under $55,000",335880.0,21in21id.xls,BQ21,69,BQ,21 +4096,2021_tab21_id_salt_count_nz_all,2021,tab21,id_salt,count,State and local taxes (SALT) — number of returns,nz,filers,all,13,"$55,000 under $60,000",348695.0,21in21id.xls,BQ22,69,BQ,22 +4097,2021_tab21_id_salt_count_nz_all,2021,tab21,id_salt,count,State and local taxes (SALT) — number of returns,nz,filers,all,14,"$60,000 under $75,000",1112635.0,21in21id.xls,BQ23,69,BQ,23 +4098,2021_tab21_id_salt_count_nz_all,2021,tab21,id_salt,count,State and local taxes (SALT) — number of returns,nz,filers,all,15,"$75,000 under $100,000",1962692.0,21in21id.xls,BQ24,69,BQ,24 +4099,2021_tab21_id_salt_count_nz_all,2021,tab21,id_salt,count,State and local taxes (SALT) — number of returns,nz,filers,all,16,"$100,000 under $200,000",4478609.0,21in21id.xls,BQ25,69,BQ,25 +4100,2021_tab21_id_salt_count_nz_all,2021,tab21,id_salt,count,State and local taxes (SALT) — number of returns,nz,filers,all,17,"$200,000 under $500,000",3125168.0,21in21id.xls,BQ26,69,BQ,26 +4101,2021_tab21_id_salt_count_nz_all,2021,tab21,id_salt,count,State and local taxes (SALT) — number of returns,nz,filers,all,18,"$500,000 under $1,000,000",871728.0,21in21id.xls,BQ27,69,BQ,27 +4102,2021_tab21_id_salt_count_nz_all,2021,tab21,id_salt,count,State and local taxes (SALT) — number of returns,nz,filers,all,19,"$1,000,000 under $1,500,000",236470.0,21in21id.xls,BQ28,69,BQ,28 +4103,2021_tab21_id_salt_count_nz_all,2021,tab21,id_salt,count,State and local taxes (SALT) — number of returns,nz,filers,all,20,"$1,500,000 under $2,000,000",107265.0,21in21id.xls,BQ29,69,BQ,29 +4104,2021_tab21_id_salt_count_nz_all,2021,tab21,id_salt,count,State and local taxes (SALT) — number of returns,nz,filers,all,21,"$2,000,000 under $5,000,000",171918.0,21in21id.xls,BQ30,69,BQ,30 +4105,2021_tab21_id_salt_count_nz_all,2021,tab21,id_salt,count,State and local taxes (SALT) — number of returns,nz,filers,all,22,"$5,000,000 under $10,000,000",50923.0,21in21id.xls,BQ31,69,BQ,31 +4106,2021_tab21_id_salt_count_nz_all,2021,tab21,id_salt,count,State and local taxes (SALT) — number of returns,nz,filers,all,23,"$10,000,000 or more",39505.0,21in21id.xls,BQ32,69,BQ,32 +4107,2021_tab21_id_taxpaid_amount_nz_all,2021,tab21,id_taxpaid,amount,Taxes paid deduction,nz,filers,all,1,"All returns, total",119541517000.0,21in21id.xls,BP10,68,BP,10 +4108,2021_tab21_id_taxpaid_amount_nz_all,2021,tab21,id_taxpaid,amount,Taxes paid deduction,nz,filers,all,2,"Under $5,000",300355000.0,21in21id.xls,BP11,68,BP,11 +4109,2021_tab21_id_taxpaid_amount_nz_all,2021,tab21,id_taxpaid,amount,Taxes paid deduction,nz,filers,all,3,"$5,000 under $10,000",346915000.0,21in21id.xls,BP12,68,BP,12 +4110,2021_tab21_id_taxpaid_amount_nz_all,2021,tab21,id_taxpaid,amount,Taxes paid deduction,nz,filers,all,4,"$10,000 under $15,000",519125000.0,21in21id.xls,BP13,68,BP,13 +4111,2021_tab21_id_taxpaid_amount_nz_all,2021,tab21,id_taxpaid,amount,Taxes paid deduction,nz,filers,all,5,"$15,000 under $20,000",687462000.0,21in21id.xls,BP14,68,BP,14 +4112,2021_tab21_id_taxpaid_amount_nz_all,2021,tab21,id_taxpaid,amount,Taxes paid deduction,nz,filers,all,6,"$20,000 under $25,000",753305000.0,21in21id.xls,BP15,68,BP,15 +4113,2021_tab21_id_taxpaid_amount_nz_all,2021,tab21,id_taxpaid,amount,Taxes paid deduction,nz,filers,all,7,"$25,000 under $30,000",781930000.0,21in21id.xls,BP16,68,BP,16 +4114,2021_tab21_id_taxpaid_amount_nz_all,2021,tab21,id_taxpaid,amount,Taxes paid deduction,nz,filers,all,8,"$30,000 under $35,000",1100170000.0,21in21id.xls,BP17,68,BP,17 +4115,2021_tab21_id_taxpaid_amount_nz_all,2021,tab21,id_taxpaid,amount,Taxes paid deduction,nz,filers,all,9,"$35,000 under $40,000",1143800000.0,21in21id.xls,BP18,68,BP,18 +4116,2021_tab21_id_taxpaid_amount_nz_all,2021,tab21,id_taxpaid,amount,Taxes paid deduction,nz,filers,all,10,"$40,000 under $45,000",1466305000.0,21in21id.xls,BP19,68,BP,19 +4117,2021_tab21_id_taxpaid_amount_nz_all,2021,tab21,id_taxpaid,amount,Taxes paid deduction,nz,filers,all,11,"$45,000 under $50,000",1819849000.0,21in21id.xls,BP20,68,BP,20 +4118,2021_tab21_id_taxpaid_amount_nz_all,2021,tab21,id_taxpaid,amount,Taxes paid deduction,nz,filers,all,12,"$50,000 under $55,000",1886129000.0,21in21id.xls,BP21,68,BP,21 +4119,2021_tab21_id_taxpaid_amount_nz_all,2021,tab21,id_taxpaid,amount,Taxes paid deduction,nz,filers,all,13,"$55,000 under $60,000",2093207000.0,21in21id.xls,BP22,68,BP,22 +4120,2021_tab21_id_taxpaid_amount_nz_all,2021,tab21,id_taxpaid,amount,Taxes paid deduction,nz,filers,all,14,"$60,000 under $75,000",7407751000.0,21in21id.xls,BP23,68,BP,23 +4121,2021_tab21_id_taxpaid_amount_nz_all,2021,tab21,id_taxpaid,amount,Taxes paid deduction,nz,filers,all,15,"$75,000 under $100,000",14864227000.0,21in21id.xls,BP24,68,BP,24 +4122,2021_tab21_id_taxpaid_amount_nz_all,2021,tab21,id_taxpaid,amount,Taxes paid deduction,nz,filers,all,16,"$100,000 under $200,000",39290771000.0,21in21id.xls,BP25,68,BP,25 +4123,2021_tab21_id_taxpaid_amount_nz_all,2021,tab21,id_taxpaid,amount,Taxes paid deduction,nz,filers,all,17,"$200,000 under $500,000",30133315000.0,21in21id.xls,BP26,68,BP,26 +4124,2021_tab21_id_taxpaid_amount_nz_all,2021,tab21,id_taxpaid,amount,Taxes paid deduction,nz,filers,all,18,"$500,000 under $1,000,000",8552942000.0,21in21id.xls,BP27,68,BP,27 +4125,2021_tab21_id_taxpaid_amount_nz_all,2021,tab21,id_taxpaid,amount,Taxes paid deduction,nz,filers,all,19,"$1,000,000 under $1,500,000",2335291000.0,21in21id.xls,BP28,68,BP,28 +4126,2021_tab21_id_taxpaid_amount_nz_all,2021,tab21,id_taxpaid,amount,Taxes paid deduction,nz,filers,all,20,"$1,500,000 under $2,000,000",1067749000.0,21in21id.xls,BP29,68,BP,29 +4127,2021_tab21_id_taxpaid_amount_nz_all,2021,tab21,id_taxpaid,amount,Taxes paid deduction,nz,filers,all,21,"$2,000,000 under $5,000,000",1755888000.0,21in21id.xls,BP30,68,BP,30 +4128,2021_tab21_id_taxpaid_amount_nz_all,2021,tab21,id_taxpaid,amount,Taxes paid deduction,nz,filers,all,22,"$5,000,000 under $10,000,000",552034000.0,21in21id.xls,BP31,68,BP,31 +4129,2021_tab21_id_taxpaid_amount_nz_all,2021,tab21,id_taxpaid,amount,Taxes paid deduction,nz,filers,all,23,"$10,000,000 or more",682998000.0,21in21id.xls,BP32,68,BP,32 +4130,2021_tab21_id_taxpaid_count_nz_all,2021,tab21,id_taxpaid,count,Taxes paid deduction — number of returns,nz,filers,all,1,"All returns, total",14687846.0,21in21id.xls,BO10,67,BO,10 +4131,2021_tab21_id_taxpaid_count_nz_all,2021,tab21,id_taxpaid,count,Taxes paid deduction — number of returns,nz,filers,all,2,"Under $5,000",72393.0,21in21id.xls,BO11,67,BO,11 +4132,2021_tab21_id_taxpaid_count_nz_all,2021,tab21,id_taxpaid,count,Taxes paid deduction — number of returns,nz,filers,all,3,"$5,000 under $10,000",89055.0,21in21id.xls,BO12,67,BO,12 +4133,2021_tab21_id_taxpaid_count_nz_all,2021,tab21,id_taxpaid,count,Taxes paid deduction — number of returns,nz,filers,all,4,"$10,000 under $15,000",103125.0,21in21id.xls,BO13,67,BO,13 +4134,2021_tab21_id_taxpaid_count_nz_all,2021,tab21,id_taxpaid,count,Taxes paid deduction — number of returns,nz,filers,all,5,"$15,000 under $20,000",149922.0,21in21id.xls,BO14,67,BO,14 +4135,2021_tab21_id_taxpaid_count_nz_all,2021,tab21,id_taxpaid,count,Taxes paid deduction — number of returns,nz,filers,all,6,"$20,000 under $25,000",156017.0,21in21id.xls,BO15,67,BO,15 +4136,2021_tab21_id_taxpaid_count_nz_all,2021,tab21,id_taxpaid,count,Taxes paid deduction — number of returns,nz,filers,all,7,"$25,000 under $30,000",184790.0,21in21id.xls,BO16,67,BO,16 +4137,2021_tab21_id_taxpaid_count_nz_all,2021,tab21,id_taxpaid,count,Taxes paid deduction — number of returns,nz,filers,all,8,"$30,000 under $35,000",222604.0,21in21id.xls,BO17,67,BO,17 +4138,2021_tab21_id_taxpaid_count_nz_all,2021,tab21,id_taxpaid,count,Taxes paid deduction — number of returns,nz,filers,all,9,"$35,000 under $40,000",234031.0,21in21id.xls,BO18,67,BO,18 +4139,2021_tab21_id_taxpaid_count_nz_all,2021,tab21,id_taxpaid,count,Taxes paid deduction — number of returns,nz,filers,all,10,"$40,000 under $45,000",289986.0,21in21id.xls,BO19,67,BO,19 +4140,2021_tab21_id_taxpaid_count_nz_all,2021,tab21,id_taxpaid,count,Taxes paid deduction — number of returns,nz,filers,all,11,"$45,000 under $50,000",314349.0,21in21id.xls,BO20,67,BO,20 +4141,2021_tab21_id_taxpaid_count_nz_all,2021,tab21,id_taxpaid,count,Taxes paid deduction — number of returns,nz,filers,all,12,"$50,000 under $55,000",337954.0,21in21id.xls,BO21,67,BO,21 +4142,2021_tab21_id_taxpaid_count_nz_all,2021,tab21,id_taxpaid,count,Taxes paid deduction — number of returns,nz,filers,all,13,"$55,000 under $60,000",349713.0,21in21id.xls,BO22,67,BO,22 +4143,2021_tab21_id_taxpaid_count_nz_all,2021,tab21,id_taxpaid,count,Taxes paid deduction — number of returns,nz,filers,all,14,"$60,000 under $75,000",1117975.0,21in21id.xls,BO23,67,BO,23 +4144,2021_tab21_id_taxpaid_count_nz_all,2021,tab21,id_taxpaid,count,Taxes paid deduction — number of returns,nz,filers,all,15,"$75,000 under $100,000",1973087.0,21in21id.xls,BO24,67,BO,24 +4145,2021_tab21_id_taxpaid_count_nz_all,2021,tab21,id_taxpaid,count,Taxes paid deduction — number of returns,nz,filers,all,16,"$100,000 under $200,000",4488763.0,21in21id.xls,BO25,67,BO,25 +4146,2021_tab21_id_taxpaid_count_nz_all,2021,tab21,id_taxpaid,count,Taxes paid deduction — number of returns,nz,filers,all,17,"$200,000 under $500,000",3125969.0,21in21id.xls,BO26,67,BO,26 +4147,2021_tab21_id_taxpaid_count_nz_all,2021,tab21,id_taxpaid,count,Taxes paid deduction — number of returns,nz,filers,all,18,"$500,000 under $1,000,000",871926.0,21in21id.xls,BO27,67,BO,27 +4148,2021_tab21_id_taxpaid_count_nz_all,2021,tab21,id_taxpaid,count,Taxes paid deduction — number of returns,nz,filers,all,19,"$1,000,000 under $1,500,000",236528.0,21in21id.xls,BO28,67,BO,28 +4149,2021_tab21_id_taxpaid_count_nz_all,2021,tab21,id_taxpaid,count,Taxes paid deduction — number of returns,nz,filers,all,20,"$1,500,000 under $2,000,000",107271.0,21in21id.xls,BO29,67,BO,29 +4150,2021_tab21_id_taxpaid_count_nz_all,2021,tab21,id_taxpaid,count,Taxes paid deduction — number of returns,nz,filers,all,21,"$2,000,000 under $5,000,000",171946.0,21in21id.xls,BO30,67,BO,30 +4151,2021_tab21_id_taxpaid_count_nz_all,2021,tab21,id_taxpaid,count,Taxes paid deduction — number of returns,nz,filers,all,22,"$5,000,000 under $10,000,000",50927.0,21in21id.xls,BO31,67,BO,31 +4152,2021_tab21_id_taxpaid_count_nz_all,2021,tab21,id_taxpaid,count,Taxes paid deduction — number of returns,nz,filers,all,23,"$10,000,000 or more",39516.0,21in21id.xls,BO32,67,BO,32 +4153,2022_tab11_agi_amount_all_all,2022,tab11,agi,amount,Adjusted gross income,all,filers,all,1,All returns,14833956956000.0,22in11si.xls,D10,4,D,10 +4154,2022_tab11_agi_amount_all_all,2022,tab11,agi,amount,Adjusted gross income,all,filers,all,2,No adjusted gross income,-164160281000.0,22in11si.xls,D11,4,D,11 +4155,2022_tab11_agi_amount_all_all,2022,tab11,agi,amount,Adjusted gross income,all,filers,all,3,"$1 under $5,000",19538869000.0,22in11si.xls,D12,4,D,12 +4156,2022_tab11_agi_amount_all_all,2022,tab11,agi,amount,Adjusted gross income,all,filers,all,4,"$5,000 under $10,000",66070756000.0,22in11si.xls,D13,4,D,13 +4157,2022_tab11_agi_amount_all_all,2022,tab11,agi,amount,Adjusted gross income,all,filers,all,5,"$10,000 under $15,000",120502825000.0,22in11si.xls,D14,4,D,14 +4158,2022_tab11_agi_amount_all_all,2022,tab11,agi,amount,Adjusted gross income,all,filers,all,6,"$15,000 under $20,000",157738693000.0,22in11si.xls,D15,4,D,15 +4159,2022_tab11_agi_amount_all_all,2022,tab11,agi,amount,Adjusted gross income,all,filers,all,7,"$20,000 under $25,000",180311082000.0,22in11si.xls,D16,4,D,16 +4160,2022_tab11_agi_amount_all_all,2022,tab11,agi,amount,Adjusted gross income,all,filers,all,8,"$25,000 under $30,000",219958083000.0,22in11si.xls,D17,4,D,17 +4161,2022_tab11_agi_amount_all_all,2022,tab11,agi,amount,Adjusted gross income,all,filers,all,9,"$30,000 under $40,000",550490150000.0,22in11si.xls,D18,4,D,18 +4162,2022_tab11_agi_amount_all_all,2022,tab11,agi,amount,Adjusted gross income,all,filers,all,10,"$40,000 under $50,000",593955496000.0,22in11si.xls,D19,4,D,19 +4163,2022_tab11_agi_amount_all_all,2022,tab11,agi,amount,Adjusted gross income,all,filers,all,11,"$50,000 under $75,000",1466486055000.0,22in11si.xls,D20,4,D,20 +4164,2022_tab11_agi_amount_all_all,2022,tab11,agi,amount,Adjusted gross income,all,filers,all,12,"$75,000 under $100,000",1315619561000.0,22in11si.xls,D21,4,D,21 +4165,2022_tab11_agi_amount_all_all,2022,tab11,agi,amount,Adjusted gross income,all,filers,all,13,"$100,000 under $200,000",3567047571000.0,22in11si.xls,D22,4,D,22 +4166,2022_tab11_agi_amount_all_all,2022,tab11,agi,amount,Adjusted gross income,all,filers,all,14,"$200,000 under $500,000",2891064828000.0,22in11si.xls,D23,4,D,23 +4167,2022_tab11_agi_amount_all_all,2022,tab11,agi,amount,Adjusted gross income,all,filers,all,15,"$500,000 under $1,000,000",1124299469000.0,22in11si.xls,D24,4,D,24 +4168,2022_tab11_agi_amount_all_all,2022,tab11,agi,amount,Adjusted gross income,all,filers,all,16,"$1,000,000 under $1,500,000",435177502000.0,22in11si.xls,D25,4,D,25 +4169,2022_tab11_agi_amount_all_all,2022,tab11,agi,amount,Adjusted gross income,all,filers,all,17,"$1,500,000 under $2,000,000",254476785000.0,22in11si.xls,D26,4,D,26 +4170,2022_tab11_agi_amount_all_all,2022,tab11,agi,amount,Adjusted gross income,all,filers,all,18,"$2,000,000 under $5,000,000",621044404000.0,22in11si.xls,D27,4,D,27 +4171,2022_tab11_agi_amount_all_all,2022,tab11,agi,amount,Adjusted gross income,all,filers,all,19,"$5,000,000 under $10,000,000",362815724000.0,22in11si.xls,D28,4,D,28 +4172,2022_tab11_agi_amount_all_all,2022,tab11,agi,amount,Adjusted gross income,all,filers,all,20,"$10,000,000 or more",1051519384000.0,22in11si.xls,D29,4,D,29 +4173,2022_tab11_agi_count_all_all,2022,tab11,agi,count,Number of returns,all,filers,all,1,All returns,161336659.0,22in11si.xls,B10,2,B,10 +4174,2022_tab11_agi_count_all_all,2022,tab11,agi,count,Number of returns,all,filers,all,2,No adjusted gross income,3254225.0,22in11si.xls,B11,2,B,11 +4175,2022_tab11_agi_count_all_all,2022,tab11,agi,count,Number of returns,all,filers,all,3,"$1 under $5,000",8195783.0,22in11si.xls,B12,2,B,12 +4176,2022_tab11_agi_count_all_all,2022,tab11,agi,count,Number of returns,all,filers,all,4,"$5,000 under $10,000",8747727.0,22in11si.xls,B13,2,B,13 +4177,2022_tab11_agi_count_all_all,2022,tab11,agi,count,Number of returns,all,filers,all,5,"$10,000 under $15,000",9642322.0,22in11si.xls,B14,2,B,14 +4178,2022_tab11_agi_count_all_all,2022,tab11,agi,count,Number of returns,all,filers,all,6,"$15,000 under $20,000",9058382.0,22in11si.xls,B15,2,B,15 +4179,2022_tab11_agi_count_all_all,2022,tab11,agi,count,Number of returns,all,filers,all,7,"$20,000 under $25,000",8035277.0,22in11si.xls,B16,2,B,16 +4180,2022_tab11_agi_count_all_all,2022,tab11,agi,count,Number of returns,all,filers,all,8,"$25,000 under $30,000",8005289.0,22in11si.xls,B17,2,B,17 +4181,2022_tab11_agi_count_all_all,2022,tab11,agi,count,Number of returns,all,filers,all,9,"$30,000 under $40,000",15771561.0,22in11si.xls,B18,2,B,18 +4182,2022_tab11_agi_count_all_all,2022,tab11,agi,count,Number of returns,all,filers,all,10,"$40,000 under $50,000",13255063.0,22in11si.xls,B19,2,B,19 +4183,2022_tab11_agi_count_all_all,2022,tab11,agi,count,Number of returns,all,filers,all,11,"$50,000 under $75,000",23805797.0,22in11si.xls,B20,2,B,20 +4184,2022_tab11_agi_count_all_all,2022,tab11,agi,count,Number of returns,all,filers,all,12,"$75,000 under $100,000",15181035.0,22in11si.xls,B21,2,B,21 +4185,2022_tab11_agi_count_all_all,2022,tab11,agi,count,Number of returns,all,filers,all,13,"$100,000 under $200,000",25887136.0,22in11si.xls,B22,2,B,22 +4186,2022_tab11_agi_count_all_all,2022,tab11,agi,count,Number of returns,all,filers,all,14,"$200,000 under $500,000",10017626.0,22in11si.xls,B23,2,B,23 +4187,2022_tab11_agi_count_all_all,2022,tab11,agi,count,Number of returns,all,filers,all,15,"$500,000 under $1,000,000",1674608.0,22in11si.xls,B24,2,B,24 +4188,2022_tab11_agi_count_all_all,2022,tab11,agi,count,Number of returns,all,filers,all,16,"$1,000,000 under $1,500,000",360882.0,22in11si.xls,B25,2,B,25 +4189,2022_tab11_agi_count_all_all,2022,tab11,agi,count,Number of returns,all,filers,all,17,"$1,500,000 under $2,000,000",148222.0,22in11si.xls,B26,2,B,26 +4190,2022_tab11_agi_count_all_all,2022,tab11,agi,count,Number of returns,all,filers,all,18,"$2,000,000 under $5,000,000",208129.0,22in11si.xls,B27,2,B,27 +4191,2022_tab11_agi_count_all_all,2022,tab11,agi,count,Number of returns,all,filers,all,19,"$5,000,000 under $10,000,000",52968.0,22in11si.xls,B28,2,B,28 +4192,2022_tab11_agi_count_all_all,2022,tab11,agi,count,Number of returns,all,filers,all,20,"$10,000,000 or more",34630.0,22in11si.xls,B29,2,B,29 +4193,2022_tab12_agi_amount_all_all,2022,tab12,agi,amount,Adjusted gross income,all,filers,all,1,"All returns, total",14833956956000.0,22in12ms.xls,C9,3,C,9 +4194,2022_tab12_agi_amount_all_all,2022,tab12,agi,amount,Adjusted gross income,all,filers,all,2,No adjusted gross income (includes deficits),-164160281000.0,22in12ms.xls,C10,3,C,10 +4195,2022_tab12_agi_amount_all_all,2022,tab12,agi,amount,Adjusted gross income,all,filers,all,3,"$1 under $5,000",19538869000.0,22in12ms.xls,C11,3,C,11 +4196,2022_tab12_agi_amount_all_all,2022,tab12,agi,amount,Adjusted gross income,all,filers,all,4,"$5,000 under $10,000",66070756000.0,22in12ms.xls,C12,3,C,12 +4197,2022_tab12_agi_amount_all_all,2022,tab12,agi,amount,Adjusted gross income,all,filers,all,5,"$10,000 under $15,000",120502825000.0,22in12ms.xls,C13,3,C,13 +4198,2022_tab12_agi_amount_all_all,2022,tab12,agi,amount,Adjusted gross income,all,filers,all,6,"$15,000 under $20,000",157738693000.0,22in12ms.xls,C14,3,C,14 +4199,2022_tab12_agi_amount_all_all,2022,tab12,agi,amount,Adjusted gross income,all,filers,all,7,"$20,000 under $25,000",180311082000.0,22in12ms.xls,C15,3,C,15 +4200,2022_tab12_agi_amount_all_all,2022,tab12,agi,amount,Adjusted gross income,all,filers,all,8,"$25,000 under $30,000",219958083000.0,22in12ms.xls,C16,3,C,16 +4201,2022_tab12_agi_amount_all_all,2022,tab12,agi,amount,Adjusted gross income,all,filers,all,9,"$30,000 under $40,000",550490149000.0,22in12ms.xls,C17,3,C,17 +4202,2022_tab12_agi_amount_all_all,2022,tab12,agi,amount,Adjusted gross income,all,filers,all,10,"$40,000 under $50,000",593955496000.0,22in12ms.xls,C18,3,C,18 +4203,2022_tab12_agi_amount_all_all,2022,tab12,agi,amount,Adjusted gross income,all,filers,all,11,"$50,000 under $75,000",1466486055000.0,22in12ms.xls,C19,3,C,19 +4204,2022_tab12_agi_amount_all_all,2022,tab12,agi,amount,Adjusted gross income,all,filers,all,12,"$75,000 under $100,000",1315619561000.0,22in12ms.xls,C20,3,C,20 +4205,2022_tab12_agi_amount_all_all,2022,tab12,agi,amount,Adjusted gross income,all,filers,all,13,"$100,000 under $200,000",3567047571000.0,22in12ms.xls,C21,3,C,21 +4206,2022_tab12_agi_amount_all_all,2022,tab12,agi,amount,Adjusted gross income,all,filers,all,14,"$200,000 under $500,000",2891064828000.0,22in12ms.xls,C22,3,C,22 +4207,2022_tab12_agi_amount_all_all,2022,tab12,agi,amount,Adjusted gross income,all,filers,all,15,"$500,000 under $1,000,000",1124299469000.0,22in12ms.xls,C23,3,C,23 +4208,2022_tab12_agi_amount_all_all,2022,tab12,agi,amount,Adjusted gross income,all,filers,all,16,"$1,000,000 under $1,500,000",435177502000.0,22in12ms.xls,C24,3,C,24 +4209,2022_tab12_agi_amount_all_all,2022,tab12,agi,amount,Adjusted gross income,all,filers,all,17,"$1,500,000 under $2,000,000",254476785000.0,22in12ms.xls,C25,3,C,25 +4210,2022_tab12_agi_amount_all_all,2022,tab12,agi,amount,Adjusted gross income,all,filers,all,18,"$2,000,000 under $5,000,000",621044404000.0,22in12ms.xls,C26,3,C,26 +4211,2022_tab12_agi_amount_all_all,2022,tab12,agi,amount,Adjusted gross income,all,filers,all,19,"$5,000,000 under $10,000,000",362815724000.0,22in12ms.xls,C27,3,C,27 +4212,2022_tab12_agi_amount_all_all,2022,tab12,agi,amount,Adjusted gross income,all,filers,all,20,"$10,000,000 or more",1051519384000.0,22in12ms.xls,C28,3,C,28 +4213,2022_tab12_agi_amount_all_hoh,2022,tab12,agi,amount,Adjusted gross income — head of household,all,filers,hoh,1,"All returns, total",1097074146000.0,22in12ms.xls,AM9,39,AM,9 +4214,2022_tab12_agi_amount_all_hoh,2022,tab12,agi,amount,Adjusted gross income — head of household,all,filers,hoh,2,No adjusted gross income (includes deficits),-4930197000.0,22in12ms.xls,AM10,39,AM,10 +4215,2022_tab12_agi_amount_all_hoh,2022,tab12,agi,amount,Adjusted gross income — head of household,all,filers,hoh,3,"$1 under $5,000",1228387000.0,22in12ms.xls,AM11,39,AM,11 +4216,2022_tab12_agi_amount_all_hoh,2022,tab12,agi,amount,Adjusted gross income — head of household,all,filers,hoh,4,"$5,000 under $10,000",6293814000.0,22in12ms.xls,AM12,39,AM,12 +4217,2022_tab12_agi_amount_all_hoh,2022,tab12,agi,amount,Adjusted gross income — head of household,all,filers,hoh,5,"$10,000 under $15,000",21033971000.0,22in12ms.xls,AM13,39,AM,13 +4218,2022_tab12_agi_amount_all_hoh,2022,tab12,agi,amount,Adjusted gross income — head of household,all,filers,hoh,6,"$15,000 under $20,000",35834809000.0,22in12ms.xls,AM14,39,AM,14 +4219,2022_tab12_agi_amount_all_hoh,2022,tab12,agi,amount,Adjusted gross income — head of household,all,filers,hoh,7,"$20,000 under $25,000",37385369000.0,22in12ms.xls,AM15,39,AM,15 +4220,2022_tab12_agi_amount_all_hoh,2022,tab12,agi,amount,Adjusted gross income — head of household,all,filers,hoh,8,"$25,000 under $30,000",46606455000.0,22in12ms.xls,AM16,39,AM,16 +4221,2022_tab12_agi_amount_all_hoh,2022,tab12,agi,amount,Adjusted gross income — head of household,all,filers,hoh,9,"$30,000 under $40,000",118348139000.0,22in12ms.xls,AM17,39,AM,17 +4222,2022_tab12_agi_amount_all_hoh,2022,tab12,agi,amount,Adjusted gross income — head of household,all,filers,hoh,10,"$40,000 under $50,000",109641166000.0,22in12ms.xls,AM18,39,AM,18 +4223,2022_tab12_agi_amount_all_hoh,2022,tab12,agi,amount,Adjusted gross income — head of household,all,filers,hoh,11,"$50,000 under $75,000",212385442000.0,22in12ms.xls,AM19,39,AM,19 +4224,2022_tab12_agi_amount_all_hoh,2022,tab12,agi,amount,Adjusted gross income — head of household,all,filers,hoh,12,"$75,000 under $100,000",134708572000.0,22in12ms.xls,AM20,39,AM,20 +4225,2022_tab12_agi_amount_all_hoh,2022,tab12,agi,amount,Adjusted gross income — head of household,all,filers,hoh,13,"$100,000 under $200,000",199598735000.0,22in12ms.xls,AM21,39,AM,21 +4226,2022_tab12_agi_amount_all_hoh,2022,tab12,agi,amount,Adjusted gross income — head of household,all,filers,hoh,14,"$200,000 under $500,000",78908442000.0,22in12ms.xls,AM22,39,AM,22 +4227,2022_tab12_agi_amount_all_hoh,2022,tab12,agi,amount,Adjusted gross income — head of household,all,filers,hoh,15,"$500,000 under $1,000,000",30309857000.0,22in12ms.xls,AM23,39,AM,23 +4228,2022_tab12_agi_amount_all_hoh,2022,tab12,agi,amount,Adjusted gross income — head of household,all,filers,hoh,16,"$1,000,000 under $1,500,000",11099083000.0,22in12ms.xls,AM24,39,AM,24 +4229,2022_tab12_agi_amount_all_hoh,2022,tab12,agi,amount,Adjusted gross income — head of household,all,filers,hoh,17,"$1,500,000 under $2,000,000",6128994000.0,22in12ms.xls,AM25,39,AM,25 +4230,2022_tab12_agi_amount_all_hoh,2022,tab12,agi,amount,Adjusted gross income — head of household,all,filers,hoh,18,"$2,000,000 under $5,000,000",14984657000.0,22in12ms.xls,AM26,39,AM,26 +4231,2022_tab12_agi_amount_all_hoh,2022,tab12,agi,amount,Adjusted gross income — head of household,all,filers,hoh,19,"$5,000,000 under $10,000,000",8861342000.0,22in12ms.xls,AM27,39,AM,27 +4232,2022_tab12_agi_amount_all_hoh,2022,tab12,agi,amount,Adjusted gross income — head of household,all,filers,hoh,20,"$10,000,000 or more",28647107000.0,22in12ms.xls,AM28,39,AM,28 +4233,2022_tab12_agi_amount_all_mfjss,2022,tab12,agi,amount,Adjusted gross income — married filing jointly/SS,all,filers,mfjss,1,"All returns, total",9329885992000.0,22in12ms.xls,O9,15,O,9 +4234,2022_tab12_agi_amount_all_mfjss,2022,tab12,agi,amount,Adjusted gross income — married filing jointly/SS,all,filers,mfjss,2,No adjusted gross income (includes deficits),-97857692000.0,22in12ms.xls,O10,15,O,10 +4235,2022_tab12_agi_amount_all_mfjss,2022,tab12,agi,amount,Adjusted gross income — married filing jointly/SS,all,filers,mfjss,3,"$1 under $5,000",1635886000.0,22in12ms.xls,O11,15,O,11 +4236,2022_tab12_agi_amount_all_mfjss,2022,tab12,agi,amount,Adjusted gross income — married filing jointly/SS,all,filers,mfjss,4,"$5,000 under $10,000",5663247000.0,22in12ms.xls,O12,15,O,12 +4237,2022_tab12_agi_amount_all_mfjss,2022,tab12,agi,amount,Adjusted gross income — married filing jointly/SS,all,filers,mfjss,5,"$10,000 under $15,000",12018239000.0,22in12ms.xls,O13,15,O,13 +4238,2022_tab12_agi_amount_all_mfjss,2022,tab12,agi,amount,Adjusted gross income — married filing jointly/SS,all,filers,mfjss,6,"$15,000 under $20,000",18659337000.0,22in12ms.xls,O14,15,O,14 +4239,2022_tab12_agi_amount_all_mfjss,2022,tab12,agi,amount,Adjusted gross income — married filing jointly/SS,all,filers,mfjss,7,"$20,000 under $25,000",25700695000.0,22in12ms.xls,O15,15,O,15 +4240,2022_tab12_agi_amount_all_mfjss,2022,tab12,agi,amount,Adjusted gross income — married filing jointly/SS,all,filers,mfjss,8,"$25,000 under $30,000",35469300000.0,22in12ms.xls,O16,15,O,16 +4241,2022_tab12_agi_amount_all_mfjss,2022,tab12,agi,amount,Adjusted gross income — married filing jointly/SS,all,filers,mfjss,9,"$30,000 under $40,000",94270098000.0,22in12ms.xls,O17,15,O,17 +4242,2022_tab12_agi_amount_all_mfjss,2022,tab12,agi,amount,Adjusted gross income — married filing jointly/SS,all,filers,mfjss,10,"$40,000 under $50,000",122225672000.0,22in12ms.xls,O18,15,O,18 +4243,2022_tab12_agi_amount_all_mfjss,2022,tab12,agi,amount,Adjusted gross income — married filing jointly/SS,all,filers,mfjss,11,"$50,000 under $75,000",446675368000.0,22in12ms.xls,O19,15,O,19 +4244,2022_tab12_agi_amount_all_mfjss,2022,tab12,agi,amount,Adjusted gross income — married filing jointly/SS,all,filers,mfjss,12,"$75,000 under $100,000",641738206000.0,22in12ms.xls,O20,15,O,20 +4245,2022_tab12_agi_amount_all_mfjss,2022,tab12,agi,amount,Adjusted gross income — married filing jointly/SS,all,filers,mfjss,13,"$100,000 under $200,000",2538317587000.0,22in12ms.xls,O21,15,O,21 +4246,2022_tab12_agi_amount_all_mfjss,2022,tab12,agi,amount,Adjusted gross income — married filing jointly/SS,all,filers,mfjss,14,"$200,000 under $500,000",2377873755000.0,22in12ms.xls,O22,15,O,22 +4247,2022_tab12_agi_amount_all_mfjss,2022,tab12,agi,amount,Adjusted gross income — married filing jointly/SS,all,filers,mfjss,15,"$500,000 under $1,000,000",945135321000.0,22in12ms.xls,O23,15,O,23 +4248,2022_tab12_agi_amount_all_mfjss,2022,tab12,agi,amount,Adjusted gross income — married filing jointly/SS,all,filers,mfjss,16,"$1,000,000 under $1,500,000",367071380000.0,22in12ms.xls,O24,15,O,24 +4249,2022_tab12_agi_amount_all_mfjss,2022,tab12,agi,amount,Adjusted gross income — married filing jointly/SS,all,filers,mfjss,17,"$1,500,000 under $2,000,000",212759924000.0,22in12ms.xls,O25,15,O,25 +4250,2022_tab12_agi_amount_all_mfjss,2022,tab12,agi,amount,Adjusted gross income — married filing jointly/SS,all,filers,mfjss,18,"$2,000,000 under $5,000,000",508979071000.0,22in12ms.xls,O26,15,O,26 +4251,2022_tab12_agi_amount_all_mfjss,2022,tab12,agi,amount,Adjusted gross income — married filing jointly/SS,all,filers,mfjss,19,"$5,000,000 under $10,000,000",295179490000.0,22in12ms.xls,O27,15,O,27 +4252,2022_tab12_agi_amount_all_mfjss,2022,tab12,agi,amount,Adjusted gross income — married filing jointly/SS,all,filers,mfjss,20,"$10,000,000 or more",778371107000.0,22in12ms.xls,O28,15,O,28 +4253,2022_tab12_agi_amount_all_mfs,2022,tab12,agi,amount,Adjusted gross income — married filing separately,all,filers,mfs,1,"All returns, total",365129451000.0,22in12ms.xls,AA9,27,AA,9 +4254,2022_tab12_agi_amount_all_mfs,2022,tab12,agi,amount,Adjusted gross income — married filing separately,all,filers,mfs,2,No adjusted gross income (includes deficits),-9626067000.0,22in12ms.xls,AA10,27,AA,10 +4255,2022_tab12_agi_amount_all_mfs,2022,tab12,agi,amount,Adjusted gross income — married filing separately,all,filers,mfs,3,"$1 under $5,000",266908000.0,22in12ms.xls,AA11,27,AA,11 +4256,2022_tab12_agi_amount_all_mfs,2022,tab12,agi,amount,Adjusted gross income — married filing separately,all,filers,mfs,4,"$5,000 under $10,000",1133437000.0,22in12ms.xls,AA12,27,AA,12 +4257,2022_tab12_agi_amount_all_mfs,2022,tab12,agi,amount,Adjusted gross income — married filing separately,all,filers,mfs,5,"$10,000 under $15,000",2034607000.0,22in12ms.xls,AA13,27,AA,13 +4258,2022_tab12_agi_amount_all_mfs,2022,tab12,agi,amount,Adjusted gross income — married filing separately,all,filers,mfs,6,"$15,000 under $20,000",2564977000.0,22in12ms.xls,AA14,27,AA,14 +4259,2022_tab12_agi_amount_all_mfs,2022,tab12,agi,amount,Adjusted gross income — married filing separately,all,filers,mfs,7,"$20,000 under $25,000",4152375000.0,22in12ms.xls,AA15,27,AA,15 +4260,2022_tab12_agi_amount_all_mfs,2022,tab12,agi,amount,Adjusted gross income — married filing separately,all,filers,mfs,8,"$25,000 under $30,000",5936278000.0,22in12ms.xls,AA16,27,AA,16 +4261,2022_tab12_agi_amount_all_mfs,2022,tab12,agi,amount,Adjusted gross income — married filing separately,all,filers,mfs,9,"$30,000 under $40,000",15648673000.0,22in12ms.xls,AA17,27,AA,17 +4262,2022_tab12_agi_amount_all_mfs,2022,tab12,agi,amount,Adjusted gross income — married filing separately,all,filers,mfs,10,"$40,000 under $50,000",23642616000.0,22in12ms.xls,AA18,27,AA,18 +4263,2022_tab12_agi_amount_all_mfs,2022,tab12,agi,amount,Adjusted gross income — married filing separately,all,filers,mfs,11,"$50,000 under $75,000",53764184000.0,22in12ms.xls,AA19,27,AA,19 +4264,2022_tab12_agi_amount_all_mfs,2022,tab12,agi,amount,Adjusted gross income — married filing separately,all,filers,mfs,12,"$75,000 under $100,000",35334473000.0,22in12ms.xls,AA20,27,AA,20 +4265,2022_tab12_agi_amount_all_mfs,2022,tab12,agi,amount,Adjusted gross income — married filing separately,all,filers,mfs,13,"$100,000 under $200,000",60341658000.0,22in12ms.xls,AA21,27,AA,21 +4266,2022_tab12_agi_amount_all_mfs,2022,tab12,agi,amount,Adjusted gross income — married filing separately,all,filers,mfs,14,"$200,000 under $500,000",32638692000.0,22in12ms.xls,AA22,27,AA,22 +4267,2022_tab12_agi_amount_all_mfs,2022,tab12,agi,amount,Adjusted gross income — married filing separately,all,filers,mfs,15,"$500,000 under $1,000,000",14725478000.0,22in12ms.xls,AA23,27,AA,23 +4268,2022_tab12_agi_amount_all_mfs,2022,tab12,agi,amount,Adjusted gross income — married filing separately,all,filers,mfs,16,"$1,000,000 under $1,500,000",7498985000.0,22in12ms.xls,AA24,27,AA,24 +4269,2022_tab12_agi_amount_all_mfs,2022,tab12,agi,amount,Adjusted gross income — married filing separately,all,filers,mfs,17,"$1,500,000 under $2,000,000",4847219000.0,22in12ms.xls,AA25,27,AA,25 +4270,2022_tab12_agi_amount_all_mfs,2022,tab12,agi,amount,Adjusted gross income — married filing separately,all,filers,mfs,18,"$2,000,000 under $5,000,000",15401979000.0,22in12ms.xls,AA26,27,AA,26 +4271,2022_tab12_agi_amount_all_mfs,2022,tab12,agi,amount,Adjusted gross income — married filing separately,all,filers,mfs,19,"$5,000,000 under $10,000,000",11544457000.0,22in12ms.xls,AA27,27,AA,27 +4272,2022_tab12_agi_amount_all_mfs,2022,tab12,agi,amount,Adjusted gross income — married filing separately,all,filers,mfs,20,"$10,000,000 or more",83278521000.0,22in12ms.xls,AA28,27,AA,28 +4273,2022_tab12_agi_amount_all_single,2022,tab12,agi,amount,Adjusted gross income — single,all,filers,single,1,"All returns, total",4041867367000.0,22in12ms.xls,AY9,51,AY,9 +4274,2022_tab12_agi_amount_all_single,2022,tab12,agi,amount,Adjusted gross income — single,all,filers,single,2,No adjusted gross income (includes deficits),-51746325000.0,22in12ms.xls,AY10,51,AY,10 +4275,2022_tab12_agi_amount_all_single,2022,tab12,agi,amount,Adjusted gross income — single,all,filers,single,3,"$1 under $5,000",16407688000.0,22in12ms.xls,AY11,51,AY,11 +4276,2022_tab12_agi_amount_all_single,2022,tab12,agi,amount,Adjusted gross income — single,all,filers,single,4,"$5,000 under $10,000",52980258000.0,22in12ms.xls,AY12,51,AY,12 +4277,2022_tab12_agi_amount_all_single,2022,tab12,agi,amount,Adjusted gross income — single,all,filers,single,5,"$10,000 under $15,000",85416008000.0,22in12ms.xls,AY13,51,AY,13 +4278,2022_tab12_agi_amount_all_single,2022,tab12,agi,amount,Adjusted gross income — single,all,filers,single,6,"$15,000 under $20,000",100679569000.0,22in12ms.xls,AY14,51,AY,14 +4279,2022_tab12_agi_amount_all_single,2022,tab12,agi,amount,Adjusted gross income — single,all,filers,single,7,"$20,000 under $25,000",113072643000.0,22in12ms.xls,AY15,51,AY,15 +4280,2022_tab12_agi_amount_all_single,2022,tab12,agi,amount,Adjusted gross income — single,all,filers,single,8,"$25,000 under $30,000",131946049000.0,22in12ms.xls,AY16,51,AY,16 +4281,2022_tab12_agi_amount_all_single,2022,tab12,agi,amount,Adjusted gross income — single,all,filers,single,9,"$30,000 under $40,000",322223239000.0,22in12ms.xls,AY17,51,AY,17 +4282,2022_tab12_agi_amount_all_single,2022,tab12,agi,amount,Adjusted gross income — single,all,filers,single,10,"$40,000 under $50,000",338446043000.0,22in12ms.xls,AY18,51,AY,18 +4283,2022_tab12_agi_amount_all_single,2022,tab12,agi,amount,Adjusted gross income — single,all,filers,single,11,"$50,000 under $75,000",753661060000.0,22in12ms.xls,AY19,51,AY,19 +4284,2022_tab12_agi_amount_all_single,2022,tab12,agi,amount,Adjusted gross income — single,all,filers,single,12,"$75,000 under $100,000",503838311000.0,22in12ms.xls,AY20,51,AY,20 +4285,2022_tab12_agi_amount_all_single,2022,tab12,agi,amount,Adjusted gross income — single,all,filers,single,13,"$100,000 under $200,000",768789591000.0,22in12ms.xls,AY21,51,AY,21 +4286,2022_tab12_agi_amount_all_single,2022,tab12,agi,amount,Adjusted gross income — single,all,filers,single,14,"$200,000 under $500,000",401643939000.0,22in12ms.xls,AY22,51,AY,22 +4287,2022_tab12_agi_amount_all_single,2022,tab12,agi,amount,Adjusted gross income — single,all,filers,single,15,"$500,000 under $1,000,000",134128813000.0,22in12ms.xls,AY23,51,AY,23 +4288,2022_tab12_agi_amount_all_single,2022,tab12,agi,amount,Adjusted gross income — single,all,filers,single,16,"$1,000,000 under $1,500,000",49508054000.0,22in12ms.xls,AY24,51,AY,24 +4289,2022_tab12_agi_amount_all_single,2022,tab12,agi,amount,Adjusted gross income — single,all,filers,single,17,"$1,500,000 under $2,000,000",30740648000.0,22in12ms.xls,AY25,51,AY,25 +4290,2022_tab12_agi_amount_all_single,2022,tab12,agi,amount,Adjusted gross income — single,all,filers,single,18,"$2,000,000 under $5,000,000",81678697000.0,22in12ms.xls,AY26,51,AY,26 +4291,2022_tab12_agi_amount_all_single,2022,tab12,agi,amount,Adjusted gross income — single,all,filers,single,19,"$5,000,000 under $10,000,000",47230435000.0,22in12ms.xls,AY27,51,AY,27 +4292,2022_tab12_agi_amount_all_single,2022,tab12,agi,amount,Adjusted gross income — single,all,filers,single,20,"$10,000,000 or more",161222649000.0,22in12ms.xls,AY28,51,AY,28 +4293,2022_tab12_agi_count_all_all,2022,tab12,agi,count,Number of returns,all,filers,all,1,"All returns, total",161336659.0,22in12ms.xls,B9,2,B,9 +4294,2022_tab12_agi_count_all_all,2022,tab12,agi,count,Number of returns,all,filers,all,2,No adjusted gross income (includes deficits),3254225.0,22in12ms.xls,B10,2,B,10 +4295,2022_tab12_agi_count_all_all,2022,tab12,agi,count,Number of returns,all,filers,all,3,"$1 under $5,000",8195781.0,22in12ms.xls,B11,2,B,11 +4296,2022_tab12_agi_count_all_all,2022,tab12,agi,count,Number of returns,all,filers,all,4,"$5,000 under $10,000",8747727.0,22in12ms.xls,B12,2,B,12 +4297,2022_tab12_agi_count_all_all,2022,tab12,agi,count,Number of returns,all,filers,all,5,"$10,000 under $15,000",9642321.0,22in12ms.xls,B13,2,B,13 +4298,2022_tab12_agi_count_all_all,2022,tab12,agi,count,Number of returns,all,filers,all,6,"$15,000 under $20,000",9058382.0,22in12ms.xls,B14,2,B,14 +4299,2022_tab12_agi_count_all_all,2022,tab12,agi,count,Number of returns,all,filers,all,7,"$20,000 under $25,000",8035277.0,22in12ms.xls,B15,2,B,15 +4300,2022_tab12_agi_count_all_all,2022,tab12,agi,count,Number of returns,all,filers,all,8,"$25,000 under $30,000",8005289.0,22in12ms.xls,B16,2,B,16 +4301,2022_tab12_agi_count_all_all,2022,tab12,agi,count,Number of returns,all,filers,all,9,"$30,000 under $40,000",15771561.0,22in12ms.xls,B17,2,B,17 +4302,2022_tab12_agi_count_all_all,2022,tab12,agi,count,Number of returns,all,filers,all,10,"$40,000 under $50,000",13255063.0,22in12ms.xls,B18,2,B,18 +4303,2022_tab12_agi_count_all_all,2022,tab12,agi,count,Number of returns,all,filers,all,11,"$50,000 under $75,000",23805797.0,22in12ms.xls,B19,2,B,19 +4304,2022_tab12_agi_count_all_all,2022,tab12,agi,count,Number of returns,all,filers,all,12,"$75,000 under $100,000",15181035.0,22in12ms.xls,B20,2,B,20 +4305,2022_tab12_agi_count_all_all,2022,tab12,agi,count,Number of returns,all,filers,all,13,"$100,000 under $200,000",25887136.0,22in12ms.xls,B21,2,B,21 +4306,2022_tab12_agi_count_all_all,2022,tab12,agi,count,Number of returns,all,filers,all,14,"$200,000 under $500,000",10017626.0,22in12ms.xls,B22,2,B,22 +4307,2022_tab12_agi_count_all_all,2022,tab12,agi,count,Number of returns,all,filers,all,15,"$500,000 under $1,000,000",1674608.0,22in12ms.xls,B23,2,B,23 +4308,2022_tab12_agi_count_all_all,2022,tab12,agi,count,Number of returns,all,filers,all,16,"$1,000,000 under $1,500,000",360882.0,22in12ms.xls,B24,2,B,24 +4309,2022_tab12_agi_count_all_all,2022,tab12,agi,count,Number of returns,all,filers,all,17,"$1,500,000 under $2,000,000",148221.0,22in12ms.xls,B25,2,B,25 +4310,2022_tab12_agi_count_all_all,2022,tab12,agi,count,Number of returns,all,filers,all,18,"$2,000,000 under $5,000,000",208129.0,22in12ms.xls,B26,2,B,26 +4311,2022_tab12_agi_count_all_all,2022,tab12,agi,count,Number of returns,all,filers,all,19,"$5,000,000 under $10,000,000",52968.0,22in12ms.xls,B27,2,B,27 +4312,2022_tab12_agi_count_all_all,2022,tab12,agi,count,Number of returns,all,filers,all,20,"$10,000,000 or more",34630.0,22in12ms.xls,B28,2,B,28 +4313,2022_tab12_agi_count_all_hoh,2022,tab12,agi,count,Number of returns — head of household,all,filers,hoh,1,"All returns, total",21268139.0,22in12ms.xls,AL9,38,AL,9 +4314,2022_tab12_agi_count_all_hoh,2022,tab12,agi,count,Number of returns — head of household,all,filers,hoh,2,No adjusted gross income (includes deficits),113913.0,22in12ms.xls,AL10,38,AL,10 +4315,2022_tab12_agi_count_all_hoh,2022,tab12,agi,count,Number of returns — head of household,all,filers,hoh,3,"$1 under $5,000",475615.0,22in12ms.xls,AL11,38,AL,11 +4316,2022_tab12_agi_count_all_hoh,2022,tab12,agi,count,Number of returns — head of household,all,filers,hoh,4,"$5,000 under $10,000",811217.0,22in12ms.xls,AL12,38,AL,12 +4317,2022_tab12_agi_count_all_hoh,2022,tab12,agi,count,Number of returns — head of household,all,filers,hoh,5,"$10,000 under $15,000",1687098.0,22in12ms.xls,AL13,38,AL,13 +4318,2022_tab12_agi_count_all_hoh,2022,tab12,agi,count,Number of returns — head of household,all,filers,hoh,6,"$15,000 under $20,000",2064678.0,22in12ms.xls,AL14,38,AL,14 +4319,2022_tab12_agi_count_all_hoh,2022,tab12,agi,count,Number of returns — head of household,all,filers,hoh,7,"$20,000 under $25,000",1669981.0,22in12ms.xls,AL15,38,AL,15 +4320,2022_tab12_agi_count_all_hoh,2022,tab12,agi,count,Number of returns — head of household,all,filers,hoh,8,"$25,000 under $30,000",1691489.0,22in12ms.xls,AL16,38,AL,16 +4321,2022_tab12_agi_count_all_hoh,2022,tab12,agi,count,Number of returns — head of household,all,filers,hoh,9,"$30,000 under $40,000",3400025.0,22in12ms.xls,AL17,38,AL,17 +4322,2022_tab12_agi_count_all_hoh,2022,tab12,agi,count,Number of returns — head of household,all,filers,hoh,10,"$40,000 under $50,000",2452228.0,22in12ms.xls,AL18,38,AL,18 +4323,2022_tab12_agi_count_all_hoh,2022,tab12,agi,count,Number of returns — head of household,all,filers,hoh,11,"$50,000 under $75,000",3479671.0,22in12ms.xls,AL19,38,AL,19 +4324,2022_tab12_agi_count_all_hoh,2022,tab12,agi,count,Number of returns — head of household,all,filers,hoh,12,"$75,000 under $100,000",1572622.0,22in12ms.xls,AL20,38,AL,20 +4325,2022_tab12_agi_count_all_hoh,2022,tab12,agi,count,Number of returns — head of household,all,filers,hoh,13,"$100,000 under $200,000",1507144.0,22in12ms.xls,AL21,38,AL,21 +4326,2022_tab12_agi_count_all_hoh,2022,tab12,agi,count,Number of returns — head of household,all,filers,hoh,14,"$200,000 under $500,000",277721.0,22in12ms.xls,AL22,38,AL,22 +4327,2022_tab12_agi_count_all_hoh,2022,tab12,agi,count,Number of returns — head of household,all,filers,hoh,15,"$500,000 under $1,000,000",44818.0,22in12ms.xls,AL23,38,AL,23 +4328,2022_tab12_agi_count_all_hoh,2022,tab12,agi,count,Number of returns — head of household,all,filers,hoh,16,"$1,000,000 under $1,500,000",9165.0,22in12ms.xls,AL24,38,AL,24 +4329,2022_tab12_agi_count_all_hoh,2022,tab12,agi,count,Number of returns — head of household,all,filers,hoh,17,"$1,500,000 under $2,000,000",3575.0,22in12ms.xls,AL25,38,AL,25 +4330,2022_tab12_agi_count_all_hoh,2022,tab12,agi,count,Number of returns — head of household,all,filers,hoh,18,"$2,000,000 under $5,000,000",5033.0,22in12ms.xls,AL26,38,AL,26 +4331,2022_tab12_agi_count_all_hoh,2022,tab12,agi,count,Number of returns — head of household,all,filers,hoh,19,"$5,000,000 under $10,000,000",1280.0,22in12ms.xls,AL27,38,AL,27 +4332,2022_tab12_agi_count_all_hoh,2022,tab12,agi,count,Number of returns — head of household,all,filers,hoh,20,"$10,000,000 or more",866.0,22in12ms.xls,AL28,38,AL,28 +4333,2022_tab12_agi_count_all_mfjss,2022,tab12,agi,count,Number of returns — married filing jointly/SS,all,filers,mfjss,1,"All returns, total",54886428.0,22in12ms.xls,N9,14,N,9 +4334,2022_tab12_agi_count_all_mfjss,2022,tab12,agi,count,Number of returns — married filing jointly/SS,all,filers,mfjss,2,No adjusted gross income (includes deficits),660606.0,22in12ms.xls,N10,14,N,10 +4335,2022_tab12_agi_count_all_mfjss,2022,tab12,agi,count,Number of returns — married filing jointly/SS,all,filers,mfjss,3,"$1 under $5,000",753224.0,22in12ms.xls,N11,14,N,11 +4336,2022_tab12_agi_count_all_mfjss,2022,tab12,agi,count,Number of returns — married filing jointly/SS,all,filers,mfjss,4,"$5,000 under $10,000",744778.0,22in12ms.xls,N12,14,N,12 +4337,2022_tab12_agi_count_all_mfjss,2022,tab12,agi,count,Number of returns — married filing jointly/SS,all,filers,mfjss,5,"$10,000 under $15,000",960577.0,22in12ms.xls,N13,14,N,13 +4338,2022_tab12_agi_count_all_mfjss,2022,tab12,agi,count,Number of returns — married filing jointly/SS,all,filers,mfjss,6,"$15,000 under $20,000",1067299.0,22in12ms.xls,N14,14,N,14 +4339,2022_tab12_agi_count_all_mfjss,2022,tab12,agi,count,Number of returns — married filing jointly/SS,all,filers,mfjss,7,"$20,000 under $25,000",1141188.0,22in12ms.xls,N15,14,N,15 +4340,2022_tab12_agi_count_all_mfjss,2022,tab12,agi,count,Number of returns — married filing jointly/SS,all,filers,mfjss,8,"$25,000 under $30,000",1293290.0,22in12ms.xls,N16,14,N,16 +4341,2022_tab12_agi_count_all_mfjss,2022,tab12,agi,count,Number of returns — married filing jointly/SS,all,filers,mfjss,9,"$30,000 under $40,000",2689524.0,22in12ms.xls,N17,14,N,17 +4342,2022_tab12_agi_count_all_mfjss,2022,tab12,agi,count,Number of returns — married filing jointly/SS,all,filers,mfjss,10,"$40,000 under $50,000",2710563.0,22in12ms.xls,N18,14,N,18 +4343,2022_tab12_agi_count_all_mfjss,2022,tab12,agi,count,Number of returns — married filing jointly/SS,all,filers,mfjss,11,"$50,000 under $75,000",7112905.0,22in12ms.xls,N19,14,N,19 +4344,2022_tab12_agi_count_all_mfjss,2022,tab12,agi,count,Number of returns — married filing jointly/SS,all,filers,mfjss,12,"$75,000 under $100,000",7325004.0,22in12ms.xls,N20,14,N,20 +4345,2022_tab12_agi_count_all_mfjss,2022,tab12,agi,count,Number of returns — married filing jointly/SS,all,filers,mfjss,13,"$100,000 under $200,000",18132960.0,22in12ms.xls,N21,14,N,21 +4346,2022_tab12_agi_count_all_mfjss,2022,tab12,agi,count,Number of returns — married filing jointly/SS,all,filers,mfjss,14,"$200,000 under $500,000",8217044.0,22in12ms.xls,N22,14,N,22 +4347,2022_tab12_agi_count_all_mfjss,2022,tab12,agi,count,Number of returns — married filing jointly/SS,all,filers,mfjss,15,"$500,000 under $1,000,000",1407631.0,22in12ms.xls,N23,14,N,23 +4348,2022_tab12_agi_count_all_mfjss,2022,tab12,agi,count,Number of returns — married filing jointly/SS,all,filers,mfjss,16,"$1,000,000 under $1,500,000",304533.0,22in12ms.xls,N24,14,N,24 +4349,2022_tab12_agi_count_all_mfjss,2022,tab12,agi,count,Number of returns — married filing jointly/SS,all,filers,mfjss,17,"$1,500,000 under $2,000,000",123960.0,22in12ms.xls,N25,14,N,25 +4350,2022_tab12_agi_count_all_mfjss,2022,tab12,agi,count,Number of returns — married filing jointly/SS,all,filers,mfjss,18,"$2,000,000 under $5,000,000",170806.0,22in12ms.xls,N26,14,N,26 +4351,2022_tab12_agi_count_all_mfjss,2022,tab12,agi,count,Number of returns — married filing jointly/SS,all,filers,mfjss,19,"$5,000,000 under $10,000,000",43126.0,22in12ms.xls,N27,14,N,27 +4352,2022_tab12_agi_count_all_mfjss,2022,tab12,agi,count,Number of returns — married filing jointly/SS,all,filers,mfjss,20,"$10,000,000 or more",27413.0,22in12ms.xls,N28,14,N,28 +4353,2022_tab12_agi_count_all_mfs,2022,tab12,agi,count,Number of returns — married filing separately,all,filers,mfs,1,"All returns, total",3992729.0,22in12ms.xls,Z9,26,Z,9 +4354,2022_tab12_agi_count_all_mfs,2022,tab12,agi,count,Number of returns — married filing separately,all,filers,mfs,2,No adjusted gross income (includes deficits),113465.0,22in12ms.xls,Z10,26,Z,10 +4355,2022_tab12_agi_count_all_mfs,2022,tab12,agi,count,Number of returns — married filing separately,all,filers,mfs,3,"$1 under $5,000",146282.0,22in12ms.xls,Z11,26,Z,11 +4356,2022_tab12_agi_count_all_mfs,2022,tab12,agi,count,Number of returns — married filing separately,all,filers,mfs,4,"$5,000 under $10,000",149041.0,22in12ms.xls,Z12,26,Z,12 +4357,2022_tab12_agi_count_all_mfs,2022,tab12,agi,count,Number of returns — married filing separately,all,filers,mfs,5,"$10,000 under $15,000",160742.0,22in12ms.xls,Z13,26,Z,13 +4358,2022_tab12_agi_count_all_mfs,2022,tab12,agi,count,Number of returns — married filing separately,all,filers,mfs,6,"$15,000 under $20,000",146705.0,22in12ms.xls,Z14,26,Z,14 +4359,2022_tab12_agi_count_all_mfs,2022,tab12,agi,count,Number of returns — married filing separately,all,filers,mfs,7,"$20,000 under $25,000",183385.0,22in12ms.xls,Z15,26,Z,15 +4360,2022_tab12_agi_count_all_mfs,2022,tab12,agi,count,Number of returns — married filing separately,all,filers,mfs,8,"$25,000 under $30,000",216440.0,22in12ms.xls,Z16,26,Z,16 +4361,2022_tab12_agi_count_all_mfs,2022,tab12,agi,count,Number of returns — married filing separately,all,filers,mfs,9,"$30,000 under $40,000",449169.0,22in12ms.xls,Z17,26,Z,17 +4362,2022_tab12_agi_count_all_mfs,2022,tab12,agi,count,Number of returns — married filing separately,all,filers,mfs,10,"$40,000 under $50,000",527396.0,22in12ms.xls,Z18,26,Z,18 +4363,2022_tab12_agi_count_all_mfs,2022,tab12,agi,count,Number of returns — married filing separately,all,filers,mfs,11,"$50,000 under $75,000",881160.0,22in12ms.xls,Z19,26,Z,19 +4364,2022_tab12_agi_count_all_mfs,2022,tab12,agi,count,Number of returns — married filing separately,all,filers,mfs,12,"$75,000 under $100,000",408716.0,22in12ms.xls,Z20,26,Z,20 +4365,2022_tab12_agi_count_all_mfs,2022,tab12,agi,count,Number of returns — married filing separately,all,filers,mfs,13,"$100,000 under $200,000",457744.0,22in12ms.xls,Z21,26,Z,21 +4366,2022_tab12_agi_count_all_mfs,2022,tab12,agi,count,Number of returns — married filing separately,all,filers,mfs,14,"$200,000 under $500,000",113765.0,22in12ms.xls,Z22,26,Z,22 +4367,2022_tab12_agi_count_all_mfs,2022,tab12,agi,count,Number of returns — married filing separately,all,filers,mfs,15,"$500,000 under $1,000,000",21615.0,22in12ms.xls,Z23,26,Z,23 +4368,2022_tab12_agi_count_all_mfs,2022,tab12,agi,count,Number of returns — married filing separately,all,filers,mfs,16,"$1,000,000 under $1,500,000",6098.0,22in12ms.xls,Z24,26,Z,24 +4369,2022_tab12_agi_count_all_mfs,2022,tab12,agi,count,Number of returns — married filing separately,all,filers,mfs,17,"$1,500,000 under $2,000,000",2815.0,22in12ms.xls,Z25,26,Z,25 +4370,2022_tab12_agi_count_all_mfs,2022,tab12,agi,count,Number of returns — married filing separately,all,filers,mfs,18,"$2,000,000 under $5,000,000",5029.0,22in12ms.xls,Z26,26,Z,26 +4371,2022_tab12_agi_count_all_mfs,2022,tab12,agi,count,Number of returns — married filing separately,all,filers,mfs,19,"$5,000,000 under $10,000,000",1649.0,22in12ms.xls,Z27,26,Z,27 +4372,2022_tab12_agi_count_all_mfs,2022,tab12,agi,count,Number of returns — married filing separately,all,filers,mfs,20,"$10,000,000 or more",1514.0,22in12ms.xls,Z28,26,Z,28 +4373,2022_tab12_agi_count_all_single,2022,tab12,agi,count,Number of returns — single,all,filers,single,1,"All returns, total",81189363.0,22in12ms.xls,AX9,50,AX,9 +4374,2022_tab12_agi_count_all_single,2022,tab12,agi,count,Number of returns — single,all,filers,single,2,No adjusted gross income (includes deficits),2366241.0,22in12ms.xls,AX10,50,AX,10 +4375,2022_tab12_agi_count_all_single,2022,tab12,agi,count,Number of returns — single,all,filers,single,3,"$1 under $5,000",6820661.0,22in12ms.xls,AX11,50,AX,11 +4376,2022_tab12_agi_count_all_single,2022,tab12,agi,count,Number of returns — single,all,filers,single,4,"$5,000 under $10,000",7042691.0,22in12ms.xls,AX12,50,AX,12 +4377,2022_tab12_agi_count_all_single,2022,tab12,agi,count,Number of returns — single,all,filers,single,5,"$10,000 under $15,000",6833904.0,22in12ms.xls,AX13,50,AX,13 +4378,2022_tab12_agi_count_all_single,2022,tab12,agi,count,Number of returns — single,all,filers,single,6,"$15,000 under $20,000",5779700.0,22in12ms.xls,AX14,50,AX,14 +4379,2022_tab12_agi_count_all_single,2022,tab12,agi,count,Number of returns — single,all,filers,single,7,"$20,000 under $25,000",5040723.0,22in12ms.xls,AX15,50,AX,15 +4380,2022_tab12_agi_count_all_single,2022,tab12,agi,count,Number of returns — single,all,filers,single,8,"$25,000 under $30,000",4804071.0,22in12ms.xls,AX16,50,AX,16 +4381,2022_tab12_agi_count_all_single,2022,tab12,agi,count,Number of returns — single,all,filers,single,9,"$30,000 under $40,000",9232844.0,22in12ms.xls,AX17,50,AX,17 +4382,2022_tab12_agi_count_all_single,2022,tab12,agi,count,Number of returns — single,all,filers,single,10,"$40,000 under $50,000",7564876.0,22in12ms.xls,AX18,50,AX,18 +4383,2022_tab12_agi_count_all_single,2022,tab12,agi,count,Number of returns — single,all,filers,single,11,"$50,000 under $75,000",12332062.0,22in12ms.xls,AX19,50,AX,19 +4384,2022_tab12_agi_count_all_single,2022,tab12,agi,count,Number of returns — single,all,filers,single,12,"$75,000 under $100,000",5874693.0,22in12ms.xls,AX20,50,AX,20 +4385,2022_tab12_agi_count_all_single,2022,tab12,agi,count,Number of returns — single,all,filers,single,13,"$100,000 under $200,000",5789288.0,22in12ms.xls,AX21,50,AX,21 +4386,2022_tab12_agi_count_all_single,2022,tab12,agi,count,Number of returns — single,all,filers,single,14,"$200,000 under $500,000",1409096.0,22in12ms.xls,AX22,50,AX,22 +4387,2022_tab12_agi_count_all_single,2022,tab12,agi,count,Number of returns — single,all,filers,single,15,"$500,000 under $1,000,000",200544.0,22in12ms.xls,AX23,50,AX,23 +4388,2022_tab12_agi_count_all_single,2022,tab12,agi,count,Number of returns — single,all,filers,single,16,"$1,000,000 under $1,500,000",41086.0,22in12ms.xls,AX24,50,AX,24 +4389,2022_tab12_agi_count_all_single,2022,tab12,agi,count,Number of returns — single,all,filers,single,17,"$1,500,000 under $2,000,000",17872.0,22in12ms.xls,AX25,50,AX,25 +4390,2022_tab12_agi_count_all_single,2022,tab12,agi,count,Number of returns — single,all,filers,single,18,"$2,000,000 under $5,000,000",27261.0,22in12ms.xls,AX26,50,AX,26 +4391,2022_tab12_agi_count_all_single,2022,tab12,agi,count,Number of returns — single,all,filers,single,19,"$5,000,000 under $10,000,000",6913.0,22in12ms.xls,AX27,50,AX,27 +4392,2022_tab12_agi_count_all_single,2022,tab12,agi,count,Number of returns — single,all,filers,single,20,"$10,000,000 or more",4837.0,22in12ms.xls,AX28,50,AX,28 +4393,2022_tab12_itemded_amount_nz_all,2022,tab12,itemded,amount,Total itemized deductions,nz,filers,all,1,"All returns, total",668001764000.0,22in12ms.xls,E9,5,E,9 +4394,2022_tab12_itemded_amount_nz_all,2022,tab12,itemded,amount,Total itemized deductions,nz,filers,all,2,No adjusted gross income (includes deficits),0.0,22in12ms.xls,E10,5,E,10 +4395,2022_tab12_itemded_amount_nz_all,2022,tab12,itemded,amount,Total itemized deductions,nz,filers,all,3,"$1 under $5,000",2212245000.0,22in12ms.xls,E11,5,E,11 +4396,2022_tab12_itemded_amount_nz_all,2022,tab12,itemded,amount,Total itemized deductions,nz,filers,all,4,"$5,000 under $10,000",11186695000.0,22in12ms.xls,E12,5,E,12 +4397,2022_tab12_itemded_amount_nz_all,2022,tab12,itemded,amount,Total itemized deductions,nz,filers,all,5,"$10,000 under $15,000",2765492000.0,22in12ms.xls,E13,5,E,13 +4398,2022_tab12_itemded_amount_nz_all,2022,tab12,itemded,amount,Total itemized deductions,nz,filers,all,6,"$15,000 under $20,000",3989446000.0,22in12ms.xls,E14,5,E,14 +4399,2022_tab12_itemded_amount_nz_all,2022,tab12,itemded,amount,Total itemized deductions,nz,filers,all,7,"$20,000 under $25,000",5050663000.0,22in12ms.xls,E15,5,E,15 +4400,2022_tab12_itemded_amount_nz_all,2022,tab12,itemded,amount,Total itemized deductions,nz,filers,all,8,"$25,000 under $30,000",5703689000.0,22in12ms.xls,E16,5,E,16 +4401,2022_tab12_itemded_amount_nz_all,2022,tab12,itemded,amount,Total itemized deductions,nz,filers,all,9,"$30,000 under $40,000",14494331000.0,22in12ms.xls,E17,5,E,17 +4402,2022_tab12_itemded_amount_nz_all,2022,tab12,itemded,amount,Total itemized deductions,nz,filers,all,10,"$40,000 under $50,000",15604243000.0,22in12ms.xls,E18,5,E,18 +4403,2022_tab12_itemded_amount_nz_all,2022,tab12,itemded,amount,Total itemized deductions,nz,filers,all,11,"$50,000 under $75,000",51651608000.0,22in12ms.xls,E19,5,E,19 +4404,2022_tab12_itemded_amount_nz_all,2022,tab12,itemded,amount,Total itemized deductions,nz,filers,all,12,"$75,000 under $100,000",53445883000.0,22in12ms.xls,E20,5,E,20 +4405,2022_tab12_itemded_amount_nz_all,2022,tab12,itemded,amount,Total itemized deductions,nz,filers,all,13,"$100,000 under $200,000",151517219000.0,22in12ms.xls,E21,5,E,21 +4406,2022_tab12_itemded_amount_nz_all,2022,tab12,itemded,amount,Total itemized deductions,nz,filers,all,14,"$200,000 under $500,000",136240610000.0,22in12ms.xls,E22,5,E,22 +4407,2022_tab12_itemded_amount_nz_all,2022,tab12,itemded,amount,Total itemized deductions,nz,filers,all,15,"$500,000 under $1,000,000",54792042000.0,22in12ms.xls,E23,5,E,23 +4408,2022_tab12_itemded_amount_nz_all,2022,tab12,itemded,amount,Total itemized deductions,nz,filers,all,16,"$1,000,000 under $1,500,000",21274748000.0,22in12ms.xls,E24,5,E,24 +4409,2022_tab12_itemded_amount_nz_all,2022,tab12,itemded,amount,Total itemized deductions,nz,filers,all,17,"$1,500,000 under $2,000,000",12194361000.0,22in12ms.xls,E25,5,E,25 +4410,2022_tab12_itemded_amount_nz_all,2022,tab12,itemded,amount,Total itemized deductions,nz,filers,all,18,"$2,000,000 under $5,000,000",29514407000.0,22in12ms.xls,E26,5,E,26 +4411,2022_tab12_itemded_amount_nz_all,2022,tab12,itemded,amount,Total itemized deductions,nz,filers,all,19,"$5,000,000 under $10,000,000",18019722000.0,22in12ms.xls,E27,5,E,27 +4412,2022_tab12_itemded_amount_nz_all,2022,tab12,itemded,amount,Total itemized deductions,nz,filers,all,20,"$10,000,000 or more",78344359000.0,22in12ms.xls,E28,5,E,28 +4413,2022_tab12_itemded_count_nz_all,2022,tab12,itemded,count,Itemized deductions — number of returns,nz,filers,all,1,"All returns, total",15290841.0,22in12ms.xls,D9,4,D,9 +4414,2022_tab12_itemded_count_nz_all,2022,tab12,itemded,count,Itemized deductions — number of returns,nz,filers,all,2,No adjusted gross income (includes deficits),0.0,22in12ms.xls,D10,4,D,10 +4415,2022_tab12_itemded_count_nz_all,2022,tab12,itemded,count,Itemized deductions — number of returns,nz,filers,all,3,"$1 under $5,000",106861.0,22in12ms.xls,D11,4,D,11 +4416,2022_tab12_itemded_count_nz_all,2022,tab12,itemded,count,Itemized deductions — number of returns,nz,filers,all,4,"$5,000 under $10,000",104685.0,22in12ms.xls,D12,4,D,12 +4417,2022_tab12_itemded_count_nz_all,2022,tab12,itemded,count,Itemized deductions — number of returns,nz,filers,all,5,"$10,000 under $15,000",117421.0,22in12ms.xls,D13,4,D,13 +4418,2022_tab12_itemded_count_nz_all,2022,tab12,itemded,count,Itemized deductions — number of returns,nz,filers,all,6,"$15,000 under $20,000",157566.0,22in12ms.xls,D14,4,D,14 +4419,2022_tab12_itemded_count_nz_all,2022,tab12,itemded,count,Itemized deductions — number of returns,nz,filers,all,7,"$20,000 under $25,000",185594.0,22in12ms.xls,D15,4,D,15 +4420,2022_tab12_itemded_count_nz_all,2022,tab12,itemded,count,Itemized deductions — number of returns,nz,filers,all,8,"$25,000 under $30,000",204094.0,22in12ms.xls,D16,4,D,16 +4421,2022_tab12_itemded_count_nz_all,2022,tab12,itemded,count,Itemized deductions — number of returns,nz,filers,all,9,"$30,000 under $40,000",504475.0,22in12ms.xls,D17,4,D,17 +4422,2022_tab12_itemded_count_nz_all,2022,tab12,itemded,count,Itemized deductions — number of returns,nz,filers,all,10,"$40,000 under $50,000",565877.0,22in12ms.xls,D18,4,D,18 +4423,2022_tab12_itemded_count_nz_all,2022,tab12,itemded,count,Itemized deductions — number of returns,nz,filers,all,11,"$50,000 under $75,000",1891131.0,22in12ms.xls,D19,4,D,19 +4424,2022_tab12_itemded_count_nz_all,2022,tab12,itemded,count,Itemized deductions — number of returns,nz,filers,all,12,"$75,000 under $100,000",1915805.0,22in12ms.xls,D20,4,D,20 +4425,2022_tab12_itemded_count_nz_all,2022,tab12,itemded,count,Itemized deductions — number of returns,nz,filers,all,13,"$100,000 under $200,000",4745777.0,22in12ms.xls,D21,4,D,21 +4426,2022_tab12_itemded_count_nz_all,2022,tab12,itemded,count,Itemized deductions — number of returns,nz,filers,all,14,"$200,000 under $500,000",3330396.0,22in12ms.xls,D22,4,D,22 +4427,2022_tab12_itemded_count_nz_all,2022,tab12,itemded,count,Itemized deductions — number of returns,nz,filers,all,15,"$500,000 under $1,000,000",902511.0,22in12ms.xls,D23,4,D,23 +4428,2022_tab12_itemded_count_nz_all,2022,tab12,itemded,count,Itemized deductions — number of returns,nz,filers,all,16,"$1,000,000 under $1,500,000",230387.0,22in12ms.xls,D24,4,D,24 +4429,2022_tab12_itemded_count_nz_all,2022,tab12,itemded,count,Itemized deductions — number of returns,nz,filers,all,17,"$1,500,000 under $2,000,000",101541.0,22in12ms.xls,D25,4,D,25 +4430,2022_tab12_itemded_count_nz_all,2022,tab12,itemded,count,Itemized deductions — number of returns,nz,filers,all,18,"$2,000,000 under $5,000,000",153659.0,22in12ms.xls,D26,4,D,26 +4431,2022_tab12_itemded_count_nz_all,2022,tab12,itemded,count,Itemized deductions — number of returns,nz,filers,all,19,"$5,000,000 under $10,000,000",42951.0,22in12ms.xls,D27,4,D,27 +4432,2022_tab12_itemded_count_nz_all,2022,tab12,itemded,count,Itemized deductions — number of returns,nz,filers,all,20,"$10,000,000 or more",30108.0,22in12ms.xls,D28,4,D,28 +4433,2022_tab12_sd_amount_nz_all,2022,tab12,sd,amount,Standard deduction,nz,filers,all,1,"All returns, total",2609228480000.0,22in12ms.xls,G9,7,G,9 +4434,2022_tab12_sd_amount_nz_all,2022,tab12,sd,amount,Standard deduction,nz,filers,all,2,No adjusted gross income (includes deficits),0.0,22in12ms.xls,G10,7,G,10 +4435,2022_tab12_sd_amount_nz_all,2022,tab12,sd,amount,Standard deduction,nz,filers,all,3,"$1 under $5,000",97479411000.0,22in12ms.xls,G11,7,G,11 +4436,2022_tab12_sd_amount_nz_all,2022,tab12,sd,amount,Standard deduction,nz,filers,all,4,"$5,000 under $10,000",117632709000.0,22in12ms.xls,G12,7,G,12 +4437,2022_tab12_sd_amount_nz_all,2022,tab12,sd,amount,Standard deduction,nz,filers,all,5,"$10,000 under $15,000",147950673000.0,22in12ms.xls,G13,7,G,13 +4438,2022_tab12_sd_amount_nz_all,2022,tab12,sd,amount,Standard deduction,nz,filers,all,6,"$15,000 under $20,000",144554689000.0,22in12ms.xls,G14,7,G,14 +4439,2022_tab12_sd_amount_nz_all,2022,tab12,sd,amount,Standard deduction,nz,filers,all,7,"$20,000 under $25,000",128777753000.0,22in12ms.xls,G15,7,G,15 +4440,2022_tab12_sd_amount_nz_all,2022,tab12,sd,amount,Standard deduction,nz,filers,all,8,"$25,000 under $30,000",130110271000.0,22in12ms.xls,G16,7,G,16 +4441,2022_tab12_sd_amount_nz_all,2022,tab12,sd,amount,Standard deduction,nz,filers,all,9,"$30,000 under $40,000",257003124000.0,22in12ms.xls,G17,7,G,17 +4442,2022_tab12_sd_amount_nz_all,2022,tab12,sd,amount,Standard deduction,nz,filers,all,10,"$40,000 under $50,000",217167013000.0,22in12ms.xls,G18,7,G,18 +4443,2022_tab12_sd_amount_nz_all,2022,tab12,sd,amount,Standard deduction,nz,filers,all,11,"$50,000 under $75,000",400850408000.0,22in12ms.xls,G19,7,G,19 +4444,2022_tab12_sd_amount_nz_all,2022,tab12,sd,amount,Standard deduction,nz,filers,all,12,"$75,000 under $100,000",276421006000.0,22in12ms.xls,G20,7,G,20 +4445,2022_tab12_sd_amount_nz_all,2022,tab12,sd,amount,Standard deduction,nz,filers,all,13,"$100,000 under $200,000",500164477000.0,22in12ms.xls,G21,7,G,21 +4446,2022_tab12_sd_amount_nz_all,2022,tab12,sd,amount,Standard deduction,nz,filers,all,14,"$200,000 under $500,000",165778465000.0,22in12ms.xls,G22,7,G,22 +4447,2022_tab12_sd_amount_nz_all,2022,tab12,sd,amount,Standard deduction,nz,filers,all,15,"$500,000 under $1,000,000",19248184000.0,22in12ms.xls,G23,7,G,23 +4448,2022_tab12_sd_amount_nz_all,2022,tab12,sd,amount,Standard deduction,nz,filers,all,16,"$1,000,000 under $1,500,000",3255956000.0,22in12ms.xls,G24,7,G,24 +4449,2022_tab12_sd_amount_nz_all,2022,tab12,sd,amount,Standard deduction,nz,filers,all,17,"$1,500,000 under $2,000,000",1151032000.0,22in12ms.xls,G25,7,G,25 +4450,2022_tab12_sd_amount_nz_all,2022,tab12,sd,amount,Standard deduction,nz,filers,all,18,"$2,000,000 under $5,000,000",1330930000.0,22in12ms.xls,G26,7,G,26 +4451,2022_tab12_sd_amount_nz_all,2022,tab12,sd,amount,Standard deduction,nz,filers,all,19,"$5,000,000 under $10,000,000",246152000.0,22in12ms.xls,G27,7,G,27 +4452,2022_tab12_sd_amount_nz_all,2022,tab12,sd,amount,Standard deduction,nz,filers,all,20,"$10,000,000 or more",106229000.0,22in12ms.xls,G28,7,G,28 +4453,2022_tab12_sd_count_nz_all,2022,tab12,sd,count,Standard deduction — number of returns,nz,filers,all,1,"All returns, total",142779280.0,22in12ms.xls,F9,6,F,9 +4454,2022_tab12_sd_count_nz_all,2022,tab12,sd,count,Standard deduction — number of returns,nz,filers,all,2,No adjusted gross income (includes deficits),0.0,22in12ms.xls,F10,6,F,10 +4455,2022_tab12_sd_count_nz_all,2022,tab12,sd,count,Standard deduction — number of returns,nz,filers,all,3,"$1 under $5,000",8088921.0,22in12ms.xls,F11,6,F,11 +4456,2022_tab12_sd_count_nz_all,2022,tab12,sd,count,Standard deduction — number of returns,nz,filers,all,4,"$5,000 under $10,000",8642057.0,22in12ms.xls,F12,6,F,12 +4457,2022_tab12_sd_count_nz_all,2022,tab12,sd,count,Standard deduction — number of returns,nz,filers,all,5,"$10,000 under $15,000",9524899.0,22in12ms.xls,F13,6,F,13 +4458,2022_tab12_sd_count_nz_all,2022,tab12,sd,count,Standard deduction — number of returns,nz,filers,all,6,"$15,000 under $20,000",8898827.0,22in12ms.xls,F14,6,F,14 +4459,2022_tab12_sd_count_nz_all,2022,tab12,sd,count,Standard deduction — number of returns,nz,filers,all,7,"$20,000 under $25,000",7847660.0,22in12ms.xls,F15,6,F,15 +4460,2022_tab12_sd_count_nz_all,2022,tab12,sd,count,Standard deduction — number of returns,nz,filers,all,8,"$25,000 under $30,000",7799177.0,22in12ms.xls,F16,6,F,16 +4461,2022_tab12_sd_count_nz_all,2022,tab12,sd,count,Standard deduction — number of returns,nz,filers,all,9,"$30,000 under $40,000",15266077.0,22in12ms.xls,F17,6,F,17 +4462,2022_tab12_sd_count_nz_all,2022,tab12,sd,count,Standard deduction — number of returns,nz,filers,all,10,"$40,000 under $50,000",12687168.0,22in12ms.xls,F18,6,F,18 +4463,2022_tab12_sd_count_nz_all,2022,tab12,sd,count,Standard deduction — number of returns,nz,filers,all,11,"$50,000 under $75,000",21913662.0,22in12ms.xls,F19,6,F,19 +4464,2022_tab12_sd_count_nz_all,2022,tab12,sd,count,Standard deduction — number of returns,nz,filers,all,12,"$75,000 under $100,000",13265228.0,22in12ms.xls,F20,6,F,20 +4465,2022_tab12_sd_count_nz_all,2022,tab12,sd,count,Standard deduction — number of returns,nz,filers,all,13,"$100,000 under $200,000",21140339.0,22in12ms.xls,F21,6,F,21 +4466,2022_tab12_sd_count_nz_all,2022,tab12,sd,count,Standard deduction — number of returns,nz,filers,all,14,"$200,000 under $500,000",6687170.0,22in12ms.xls,F22,6,F,22 +4467,2022_tab12_sd_count_nz_all,2022,tab12,sd,count,Standard deduction — number of returns,nz,filers,all,15,"$500,000 under $1,000,000",771949.0,22in12ms.xls,F23,6,F,23 +4468,2022_tab12_sd_count_nz_all,2022,tab12,sd,count,Standard deduction — number of returns,nz,filers,all,16,"$1,000,000 under $1,500,000",130493.0,22in12ms.xls,F24,6,F,24 +4469,2022_tab12_sd_count_nz_all,2022,tab12,sd,count,Standard deduction — number of returns,nz,filers,all,17,"$1,500,000 under $2,000,000",46672.0,22in12ms.xls,F25,6,F,25 +4470,2022_tab12_sd_count_nz_all,2022,tab12,sd,count,Standard deduction — number of returns,nz,filers,all,18,"$2,000,000 under $5,000,000",54446.0,22in12ms.xls,F26,6,F,26 +4471,2022_tab12_sd_count_nz_all,2022,tab12,sd,count,Standard deduction — number of returns,nz,filers,all,19,"$5,000,000 under $10,000,000",10015.0,22in12ms.xls,F27,6,F,27 +4472,2022_tab12_sd_count_nz_all,2022,tab12,sd,count,Standard deduction — number of returns,nz,filers,all,20,"$10,000,000 or more",4521.0,22in12ms.xls,F28,6,F,28 +4473,2022_tab12_taxac_amount_nz_all,2022,tab12,taxac,amount,Income tax after credits,nz,filers,all,1,"All returns, total",2098923017000.0,22in12ms.xls,K9,11,K,9 +4474,2022_tab12_taxac_amount_nz_all,2022,tab12,taxac,amount,Income tax after credits,nz,filers,all,2,No adjusted gross income (includes deficits),128418000.0,22in12ms.xls,K10,11,K,10 +4475,2022_tab12_taxac_amount_nz_all,2022,tab12,taxac,amount,Income tax after credits,nz,filers,all,3,"$1 under $5,000",18734000.0,22in12ms.xls,K11,11,K,11 +4476,2022_tab12_taxac_amount_nz_all,2022,tab12,taxac,amount,Income tax after credits,nz,filers,all,4,"$5,000 under $10,000",41423000.0,22in12ms.xls,K12,11,K,12 +4477,2022_tab12_taxac_amount_nz_all,2022,tab12,taxac,amount,Income tax after credits,nz,filers,all,5,"$10,000 under $15,000",188178000.0,22in12ms.xls,K13,11,K,13 +4478,2022_tab12_taxac_amount_nz_all,2022,tab12,taxac,amount,Income tax after credits,nz,filers,all,6,"$15,000 under $20,000",1735910000.0,22in12ms.xls,K14,11,K,14 +4479,2022_tab12_taxac_amount_nz_all,2022,tab12,taxac,amount,Income tax after credits,nz,filers,all,7,"$20,000 under $25,000",3804019000.0,22in12ms.xls,K15,11,K,15 +4480,2022_tab12_taxac_amount_nz_all,2022,tab12,taxac,amount,Income tax after credits,nz,filers,all,8,"$25,000 under $30,000",6376403000.0,22in12ms.xls,K16,11,K,16 +4481,2022_tab12_taxac_amount_nz_all,2022,tab12,taxac,amount,Income tax after credits,nz,filers,all,9,"$30,000 under $40,000",21322189000.0,22in12ms.xls,K17,11,K,17 +4482,2022_tab12_taxac_amount_nz_all,2022,tab12,taxac,amount,Income tax after credits,nz,filers,all,10,"$40,000 under $50,000",30308339000.0,22in12ms.xls,K18,11,K,18 +4483,2022_tab12_taxac_amount_nz_all,2022,tab12,taxac,amount,Income tax after credits,nz,filers,all,11,"$50,000 under $75,000",100103566000.0,22in12ms.xls,K19,11,K,19 +4484,2022_tab12_taxac_amount_nz_all,2022,tab12,taxac,amount,Income tax after credits,nz,filers,all,12,"$75,000 under $100,000",113079178000.0,22in12ms.xls,K20,11,K,20 +4485,2022_tab12_taxac_amount_nz_all,2022,tab12,taxac,amount,Income tax after credits,nz,filers,all,13,"$100,000 under $200,000",397720446000.0,22in12ms.xls,K21,11,K,21 +4486,2022_tab12_taxac_amount_nz_all,2022,tab12,taxac,amount,Income tax after credits,nz,filers,all,14,"$200,000 under $500,000",478105230000.0,22in12ms.xls,K22,11,K,22 +4487,2022_tab12_taxac_amount_nz_all,2022,tab12,taxac,amount,Income tax after credits,nz,filers,all,15,"$500,000 under $1,000,000",254284854000.0,22in12ms.xls,K23,11,K,23 +4488,2022_tab12_taxac_amount_nz_all,2022,tab12,taxac,amount,Income tax after credits,nz,filers,all,16,"$1,000,000 under $1,500,000",110819453000.0,22in12ms.xls,K24,11,K,24 +4489,2022_tab12_taxac_amount_nz_all,2022,tab12,taxac,amount,Income tax after credits,nz,filers,all,17,"$1,500,000 under $2,000,000",67287429000.0,22in12ms.xls,K25,11,K,25 +4490,2022_tab12_taxac_amount_nz_all,2022,tab12,taxac,amount,Income tax after credits,nz,filers,all,18,"$2,000,000 under $5,000,000",166026539000.0,22in12ms.xls,K26,11,K,26 +4491,2022_tab12_taxac_amount_nz_all,2022,tab12,taxac,amount,Income tax after credits,nz,filers,all,19,"$5,000,000 under $10,000,000",96475701000.0,22in12ms.xls,K27,11,K,27 +4492,2022_tab12_taxac_amount_nz_all,2022,tab12,taxac,amount,Income tax after credits,nz,filers,all,20,"$10,000,000 or more",251097008000.0,22in12ms.xls,K28,11,K,28 +4493,2022_tab12_taxac_count_nz_all,2022,tab12,taxac,count,Income tax after credits — number of returns,nz,filers,all,1,"All returns, total",110611880.0,22in12ms.xls,J9,10,J,9 +4494,2022_tab12_taxac_count_nz_all,2022,tab12,taxac,count,Income tax after credits — number of returns,nz,filers,all,2,No adjusted gross income (includes deficits),3843.0,22in12ms.xls,J10,10,J,10 +4495,2022_tab12_taxac_count_nz_all,2022,tab12,taxac,count,Income tax after credits — number of returns,nz,filers,all,3,"$1 under $5,000",105475.0,22in12ms.xls,J11,10,J,11 +4496,2022_tab12_taxac_count_nz_all,2022,tab12,taxac,count,Income tax after credits — number of returns,nz,filers,all,4,"$5,000 under $10,000",119109.0,22in12ms.xls,J12,10,J,12 +4497,2022_tab12_taxac_count_nz_all,2022,tab12,taxac,count,Income tax after credits — number of returns,nz,filers,all,5,"$10,000 under $15,000",1370355.0,22in12ms.xls,J13,10,J,13 +4498,2022_tab12_taxac_count_nz_all,2022,tab12,taxac,count,Income tax after credits — number of returns,nz,filers,all,6,"$15,000 under $20,000",4429442.0,22in12ms.xls,J14,10,J,14 +4499,2022_tab12_taxac_count_nz_all,2022,tab12,taxac,count,Income tax after credits — number of returns,nz,filers,all,7,"$20,000 under $25,000",4393888.0,22in12ms.xls,J15,10,J,15 +4500,2022_tab12_taxac_count_nz_all,2022,tab12,taxac,count,Income tax after credits — number of returns,nz,filers,all,8,"$25,000 under $30,000",4801988.0,22in12ms.xls,J16,10,J,16 +4501,2022_tab12_taxac_count_nz_all,2022,tab12,taxac,count,Income tax after credits — number of returns,nz,filers,all,9,"$30,000 under $40,000",10791931.0,22in12ms.xls,J17,10,J,17 +4502,2022_tab12_taxac_count_nz_all,2022,tab12,taxac,count,Income tax after credits — number of returns,nz,filers,all,10,"$40,000 under $50,000",10680343.0,22in12ms.xls,J18,10,J,18 +4503,2022_tab12_taxac_count_nz_all,2022,tab12,taxac,count,Income tax after credits — number of returns,nz,filers,all,11,"$50,000 under $75,000",21378035.0,22in12ms.xls,J19,10,J,19 +4504,2022_tab12_taxac_count_nz_all,2022,tab12,taxac,count,Income tax after credits — number of returns,nz,filers,all,12,"$75,000 under $100,000",14549341.0,22in12ms.xls,J20,10,J,20 +4505,2022_tab12_taxac_count_nz_all,2022,tab12,taxac,count,Income tax after credits — number of returns,nz,filers,all,13,"$100,000 under $200,000",25543182.0,22in12ms.xls,J21,10,J,21 +4506,2022_tab12_taxac_count_nz_all,2022,tab12,taxac,count,Income tax after credits — number of returns,nz,filers,all,14,"$200,000 under $500,000",9975881.0,22in12ms.xls,J22,10,J,22 +4507,2022_tab12_taxac_count_nz_all,2022,tab12,taxac,count,Income tax after credits — number of returns,nz,filers,all,15,"$500,000 under $1,000,000",1667357.0,22in12ms.xls,J23,10,J,23 +4508,2022_tab12_taxac_count_nz_all,2022,tab12,taxac,count,Income tax after credits — number of returns,nz,filers,all,16,"$1,000,000 under $1,500,000",359534.0,22in12ms.xls,J24,10,J,24 +4509,2022_tab12_taxac_count_nz_all,2022,tab12,taxac,count,Income tax after credits — number of returns,nz,filers,all,17,"$1,500,000 under $2,000,000",147558.0,22in12ms.xls,J25,10,J,25 +4510,2022_tab12_taxac_count_nz_all,2022,tab12,taxac,count,Income tax after credits — number of returns,nz,filers,all,18,"$2,000,000 under $5,000,000",207401.0,22in12ms.xls,J26,10,J,26 +4511,2022_tab12_taxac_count_nz_all,2022,tab12,taxac,count,Income tax after credits — number of returns,nz,filers,all,19,"$5,000,000 under $10,000,000",52747.0,22in12ms.xls,J27,10,J,27 +4512,2022_tab12_taxac_count_nz_all,2022,tab12,taxac,count,Income tax after credits — number of returns,nz,filers,all,20,"$10,000,000 or more",34472.0,22in12ms.xls,J28,10,J,28 +4513,2022_tab12_ti_amount_nz_all,2022,tab12,ti,amount,Taxable income,nz,filers,all,1,"All returns, total",11714186280000.0,22in12ms.xls,I9,9,I,9 +4514,2022_tab12_ti_amount_nz_all,2022,tab12,ti,amount,Taxable income,nz,filers,all,2,No adjusted gross income (includes deficits),0.0,22in12ms.xls,I10,9,I,10 +4515,2022_tab12_ti_amount_nz_all,2022,tab12,ti,amount,Taxable income,nz,filers,all,3,"$1 under $5,000",213811000.0,22in12ms.xls,I11,9,I,11 +4516,2022_tab12_ti_amount_nz_all,2022,tab12,ti,amount,Taxable income,nz,filers,all,4,"$5,000 under $10,000",509165000.0,22in12ms.xls,I12,9,I,12 +4517,2022_tab12_ti_amount_nz_all,2022,tab12,ti,amount,Taxable income,nz,filers,all,5,"$10,000 under $15,000",2938421000.0,22in12ms.xls,I13,9,I,13 +4518,2022_tab12_ti_amount_nz_all,2022,tab12,ti,amount,Taxable income,nz,filers,all,6,"$15,000 under $20,000",24431244000.0,22in12ms.xls,I14,9,I,14 +4519,2022_tab12_ti_amount_nz_all,2022,tab12,ti,amount,Taxable income,nz,filers,all,7,"$20,000 under $25,000",51892301000.0,22in12ms.xls,I15,9,I,15 +4520,2022_tab12_ti_amount_nz_all,2022,tab12,ti,amount,Taxable income,nz,filers,all,8,"$25,000 under $30,000",85131728000.0,22in12ms.xls,I16,9,I,16 +4521,2022_tab12_ti_amount_nz_all,2022,tab12,ti,amount,Taxable income,nz,filers,all,9,"$30,000 under $40,000",278222619000.0,22in12ms.xls,I17,9,I,17 +4522,2022_tab12_ti_amount_nz_all,2022,tab12,ti,amount,Taxable income,nz,filers,all,10,"$40,000 under $50,000",358916800000.0,22in12ms.xls,I18,9,I,18 +4523,2022_tab12_ti_amount_nz_all,2022,tab12,ti,amount,Taxable income,nz,filers,all,11,"$50,000 under $75,000",1007053999000.0,22in12ms.xls,I19,9,I,19 +4524,2022_tab12_ti_amount_nz_all,2022,tab12,ti,amount,Taxable income,nz,filers,all,12,"$75,000 under $100,000",979156790000.0,22in12ms.xls,I20,9,I,20 +4525,2022_tab12_ti_amount_nz_all,2022,tab12,ti,amount,Taxable income,nz,filers,all,13,"$100,000 under $200,000",2884827377000.0,22in12ms.xls,I21,9,I,21 +4526,2022_tab12_ti_amount_nz_all,2022,tab12,ti,amount,Taxable income,nz,filers,all,14,"$200,000 under $500,000",2546130393000.0,22in12ms.xls,I22,9,I,22 +4527,2022_tab12_ti_amount_nz_all,2022,tab12,ti,amount,Taxable income,nz,filers,all,15,"$500,000 under $1,000,000",1029732840000.0,22in12ms.xls,I23,9,I,23 +4528,2022_tab12_ti_amount_nz_all,2022,tab12,ti,amount,Taxable income,nz,filers,all,16,"$1,000,000 under $1,500,000",398810860000.0,22in12ms.xls,I24,9,I,24 +4529,2022_tab12_ti_amount_nz_all,2022,tab12,ti,amount,Taxable income,nz,filers,all,17,"$1,500,000 under $2,000,000",232503836000.0,22in12ms.xls,I25,9,I,25 +4530,2022_tab12_ti_amount_nz_all,2022,tab12,ti,amount,Taxable income,nz,filers,all,18,"$2,000,000 under $5,000,000",566143508000.0,22in12ms.xls,I26,9,I,26 +4531,2022_tab12_ti_amount_nz_all,2022,tab12,ti,amount,Taxable income,nz,filers,all,19,"$5,000,000 under $10,000,000",329548099000.0,22in12ms.xls,I27,9,I,27 +4532,2022_tab12_ti_amount_nz_all,2022,tab12,ti,amount,Taxable income,nz,filers,all,20,"$10,000,000 or more",938022489000.0,22in12ms.xls,I28,9,I,28 +4533,2022_tab12_ti_count_nz_all,2022,tab12,ti,count,Taxable income — number of returns,nz,filers,all,1,"All returns, total",129349042.0,22in12ms.xls,H9,8,H,9 +4534,2022_tab12_ti_count_nz_all,2022,tab12,ti,count,Taxable income — number of returns,nz,filers,all,2,No adjusted gross income (includes deficits),0.0,22in12ms.xls,H10,8,H,10 +4535,2022_tab12_ti_count_nz_all,2022,tab12,ti,count,Taxable income — number of returns,nz,filers,all,3,"$1 under $5,000",181081.0,22in12ms.xls,H11,8,H,11 +4536,2022_tab12_ti_count_nz_all,2022,tab12,ti,count,Taxable income — number of returns,nz,filers,all,4,"$5,000 under $10,000",171520.0,22in12ms.xls,H12,8,H,12 +4537,2022_tab12_ti_count_nz_all,2022,tab12,ti,count,Taxable income — number of returns,nz,filers,all,5,"$10,000 under $15,000",2568638.0,22in12ms.xls,H13,8,H,13 +4538,2022_tab12_ti_count_nz_all,2022,tab12,ti,count,Taxable income — number of returns,nz,filers,all,6,"$15,000 under $20,000",6078901.0,22in12ms.xls,H14,8,H,14 +4539,2022_tab12_ti_count_nz_all,2022,tab12,ti,count,Taxable income — number of returns,nz,filers,all,7,"$20,000 under $25,000",6813732.0,22in12ms.xls,H15,8,H,15 +4540,2022_tab12_ti_count_nz_all,2022,tab12,ti,count,Taxable income — number of returns,nz,filers,all,8,"$25,000 under $30,000",7425764.0,22in12ms.xls,H16,8,H,16 +4541,2022_tab12_ti_count_nz_all,2022,tab12,ti,count,Taxable income — number of returns,nz,filers,all,9,"$30,000 under $40,000",15678991.0,22in12ms.xls,H17,8,H,17 +4542,2022_tab12_ti_count_nz_all,2022,tab12,ti,count,Taxable income — number of returns,nz,filers,all,10,"$40,000 under $50,000",13208042.0,22in12ms.xls,H18,8,H,18 +4543,2022_tab12_ti_count_nz_all,2022,tab12,ti,count,Taxable income — number of returns,nz,filers,all,11,"$50,000 under $75,000",23729171.0,22in12ms.xls,H19,8,H,19 +4544,2022_tab12_ti_count_nz_all,2022,tab12,ti,count,Taxable income — number of returns,nz,filers,all,12,"$75,000 under $100,000",15144544.0,22in12ms.xls,H20,8,H,20 +4545,2022_tab12_ti_count_nz_all,2022,tab12,ti,count,Taxable income — number of returns,nz,filers,all,13,"$100,000 under $200,000",25858946.0,22in12ms.xls,H21,8,H,21 +4546,2022_tab12_ti_count_nz_all,2022,tab12,ti,count,Taxable income — number of returns,nz,filers,all,14,"$200,000 under $500,000",10012726.0,22in12ms.xls,H22,8,H,22 +4547,2022_tab12_ti_count_nz_all,2022,tab12,ti,count,Taxable income — number of returns,nz,filers,all,15,"$500,000 under $1,000,000",1672890.0,22in12ms.xls,H23,8,H,23 +4548,2022_tab12_ti_count_nz_all,2022,tab12,ti,count,Taxable income — number of returns,nz,filers,all,16,"$1,000,000 under $1,500,000",360624.0,22in12ms.xls,H24,8,H,24 +4549,2022_tab12_ti_count_nz_all,2022,tab12,ti,count,Taxable income — number of returns,nz,filers,all,17,"$1,500,000 under $2,000,000",148065.0,22in12ms.xls,H25,8,H,25 +4550,2022_tab12_ti_count_nz_all,2022,tab12,ti,count,Taxable income — number of returns,nz,filers,all,18,"$2,000,000 under $5,000,000",207905.0,22in12ms.xls,H26,8,H,26 +4551,2022_tab12_ti_count_nz_all,2022,tab12,ti,count,Taxable income — number of returns,nz,filers,all,19,"$5,000,000 under $10,000,000",52914.0,22in12ms.xls,H27,8,H,27 +4552,2022_tab12_ti_count_nz_all,2022,tab12,ti,count,Taxable income — number of returns,nz,filers,all,20,"$10,000,000 or more",34587.0,22in12ms.xls,H28,8,H,28 +4553,2022_tab12_tottax_amount_nz_all,2022,tab12,tottax,amount,Total tax,nz,filers,all,1,"All returns, total",2139922072000.0,22in12ms.xls,M9,13,M,9 +4554,2022_tab12_tottax_amount_nz_all,2022,tab12,tottax,amount,Total tax,nz,filers,all,2,No adjusted gross income (includes deficits),128418000.0,22in12ms.xls,M10,13,M,10 +4555,2022_tab12_tottax_amount_nz_all,2022,tab12,tottax,amount,Total tax,nz,filers,all,3,"$1 under $5,000",18734000.0,22in12ms.xls,M11,13,M,11 +4556,2022_tab12_tottax_amount_nz_all,2022,tab12,tottax,amount,Total tax,nz,filers,all,4,"$5,000 under $10,000",41423000.0,22in12ms.xls,M12,13,M,12 +4557,2022_tab12_tottax_amount_nz_all,2022,tab12,tottax,amount,Total tax,nz,filers,all,5,"$10,000 under $15,000",188178000.0,22in12ms.xls,M13,13,M,13 +4558,2022_tab12_tottax_amount_nz_all,2022,tab12,tottax,amount,Total tax,nz,filers,all,6,"$15,000 under $20,000",1736237000.0,22in12ms.xls,M14,13,M,14 +4559,2022_tab12_tottax_amount_nz_all,2022,tab12,tottax,amount,Total tax,nz,filers,all,7,"$20,000 under $25,000",3804019000.0,22in12ms.xls,M15,13,M,15 +4560,2022_tab12_tottax_amount_nz_all,2022,tab12,tottax,amount,Total tax,nz,filers,all,8,"$25,000 under $30,000",6376403000.0,22in12ms.xls,M16,13,M,16 +4561,2022_tab12_tottax_amount_nz_all,2022,tab12,tottax,amount,Total tax,nz,filers,all,9,"$30,000 under $40,000",21322304000.0,22in12ms.xls,M17,13,M,17 +4562,2022_tab12_tottax_amount_nz_all,2022,tab12,tottax,amount,Total tax,nz,filers,all,10,"$40,000 under $50,000",30309343000.0,22in12ms.xls,M18,13,M,18 +4563,2022_tab12_tottax_amount_nz_all,2022,tab12,tottax,amount,Total tax,nz,filers,all,11,"$50,000 under $75,000",100103598000.0,22in12ms.xls,M19,13,M,19 +4564,2022_tab12_tottax_amount_nz_all,2022,tab12,tottax,amount,Total tax,nz,filers,all,12,"$75,000 under $100,000",113079420000.0,22in12ms.xls,M20,13,M,20 +4565,2022_tab12_tottax_amount_nz_all,2022,tab12,tottax,amount,Total tax,nz,filers,all,13,"$100,000 under $200,000",397758377000.0,22in12ms.xls,M21,13,M,21 +4566,2022_tab12_tottax_amount_nz_all,2022,tab12,tottax,amount,Total tax,nz,filers,all,14,"$200,000 under $500,000",483056987000.0,22in12ms.xls,M22,13,M,22 +4567,2022_tab12_tottax_amount_nz_all,2022,tab12,tottax,amount,Total tax,nz,filers,all,15,"$500,000 under $1,000,000",260282198000.0,22in12ms.xls,M23,13,M,23 +4568,2022_tab12_tottax_amount_nz_all,2022,tab12,tottax,amount,Total tax,nz,filers,all,16,"$1,000,000 under $1,500,000",114003393000.0,22in12ms.xls,M24,13,M,24 +4569,2022_tab12_tottax_amount_nz_all,2022,tab12,tottax,amount,Total tax,nz,filers,all,17,"$1,500,000 under $2,000,000",69338677000.0,22in12ms.xls,M25,13,M,25 +4570,2022_tab12_tottax_amount_nz_all,2022,tab12,tottax,amount,Total tax,nz,filers,all,18,"$2,000,000 under $5,000,000",171825620000.0,22in12ms.xls,M26,13,M,26 +4571,2022_tab12_tottax_amount_nz_all,2022,tab12,tottax,amount,Total tax,nz,filers,all,19,"$5,000,000 under $10,000,000",100262125000.0,22in12ms.xls,M27,13,M,27 +4572,2022_tab12_tottax_amount_nz_all,2022,tab12,tottax,amount,Total tax,nz,filers,all,20,"$10,000,000 or more",266286618000.0,22in12ms.xls,M28,13,M,28 +4573,2022_tab12_tottax_count_nz_all,2022,tab12,tottax,count,Total tax — number of returns,nz,filers,all,1,"All returns, total",110640128.0,22in12ms.xls,L9,12,L,9 +4574,2022_tab12_tottax_count_nz_all,2022,tab12,tottax,count,Total tax — number of returns,nz,filers,all,2,No adjusted gross income (includes deficits),3843.0,22in12ms.xls,L10,12,L,10 +4575,2022_tab12_tottax_count_nz_all,2022,tab12,tottax,count,Total tax — number of returns,nz,filers,all,3,"$1 under $5,000",105475.0,22in12ms.xls,L11,12,L,11 +4576,2022_tab12_tottax_count_nz_all,2022,tab12,tottax,count,Total tax — number of returns,nz,filers,all,4,"$5,000 under $10,000",119109.0,22in12ms.xls,L12,12,L,12 +4577,2022_tab12_tottax_count_nz_all,2022,tab12,tottax,count,Total tax — number of returns,nz,filers,all,5,"$10,000 under $15,000",1370355.0,22in12ms.xls,L13,12,L,13 +4578,2022_tab12_tottax_count_nz_all,2022,tab12,tottax,count,Total tax — number of returns,nz,filers,all,6,"$15,000 under $20,000",4429445.0,22in12ms.xls,L14,12,L,14 +4579,2022_tab12_tottax_count_nz_all,2022,tab12,tottax,count,Total tax — number of returns,nz,filers,all,7,"$20,000 under $25,000",4393888.0,22in12ms.xls,L15,12,L,15 +4580,2022_tab12_tottax_count_nz_all,2022,tab12,tottax,count,Total tax — number of returns,nz,filers,all,8,"$25,000 under $30,000",4801988.0,22in12ms.xls,L16,12,L,16 +4581,2022_tab12_tottax_count_nz_all,2022,tab12,tottax,count,Total tax — number of returns,nz,filers,all,9,"$30,000 under $40,000",10791934.0,22in12ms.xls,L17,12,L,17 +4582,2022_tab12_tottax_count_nz_all,2022,tab12,tottax,count,Total tax — number of returns,nz,filers,all,10,"$40,000 under $50,000",10680343.0,22in12ms.xls,L18,12,L,18 +4583,2022_tab12_tottax_count_nz_all,2022,tab12,tottax,count,Total tax — number of returns,nz,filers,all,11,"$50,000 under $75,000",21378339.0,22in12ms.xls,L19,12,L,19 +4584,2022_tab12_tottax_count_nz_all,2022,tab12,tottax,count,Total tax — number of returns,nz,filers,all,12,"$75,000 under $100,000",14549648.0,22in12ms.xls,L20,12,L,20 +4585,2022_tab12_tottax_count_nz_all,2022,tab12,tottax,count,Total tax — number of returns,nz,filers,all,13,"$100,000 under $200,000",25547389.0,22in12ms.xls,L21,12,L,21 +4586,2022_tab12_tottax_count_nz_all,2022,tab12,tottax,count,Total tax — number of returns,nz,filers,all,14,"$200,000 under $500,000",9992304.0,22in12ms.xls,L22,12,L,22 +4587,2022_tab12_tottax_count_nz_all,2022,tab12,tottax,count,Total tax — number of returns,nz,filers,all,15,"$500,000 under $1,000,000",1672148.0,22in12ms.xls,L23,12,L,23 +4588,2022_tab12_tottax_count_nz_all,2022,tab12,tottax,count,Total tax — number of returns,nz,filers,all,16,"$1,000,000 under $1,500,000",360444.0,22in12ms.xls,L24,12,L,24 +4589,2022_tab12_tottax_count_nz_all,2022,tab12,tottax,count,Total tax — number of returns,nz,filers,all,17,"$1,500,000 under $2,000,000",148056.0,22in12ms.xls,L25,12,L,25 +4590,2022_tab12_tottax_count_nz_all,2022,tab12,tottax,count,Total tax — number of returns,nz,filers,all,18,"$2,000,000 under $5,000,000",207905.0,22in12ms.xls,L26,12,L,26 +4591,2022_tab12_tottax_count_nz_all,2022,tab12,tottax,count,Total tax — number of returns,nz,filers,all,19,"$5,000,000 under $10,000,000",52913.0,22in12ms.xls,L27,12,L,27 +4592,2022_tab12_tottax_count_nz_all,2022,tab12,tottax,count,Total tax — number of returns,nz,filers,all,20,"$10,000,000 or more",34604.0,22in12ms.xls,L28,12,L,28 +4593,2022_tab14_agi_amount_all_all,2022,tab14,agi,amount,Adjusted gross income,all,filers,all,1,"All returns, total",14833956956000.0,22in14ar.xls,C9,3,C,9 +4594,2022_tab14_agi_amount_all_all,2022,tab14,agi,amount,Adjusted gross income,all,filers,all,2,No adjusted gross income,-164160281000.0,22in14ar.xls,C10,3,C,10 +4595,2022_tab14_agi_amount_all_all,2022,tab14,agi,amount,Adjusted gross income,all,filers,all,3,"$1 under $5,000",19538869000.0,22in14ar.xls,C11,3,C,11 +4596,2022_tab14_agi_amount_all_all,2022,tab14,agi,amount,Adjusted gross income,all,filers,all,4,"$5,000 under $10,000",66070756000.0,22in14ar.xls,C12,3,C,12 +4597,2022_tab14_agi_amount_all_all,2022,tab14,agi,amount,Adjusted gross income,all,filers,all,5,"$10,000 under $15,000",120502825000.0,22in14ar.xls,C13,3,C,13 +4598,2022_tab14_agi_amount_all_all,2022,tab14,agi,amount,Adjusted gross income,all,filers,all,6,"$15,000 under $20,000",157738693000.0,22in14ar.xls,C14,3,C,14 +4599,2022_tab14_agi_amount_all_all,2022,tab14,agi,amount,Adjusted gross income,all,filers,all,7,"$20,000 under $25,000",180311082000.0,22in14ar.xls,C15,3,C,15 +4600,2022_tab14_agi_amount_all_all,2022,tab14,agi,amount,Adjusted gross income,all,filers,all,8,"$25,000 under $30,000",219958083000.0,22in14ar.xls,C16,3,C,16 +4601,2022_tab14_agi_amount_all_all,2022,tab14,agi,amount,Adjusted gross income,all,filers,all,9,"$30,000 under $40,000",550490149000.0,22in14ar.xls,C17,3,C,17 +4602,2022_tab14_agi_amount_all_all,2022,tab14,agi,amount,Adjusted gross income,all,filers,all,10,"$40,000 under $50,000",593955496000.0,22in14ar.xls,C18,3,C,18 +4603,2022_tab14_agi_amount_all_all,2022,tab14,agi,amount,Adjusted gross income,all,filers,all,11,"$50,000 under $75,000",1466486055000.0,22in14ar.xls,C19,3,C,19 +4604,2022_tab14_agi_amount_all_all,2022,tab14,agi,amount,Adjusted gross income,all,filers,all,12,"$75,000 under $100,000",1315619561000.0,22in14ar.xls,C20,3,C,20 +4605,2022_tab14_agi_amount_all_all,2022,tab14,agi,amount,Adjusted gross income,all,filers,all,13,"$100,000 under $200,000",3567047571000.0,22in14ar.xls,C21,3,C,21 +4606,2022_tab14_agi_amount_all_all,2022,tab14,agi,amount,Adjusted gross income,all,filers,all,14,"$200,000 under $500,000",2891064828000.0,22in14ar.xls,C22,3,C,22 +4607,2022_tab14_agi_amount_all_all,2022,tab14,agi,amount,Adjusted gross income,all,filers,all,15,"$500,000 under $1,000,000",1124299469000.0,22in14ar.xls,C23,3,C,23 +4608,2022_tab14_agi_amount_all_all,2022,tab14,agi,amount,Adjusted gross income,all,filers,all,16,"$1,000,000 under $1,500,000",435177502000.0,22in14ar.xls,C24,3,C,24 +4609,2022_tab14_agi_amount_all_all,2022,tab14,agi,amount,Adjusted gross income,all,filers,all,17,"$1,500,000 under $2,000,000",254476785000.0,22in14ar.xls,C25,3,C,25 +4610,2022_tab14_agi_amount_all_all,2022,tab14,agi,amount,Adjusted gross income,all,filers,all,18,"$2,000,000 under $5,000,000",621044404000.0,22in14ar.xls,C26,3,C,26 +4611,2022_tab14_agi_amount_all_all,2022,tab14,agi,amount,Adjusted gross income,all,filers,all,19,"$5,000,000 under $10,000,000",362815724000.0,22in14ar.xls,C27,3,C,27 +4612,2022_tab14_agi_amount_all_all,2022,tab14,agi,amount,Adjusted gross income,all,filers,all,20,"$10,000,000 or more",1051519384000.0,22in14ar.xls,C28,3,C,28 +4613,2022_tab14_agi_count_all_all,2022,tab14,agi,count,Number of returns,all,filers,all,1,"All returns, total",161336659.0,22in14ar.xls,B9,2,B,9 +4614,2022_tab14_agi_count_all_all,2022,tab14,agi,count,Number of returns,all,filers,all,2,No adjusted gross income,3254225.0,22in14ar.xls,B10,2,B,10 +4615,2022_tab14_agi_count_all_all,2022,tab14,agi,count,Number of returns,all,filers,all,3,"$1 under $5,000",8195781.0,22in14ar.xls,B11,2,B,11 +4616,2022_tab14_agi_count_all_all,2022,tab14,agi,count,Number of returns,all,filers,all,4,"$5,000 under $10,000",8747727.0,22in14ar.xls,B12,2,B,12 +4617,2022_tab14_agi_count_all_all,2022,tab14,agi,count,Number of returns,all,filers,all,5,"$10,000 under $15,000",9642321.0,22in14ar.xls,B13,2,B,13 +4618,2022_tab14_agi_count_all_all,2022,tab14,agi,count,Number of returns,all,filers,all,6,"$15,000 under $20,000",9058382.0,22in14ar.xls,B14,2,B,14 +4619,2022_tab14_agi_count_all_all,2022,tab14,agi,count,Number of returns,all,filers,all,7,"$20,000 under $25,000",8035277.0,22in14ar.xls,B15,2,B,15 +4620,2022_tab14_agi_count_all_all,2022,tab14,agi,count,Number of returns,all,filers,all,8,"$25,000 under $30,000",8005289.0,22in14ar.xls,B16,2,B,16 +4621,2022_tab14_agi_count_all_all,2022,tab14,agi,count,Number of returns,all,filers,all,9,"$30,000 under $40,000",15771561.0,22in14ar.xls,B17,2,B,17 +4622,2022_tab14_agi_count_all_all,2022,tab14,agi,count,Number of returns,all,filers,all,10,"$40,000 under $50,000",13255063.0,22in14ar.xls,B18,2,B,18 +4623,2022_tab14_agi_count_all_all,2022,tab14,agi,count,Number of returns,all,filers,all,11,"$50,000 under $75,000",23805797.0,22in14ar.xls,B19,2,B,19 +4624,2022_tab14_agi_count_all_all,2022,tab14,agi,count,Number of returns,all,filers,all,12,"$75,000 under $100,000",15181035.0,22in14ar.xls,B20,2,B,20 +4625,2022_tab14_agi_count_all_all,2022,tab14,agi,count,Number of returns,all,filers,all,13,"$100,000 under $200,000",25887136.0,22in14ar.xls,B21,2,B,21 +4626,2022_tab14_agi_count_all_all,2022,tab14,agi,count,Number of returns,all,filers,all,14,"$200,000 under $500,000",10017626.0,22in14ar.xls,B22,2,B,22 +4627,2022_tab14_agi_count_all_all,2022,tab14,agi,count,Number of returns,all,filers,all,15,"$500,000 under $1,000,000",1674608.0,22in14ar.xls,B23,2,B,23 +4628,2022_tab14_agi_count_all_all,2022,tab14,agi,count,Number of returns,all,filers,all,16,"$1,000,000 under $1,500,000",360882.0,22in14ar.xls,B24,2,B,24 +4629,2022_tab14_agi_count_all_all,2022,tab14,agi,count,Number of returns,all,filers,all,17,"$1,500,000 under $2,000,000",148221.0,22in14ar.xls,B25,2,B,25 +4630,2022_tab14_agi_count_all_all,2022,tab14,agi,count,Number of returns,all,filers,all,18,"$2,000,000 under $5,000,000",208129.0,22in14ar.xls,B26,2,B,26 +4631,2022_tab14_agi_count_all_all,2022,tab14,agi,count,Number of returns,all,filers,all,19,"$5,000,000 under $10,000,000",52968.0,22in14ar.xls,B27,2,B,27 +4632,2022_tab14_agi_count_all_all,2022,tab14,agi,count,Number of returns,all,filers,all,20,"$10,000,000 or more",34630.0,22in14ar.xls,B28,2,B,28 +4633,2022_tab14_amt_amount_nz_all,2022,tab14,amt,amount,Alternative minimum tax,nz,filers,all,1,"All returns, total",4101697000.0,22in14ar.xls,EO9,145,EO,9 +4634,2022_tab14_amt_amount_nz_all,2022,tab14,amt,amount,Alternative minimum tax,nz,filers,all,2,No adjusted gross income,139579000.0,22in14ar.xls,EO10,145,EO,10 +4635,2022_tab14_amt_amount_nz_all,2022,tab14,amt,amount,Alternative minimum tax,nz,filers,all,3,"$1 under $5,000",8860000.0,22in14ar.xls,EO11,145,EO,11 +4636,2022_tab14_amt_amount_nz_all,2022,tab14,amt,amount,Alternative minimum tax,nz,filers,all,4,"$5,000 under $10,000",0.0,22in14ar.xls,EO12,145,EO,12 +4637,2022_tab14_amt_amount_nz_all,2022,tab14,amt,amount,Alternative minimum tax,nz,filers,all,5,"$10,000 under $15,000",9869000.0,22in14ar.xls,EO13,145,EO,13 +4638,2022_tab14_amt_amount_nz_all,2022,tab14,amt,amount,Alternative minimum tax,nz,filers,all,6,"$15,000 under $20,000",0.0,22in14ar.xls,EO14,145,EO,14 +4639,2022_tab14_amt_amount_nz_all,2022,tab14,amt,amount,Alternative minimum tax,nz,filers,all,7,"$20,000 under $25,000",13243000.0,22in14ar.xls,EO15,145,EO,15 +4640,2022_tab14_amt_amount_nz_all,2022,tab14,amt,amount,Alternative minimum tax,nz,filers,all,8,"$25,000 under $30,000",191000.0,22in14ar.xls,EO16,145,EO,16 +4641,2022_tab14_amt_amount_nz_all,2022,tab14,amt,amount,Alternative minimum tax,nz,filers,all,9,"$30,000 under $40,000",1315000.0,22in14ar.xls,EO17,145,EO,17 +4642,2022_tab14_amt_amount_nz_all,2022,tab14,amt,amount,Alternative minimum tax,nz,filers,all,10,"$40,000 under $50,000",2761000.0,22in14ar.xls,EO18,145,EO,18 +4643,2022_tab14_amt_amount_nz_all,2022,tab14,amt,amount,Alternative minimum tax,nz,filers,all,11,"$50,000 under $75,000",4554000.0,22in14ar.xls,EO19,145,EO,19 +4644,2022_tab14_amt_amount_nz_all,2022,tab14,amt,amount,Alternative minimum tax,nz,filers,all,12,"$75,000 under $100,000",28095000.0,22in14ar.xls,EO20,145,EO,20 +4645,2022_tab14_amt_amount_nz_all,2022,tab14,amt,amount,Alternative minimum tax,nz,filers,all,13,"$100,000 under $200,000",110219000.0,22in14ar.xls,EO21,145,EO,21 +4646,2022_tab14_amt_amount_nz_all,2022,tab14,amt,amount,Alternative minimum tax,nz,filers,all,14,"$200,000 under $500,000",695476000.0,22in14ar.xls,EO22,145,EO,22 +4647,2022_tab14_amt_amount_nz_all,2022,tab14,amt,amount,Alternative minimum tax,nz,filers,all,15,"$500,000 under $1,000,000",641456000.0,22in14ar.xls,EO23,145,EO,23 +4648,2022_tab14_amt_amount_nz_all,2022,tab14,amt,amount,Alternative minimum tax,nz,filers,all,16,"$1,000,000 under $1,500,000",518268000.0,22in14ar.xls,EO24,145,EO,24 +4649,2022_tab14_amt_amount_nz_all,2022,tab14,amt,amount,Alternative minimum tax,nz,filers,all,17,"$1,500,000 under $2,000,000",476876000.0,22in14ar.xls,EO25,145,EO,25 +4650,2022_tab14_amt_amount_nz_all,2022,tab14,amt,amount,Alternative minimum tax,nz,filers,all,18,"$2,000,000 under $5,000,000",739425000.0,22in14ar.xls,EO26,145,EO,26 +4651,2022_tab14_amt_amount_nz_all,2022,tab14,amt,amount,Alternative minimum tax,nz,filers,all,19,"$5,000,000 under $10,000,000",239748000.0,22in14ar.xls,EO27,145,EO,27 +4652,2022_tab14_amt_amount_nz_all,2022,tab14,amt,amount,Alternative minimum tax,nz,filers,all,20,"$10,000,000 or more",471761000.0,22in14ar.xls,EO28,145,EO,28 +4653,2022_tab14_amt_count_nz_all,2022,tab14,amt,count,Alternative minimum tax — number of returns,nz,filers,all,1,"All returns, total",198059.0,22in14ar.xls,EN9,144,EN,9 +4654,2022_tab14_amt_count_nz_all,2022,tab14,amt,count,Alternative minimum tax — number of returns,nz,filers,all,2,No adjusted gross income,4127.0,22in14ar.xls,EN10,144,EN,10 +4655,2022_tab14_amt_count_nz_all,2022,tab14,amt,count,Alternative minimum tax — number of returns,nz,filers,all,3,"$1 under $5,000",1024.0,22in14ar.xls,EN11,144,EN,11 +4656,2022_tab14_amt_count_nz_all,2022,tab14,amt,count,Alternative minimum tax — number of returns,nz,filers,all,4,"$5,000 under $10,000",0.0,22in14ar.xls,EN12,144,EN,12 +4657,2022_tab14_amt_count_nz_all,2022,tab14,amt,count,Alternative minimum tax — number of returns,nz,filers,all,5,"$10,000 under $15,000",1169.0,22in14ar.xls,EN13,144,EN,13 +4658,2022_tab14_amt_count_nz_all,2022,tab14,amt,count,Alternative minimum tax — number of returns,nz,filers,all,6,"$15,000 under $20,000",0.0,22in14ar.xls,EN14,144,EN,14 +4659,2022_tab14_amt_count_nz_all,2022,tab14,amt,count,Alternative minimum tax — number of returns,nz,filers,all,7,"$20,000 under $25,000",68.0,22in14ar.xls,EN15,144,EN,15 +4660,2022_tab14_amt_count_nz_all,2022,tab14,amt,count,Alternative minimum tax — number of returns,nz,filers,all,8,"$25,000 under $30,000",209.0,22in14ar.xls,EN16,144,EN,16 +4661,2022_tab14_amt_count_nz_all,2022,tab14,amt,count,Alternative minimum tax — number of returns,nz,filers,all,9,"$30,000 under $40,000",766.0,22in14ar.xls,EN17,144,EN,17 +4662,2022_tab14_amt_count_nz_all,2022,tab14,amt,count,Alternative minimum tax — number of returns,nz,filers,all,10,"$40,000 under $50,000",463.0,22in14ar.xls,EN18,144,EN,18 +4663,2022_tab14_amt_count_nz_all,2022,tab14,amt,count,Alternative minimum tax — number of returns,nz,filers,all,11,"$50,000 under $75,000",509.0,22in14ar.xls,EN19,144,EN,19 +4664,2022_tab14_amt_count_nz_all,2022,tab14,amt,count,Alternative minimum tax — number of returns,nz,filers,all,12,"$75,000 under $100,000",2039.0,22in14ar.xls,EN20,144,EN,20 +4665,2022_tab14_amt_count_nz_all,2022,tab14,amt,count,Alternative minimum tax — number of returns,nz,filers,all,13,"$100,000 under $200,000",15081.0,22in14ar.xls,EN21,144,EN,21 +4666,2022_tab14_amt_count_nz_all,2022,tab14,amt,count,Alternative minimum tax — number of returns,nz,filers,all,14,"$200,000 under $500,000",39907.0,22in14ar.xls,EN22,144,EN,22 +4667,2022_tab14_amt_count_nz_all,2022,tab14,amt,count,Alternative minimum tax — number of returns,nz,filers,all,15,"$500,000 under $1,000,000",31511.0,22in14ar.xls,EN23,144,EN,23 +4668,2022_tab14_amt_count_nz_all,2022,tab14,amt,count,Alternative minimum tax — number of returns,nz,filers,all,16,"$1,000,000 under $1,500,000",27826.0,22in14ar.xls,EN24,144,EN,24 +4669,2022_tab14_amt_count_nz_all,2022,tab14,amt,count,Alternative minimum tax — number of returns,nz,filers,all,17,"$1,500,000 under $2,000,000",23214.0,22in14ar.xls,EN25,144,EN,25 +4670,2022_tab14_amt_count_nz_all,2022,tab14,amt,count,Alternative minimum tax — number of returns,nz,filers,all,18,"$2,000,000 under $5,000,000",35322.0,22in14ar.xls,EN26,144,EN,26 +4671,2022_tab14_amt_count_nz_all,2022,tab14,amt,count,Alternative minimum tax — number of returns,nz,filers,all,19,"$5,000,000 under $10,000,000",8587.0,22in14ar.xls,EN27,144,EN,27 +4672,2022_tab14_amt_count_nz_all,2022,tab14,amt,count,Alternative minimum tax — number of returns,nz,filers,all,20,"$10,000,000 or more",6237.0,22in14ar.xls,EN28,144,EN,28 +4673,2022_tab14_busprofincome_amount_gt0_all,2022,tab14,busprofincome,amount,Business net income (profit),gt0,filers,all,1,"All returns, total",543564980000.0,22in14ar.xls,AG9,33,AG,9 +4674,2022_tab14_busprofincome_amount_gt0_all,2022,tab14,busprofincome,amount,Business net income (profit),gt0,filers,all,2,No adjusted gross income,4257779000.0,22in14ar.xls,AG10,33,AG,10 +4675,2022_tab14_busprofincome_amount_gt0_all,2022,tab14,busprofincome,amount,Business net income (profit),gt0,filers,all,3,"$1 under $5,000",4846784000.0,22in14ar.xls,AG11,33,AG,11 +4676,2022_tab14_busprofincome_amount_gt0_all,2022,tab14,busprofincome,amount,Business net income (profit),gt0,filers,all,4,"$5,000 under $10,000",10536163000.0,22in14ar.xls,AG12,33,AG,12 +4677,2022_tab14_busprofincome_amount_gt0_all,2022,tab14,busprofincome,amount,Business net income (profit),gt0,filers,all,5,"$10,000 under $15,000",23775556000.0,22in14ar.xls,AG13,33,AG,13 +4678,2022_tab14_busprofincome_amount_gt0_all,2022,tab14,busprofincome,amount,Business net income (profit),gt0,filers,all,6,"$15,000 under $20,000",25668295000.0,22in14ar.xls,AG14,33,AG,14 +4679,2022_tab14_busprofincome_amount_gt0_all,2022,tab14,busprofincome,amount,Business net income (profit),gt0,filers,all,7,"$20,000 under $25,000",17560336000.0,22in14ar.xls,AG15,33,AG,15 +4680,2022_tab14_busprofincome_amount_gt0_all,2022,tab14,busprofincome,amount,Business net income (profit),gt0,filers,all,8,"$25,000 under $30,000",16468043000.0,22in14ar.xls,AG16,33,AG,16 +4681,2022_tab14_busprofincome_amount_gt0_all,2022,tab14,busprofincome,amount,Business net income (profit),gt0,filers,all,9,"$30,000 under $40,000",28615046000.0,22in14ar.xls,AG17,33,AG,17 +4682,2022_tab14_busprofincome_amount_gt0_all,2022,tab14,busprofincome,amount,Business net income (profit),gt0,filers,all,10,"$40,000 under $50,000",23231693000.0,22in14ar.xls,AG18,33,AG,18 +4683,2022_tab14_busprofincome_amount_gt0_all,2022,tab14,busprofincome,amount,Business net income (profit),gt0,filers,all,11,"$50,000 under $75,000",45622131000.0,22in14ar.xls,AG19,33,AG,19 +4684,2022_tab14_busprofincome_amount_gt0_all,2022,tab14,busprofincome,amount,Business net income (profit),gt0,filers,all,12,"$75,000 under $100,000",37229434000.0,22in14ar.xls,AG20,33,AG,20 +4685,2022_tab14_busprofincome_amount_gt0_all,2022,tab14,busprofincome,amount,Business net income (profit),gt0,filers,all,13,"$100,000 under $200,000",102878354000.0,22in14ar.xls,AG21,33,AG,21 +4686,2022_tab14_busprofincome_amount_gt0_all,2022,tab14,busprofincome,amount,Business net income (profit),gt0,filers,all,14,"$200,000 under $500,000",103480907000.0,22in14ar.xls,AG22,33,AG,22 +4687,2022_tab14_busprofincome_amount_gt0_all,2022,tab14,busprofincome,amount,Business net income (profit),gt0,filers,all,15,"$500,000 under $1,000,000",43196167000.0,22in14ar.xls,AG23,33,AG,23 +4688,2022_tab14_busprofincome_amount_gt0_all,2022,tab14,busprofincome,amount,Business net income (profit),gt0,filers,all,16,"$1,000,000 under $1,500,000",15635538000.0,22in14ar.xls,AG24,33,AG,24 +4689,2022_tab14_busprofincome_amount_gt0_all,2022,tab14,busprofincome,amount,Business net income (profit),gt0,filers,all,17,"$1,500,000 under $2,000,000",8068249000.0,22in14ar.xls,AG25,33,AG,25 +4690,2022_tab14_busprofincome_amount_gt0_all,2022,tab14,busprofincome,amount,Business net income (profit),gt0,filers,all,18,"$2,000,000 under $5,000,000",15476265000.0,22in14ar.xls,AG26,33,AG,26 +4691,2022_tab14_busprofincome_amount_gt0_all,2022,tab14,busprofincome,amount,Business net income (profit),gt0,filers,all,19,"$5,000,000 under $10,000,000",6585206000.0,22in14ar.xls,AG27,33,AG,27 +4692,2022_tab14_busprofincome_amount_gt0_all,2022,tab14,busprofincome,amount,Business net income (profit),gt0,filers,all,20,"$10,000,000 or more",10433033000.0,22in14ar.xls,AG28,33,AG,28 +4693,2022_tab14_busprofincome_amount_lt0_all,2022,tab14,busprofincome,amount,Business net loss,lt0,filers,all,1,"All returns, total",133172174000.0,22in14ar.xls,AI9,35,AI,9 +4694,2022_tab14_busprofincome_amount_lt0_all,2022,tab14,busprofincome,amount,Business net loss,lt0,filers,all,2,No adjusted gross income,24055163000.0,22in14ar.xls,AI10,35,AI,10 +4695,2022_tab14_busprofincome_amount_lt0_all,2022,tab14,busprofincome,amount,Business net loss,lt0,filers,all,3,"$1 under $5,000",1243038000.0,22in14ar.xls,AI11,35,AI,11 +4696,2022_tab14_busprofincome_amount_lt0_all,2022,tab14,busprofincome,amount,Business net loss,lt0,filers,all,4,"$5,000 under $10,000",3390070000.0,22in14ar.xls,AI12,35,AI,12 +4697,2022_tab14_busprofincome_amount_lt0_all,2022,tab14,busprofincome,amount,Business net loss,lt0,filers,all,5,"$10,000 under $15,000",4750759000.0,22in14ar.xls,AI13,35,AI,13 +4698,2022_tab14_busprofincome_amount_lt0_all,2022,tab14,busprofincome,amount,Business net loss,lt0,filers,all,6,"$15,000 under $20,000",6523057000.0,22in14ar.xls,AI14,35,AI,14 +4699,2022_tab14_busprofincome_amount_lt0_all,2022,tab14,busprofincome,amount,Business net loss,lt0,filers,all,7,"$20,000 under $25,000",6844014000.0,22in14ar.xls,AI15,35,AI,15 +4700,2022_tab14_busprofincome_amount_lt0_all,2022,tab14,busprofincome,amount,Business net loss,lt0,filers,all,8,"$25,000 under $30,000",6144470000.0,22in14ar.xls,AI16,35,AI,16 +4701,2022_tab14_busprofincome_amount_lt0_all,2022,tab14,busprofincome,amount,Business net loss,lt0,filers,all,9,"$30,000 under $40,000",10660469000.0,22in14ar.xls,AI17,35,AI,17 +4702,2022_tab14_busprofincome_amount_lt0_all,2022,tab14,busprofincome,amount,Business net loss,lt0,filers,all,10,"$40,000 under $50,000",7999679000.0,22in14ar.xls,AI18,35,AI,18 +4703,2022_tab14_busprofincome_amount_lt0_all,2022,tab14,busprofincome,amount,Business net loss,lt0,filers,all,11,"$50,000 under $75,000",11430440000.0,22in14ar.xls,AI19,35,AI,19 +4704,2022_tab14_busprofincome_amount_lt0_all,2022,tab14,busprofincome,amount,Business net loss,lt0,filers,all,12,"$75,000 under $100,000",8340188000.0,22in14ar.xls,AI20,35,AI,20 +4705,2022_tab14_busprofincome_amount_lt0_all,2022,tab14,busprofincome,amount,Business net loss,lt0,filers,all,13,"$100,000 under $200,000",17942473000.0,22in14ar.xls,AI21,35,AI,21 +4706,2022_tab14_busprofincome_amount_lt0_all,2022,tab14,busprofincome,amount,Business net loss,lt0,filers,all,14,"$200,000 under $500,000",10344497000.0,22in14ar.xls,AI22,35,AI,22 +4707,2022_tab14_busprofincome_amount_lt0_all,2022,tab14,busprofincome,amount,Business net loss,lt0,filers,all,15,"$500,000 under $1,000,000",3813934000.0,22in14ar.xls,AI23,35,AI,23 +4708,2022_tab14_busprofincome_amount_lt0_all,2022,tab14,busprofincome,amount,Business net loss,lt0,filers,all,16,"$1,000,000 under $1,500,000",1560220000.0,22in14ar.xls,AI24,35,AI,24 +4709,2022_tab14_busprofincome_amount_lt0_all,2022,tab14,busprofincome,amount,Business net loss,lt0,filers,all,17,"$1,500,000 under $2,000,000",961547000.0,22in14ar.xls,AI25,35,AI,25 +4710,2022_tab14_busprofincome_amount_lt0_all,2022,tab14,busprofincome,amount,Business net loss,lt0,filers,all,18,"$2,000,000 under $5,000,000",2413058000.0,22in14ar.xls,AI26,35,AI,26 +4711,2022_tab14_busprofincome_amount_lt0_all,2022,tab14,busprofincome,amount,Business net loss,lt0,filers,all,19,"$5,000,000 under $10,000,000",1394148000.0,22in14ar.xls,AI27,35,AI,27 +4712,2022_tab14_busprofincome_amount_lt0_all,2022,tab14,busprofincome,amount,Business net loss,lt0,filers,all,20,"$10,000,000 or more",3360952000.0,22in14ar.xls,AI28,35,AI,28 +4713,2022_tab14_busprofincome_count_gt0_all,2022,tab14,busprofincome,count,Business income — number of returns with profit,gt0,filers,all,1,"All returns, total",21969832.0,22in14ar.xls,AF9,32,AF,9 +4714,2022_tab14_busprofincome_count_gt0_all,2022,tab14,busprofincome,count,Business income — number of returns with profit,gt0,filers,all,2,No adjusted gross income,196114.0,22in14ar.xls,AF10,32,AF,10 +4715,2022_tab14_busprofincome_count_gt0_all,2022,tab14,busprofincome,count,Business income — number of returns with profit,gt0,filers,all,3,"$1 under $5,000",1751591.0,22in14ar.xls,AF11,32,AF,11 +4716,2022_tab14_busprofincome_count_gt0_all,2022,tab14,busprofincome,count,Business income — number of returns with profit,gt0,filers,all,4,"$5,000 under $10,000",1561927.0,22in14ar.xls,AF12,32,AF,12 +4717,2022_tab14_busprofincome_count_gt0_all,2022,tab14,busprofincome,count,Business income — number of returns with profit,gt0,filers,all,5,"$10,000 under $15,000",2288452.0,22in14ar.xls,AF13,32,AF,13 +4718,2022_tab14_busprofincome_count_gt0_all,2022,tab14,busprofincome,count,Business income — number of returns with profit,gt0,filers,all,6,"$15,000 under $20,000",1919766.0,22in14ar.xls,AF14,32,AF,14 +4719,2022_tab14_busprofincome_count_gt0_all,2022,tab14,busprofincome,count,Business income — number of returns with profit,gt0,filers,all,7,"$20,000 under $25,000",1153051.0,22in14ar.xls,AF15,32,AF,15 +4720,2022_tab14_busprofincome_count_gt0_all,2022,tab14,busprofincome,count,Business income — number of returns with profit,gt0,filers,all,8,"$25,000 under $30,000",962362.0,22in14ar.xls,AF16,32,AF,16 +4721,2022_tab14_busprofincome_count_gt0_all,2022,tab14,busprofincome,count,Business income — number of returns with profit,gt0,filers,all,9,"$30,000 under $40,000",1538395.0,22in14ar.xls,AF17,32,AF,17 +4722,2022_tab14_busprofincome_count_gt0_all,2022,tab14,busprofincome,count,Business income — number of returns with profit,gt0,filers,all,10,"$40,000 under $50,000",1243032.0,22in14ar.xls,AF18,32,AF,18 +4723,2022_tab14_busprofincome_count_gt0_all,2022,tab14,busprofincome,count,Business income — number of returns with profit,gt0,filers,all,11,"$50,000 under $75,000",2292029.0,22in14ar.xls,AF19,32,AF,19 +4724,2022_tab14_busprofincome_count_gt0_all,2022,tab14,busprofincome,count,Business income — number of returns with profit,gt0,filers,all,12,"$75,000 under $100,000",1647929.0,22in14ar.xls,AF20,32,AF,20 +4725,2022_tab14_busprofincome_count_gt0_all,2022,tab14,busprofincome,count,Business income — number of returns with profit,gt0,filers,all,13,"$100,000 under $200,000",3325549.0,22in14ar.xls,AF21,32,AF,21 +4726,2022_tab14_busprofincome_count_gt0_all,2022,tab14,busprofincome,count,Business income — number of returns with profit,gt0,filers,all,14,"$200,000 under $500,000",1614884.0,22in14ar.xls,AF22,32,AF,22 +4727,2022_tab14_busprofincome_count_gt0_all,2022,tab14,busprofincome,count,Business income — number of returns with profit,gt0,filers,all,15,"$500,000 under $1,000,000",316777.0,22in14ar.xls,AF23,32,AF,23 +4728,2022_tab14_busprofincome_count_gt0_all,2022,tab14,busprofincome,count,Business income — number of returns with profit,gt0,filers,all,16,"$1,000,000 under $1,500,000",71381.0,22in14ar.xls,AF24,32,AF,24 +4729,2022_tab14_busprofincome_count_gt0_all,2022,tab14,busprofincome,count,Business income — number of returns with profit,gt0,filers,all,17,"$1,500,000 under $2,000,000",30837.0,22in14ar.xls,AF25,32,AF,25 +4730,2022_tab14_busprofincome_count_gt0_all,2022,tab14,busprofincome,count,Business income — number of returns with profit,gt0,filers,all,18,"$2,000,000 under $5,000,000",39323.0,22in14ar.xls,AF26,32,AF,26 +4731,2022_tab14_busprofincome_count_gt0_all,2022,tab14,busprofincome,count,Business income — number of returns with profit,gt0,filers,all,19,"$5,000,000 under $10,000,000",9772.0,22in14ar.xls,AF27,32,AF,27 +4732,2022_tab14_busprofincome_count_gt0_all,2022,tab14,busprofincome,count,Business income — number of returns with profit,gt0,filers,all,20,"$10,000,000 or more",6659.0,22in14ar.xls,AF28,32,AF,28 +4733,2022_tab14_busprofincome_count_lt0_all,2022,tab14,busprofincome,count,Business income — number of returns with loss,lt0,filers,all,1,"All returns, total",8386569.0,22in14ar.xls,AH9,34,AH,9 +4734,2022_tab14_busprofincome_count_lt0_all,2022,tab14,busprofincome,count,Business income — number of returns with loss,lt0,filers,all,2,No adjusted gross income,602612.0,22in14ar.xls,AH10,34,AH,10 +4735,2022_tab14_busprofincome_count_lt0_all,2022,tab14,busprofincome,count,Business income — number of returns with loss,lt0,filers,all,3,"$1 under $5,000",129781.0,22in14ar.xls,AH11,34,AH,11 +4736,2022_tab14_busprofincome_count_lt0_all,2022,tab14,busprofincome,count,Business income — number of returns with loss,lt0,filers,all,4,"$5,000 under $10,000",252209.0,22in14ar.xls,AH12,34,AH,12 +4737,2022_tab14_busprofincome_count_lt0_all,2022,tab14,busprofincome,count,Business income — number of returns with loss,lt0,filers,all,5,"$10,000 under $15,000",371397.0,22in14ar.xls,AH13,34,AH,13 +4738,2022_tab14_busprofincome_count_lt0_all,2022,tab14,busprofincome,count,Business income — number of returns with loss,lt0,filers,all,6,"$15,000 under $20,000",444902.0,22in14ar.xls,AH14,34,AH,14 +4739,2022_tab14_busprofincome_count_lt0_all,2022,tab14,busprofincome,count,Business income — number of returns with loss,lt0,filers,all,7,"$20,000 under $25,000",479727.0,22in14ar.xls,AH15,34,AH,15 +4740,2022_tab14_busprofincome_count_lt0_all,2022,tab14,busprofincome,count,Business income — number of returns with loss,lt0,filers,all,8,"$25,000 under $30,000",459319.0,22in14ar.xls,AH16,34,AH,16 +4741,2022_tab14_busprofincome_count_lt0_all,2022,tab14,busprofincome,count,Business income — number of returns with loss,lt0,filers,all,9,"$30,000 under $40,000",820104.0,22in14ar.xls,AH17,34,AH,17 +4742,2022_tab14_busprofincome_count_lt0_all,2022,tab14,busprofincome,count,Business income — number of returns with loss,lt0,filers,all,10,"$40,000 under $50,000",617875.0,22in14ar.xls,AH18,34,AH,18 +4743,2022_tab14_busprofincome_count_lt0_all,2022,tab14,busprofincome,count,Business income — number of returns with loss,lt0,filers,all,11,"$50,000 under $75,000",1150596.0,22in14ar.xls,AH19,34,AH,19 +4744,2022_tab14_busprofincome_count_lt0_all,2022,tab14,busprofincome,count,Business income — number of returns with loss,lt0,filers,all,12,"$75,000 under $100,000",806887.0,22in14ar.xls,AH20,34,AH,20 +4745,2022_tab14_busprofincome_count_lt0_all,2022,tab14,busprofincome,count,Business income — number of returns with loss,lt0,filers,all,13,"$100,000 under $200,000",1501233.0,22in14ar.xls,AH21,34,AH,21 +4746,2022_tab14_busprofincome_count_lt0_all,2022,tab14,busprofincome,count,Business income — number of returns with loss,lt0,filers,all,14,"$200,000 under $500,000",589269.0,22in14ar.xls,AH22,34,AH,22 +4747,2022_tab14_busprofincome_count_lt0_all,2022,tab14,busprofincome,count,Business income — number of returns with loss,lt0,filers,all,15,"$500,000 under $1,000,000",105357.0,22in14ar.xls,AH23,34,AH,23 +4748,2022_tab14_busprofincome_count_lt0_all,2022,tab14,busprofincome,count,Business income — number of returns with loss,lt0,filers,all,16,"$1,000,000 under $1,500,000",23767.0,22in14ar.xls,AH24,34,AH,24 +4749,2022_tab14_busprofincome_count_lt0_all,2022,tab14,busprofincome,count,Business income — number of returns with loss,lt0,filers,all,17,"$1,500,000 under $2,000,000",9380.0,22in14ar.xls,AH25,34,AH,25 +4750,2022_tab14_busprofincome_count_lt0_all,2022,tab14,busprofincome,count,Business income — number of returns with loss,lt0,filers,all,18,"$2,000,000 under $5,000,000",14471.0,22in14ar.xls,AH26,34,AH,26 +4751,2022_tab14_busprofincome_count_lt0_all,2022,tab14,busprofincome,count,Business income — number of returns with loss,lt0,filers,all,19,"$5,000,000 under $10,000,000",4170.0,22in14ar.xls,AH27,34,AH,27 +4752,2022_tab14_busprofincome_count_lt0_all,2022,tab14,busprofincome,count,Business income — number of returns with loss,lt0,filers,all,20,"$10,000,000 or more",3512.0,22in14ar.xls,AH28,34,AH,28 +4753,2022_tab14_cgdist_amount_nz_all,2022,tab14,cgdist,amount,Capital gain distributions,nz,filers,all,1,"All returns, total",12863423000.0,22in14ar.xls,AK9,37,AK,9 +4754,2022_tab14_cgdist_amount_nz_all,2022,tab14,cgdist,amount,Capital gain distributions,nz,filers,all,2,No adjusted gross income,88131000.0,22in14ar.xls,AK10,37,AK,10 +4755,2022_tab14_cgdist_amount_nz_all,2022,tab14,cgdist,amount,Capital gain distributions,nz,filers,all,3,"$1 under $5,000",86558000.0,22in14ar.xls,AK11,37,AK,11 +4756,2022_tab14_cgdist_amount_nz_all,2022,tab14,cgdist,amount,Capital gain distributions,nz,filers,all,4,"$5,000 under $10,000",182403000.0,22in14ar.xls,AK12,37,AK,12 +4757,2022_tab14_cgdist_amount_nz_all,2022,tab14,cgdist,amount,Capital gain distributions,nz,filers,all,5,"$10,000 under $15,000",188178000.0,22in14ar.xls,AK13,37,AK,13 +4758,2022_tab14_cgdist_amount_nz_all,2022,tab14,cgdist,amount,Capital gain distributions,nz,filers,all,6,"$15,000 under $20,000",215886000.0,22in14ar.xls,AK14,37,AK,14 +4759,2022_tab14_cgdist_amount_nz_all,2022,tab14,cgdist,amount,Capital gain distributions,nz,filers,all,7,"$20,000 under $25,000",154072000.0,22in14ar.xls,AK15,37,AK,15 +4760,2022_tab14_cgdist_amount_nz_all,2022,tab14,cgdist,amount,Capital gain distributions,nz,filers,all,8,"$25,000 under $30,000",185113000.0,22in14ar.xls,AK16,37,AK,16 +4761,2022_tab14_cgdist_amount_nz_all,2022,tab14,cgdist,amount,Capital gain distributions,nz,filers,all,9,"$30,000 under $40,000",421788000.0,22in14ar.xls,AK17,37,AK,17 +4762,2022_tab14_cgdist_amount_nz_all,2022,tab14,cgdist,amount,Capital gain distributions,nz,filers,all,10,"$40,000 under $50,000",308187000.0,22in14ar.xls,AK18,37,AK,18 +4763,2022_tab14_cgdist_amount_nz_all,2022,tab14,cgdist,amount,Capital gain distributions,nz,filers,all,11,"$50,000 under $75,000",1186628000.0,22in14ar.xls,AK19,37,AK,19 +4764,2022_tab14_cgdist_amount_nz_all,2022,tab14,cgdist,amount,Capital gain distributions,nz,filers,all,12,"$75,000 under $100,000",1359330000.0,22in14ar.xls,AK20,37,AK,20 +4765,2022_tab14_cgdist_amount_nz_all,2022,tab14,cgdist,amount,Capital gain distributions,nz,filers,all,13,"$100,000 under $200,000",4073791000.0,22in14ar.xls,AK21,37,AK,21 +4766,2022_tab14_cgdist_amount_nz_all,2022,tab14,cgdist,amount,Capital gain distributions,nz,filers,all,14,"$200,000 under $500,000",3461697000.0,22in14ar.xls,AK22,37,AK,22 +4767,2022_tab14_cgdist_amount_nz_all,2022,tab14,cgdist,amount,Capital gain distributions,nz,filers,all,15,"$500,000 under $1,000,000",951661000.0,22in14ar.xls,AK23,37,AK,23 +4768,2022_tab14_cgdist_amount_nz_all,2022,tab14,cgdist,amount,Capital gain distributions,nz,filers,all,16,"$1,000,000 under $1,500,000",0.0,22in14ar.xls,AK24,37,AK,24 +4769,2022_tab14_cgdist_amount_nz_all,2022,tab14,cgdist,amount,Capital gain distributions,nz,filers,all,17,"$1,500,000 under $2,000,000",0.0,22in14ar.xls,AK25,37,AK,25 +4770,2022_tab14_cgdist_amount_nz_all,2022,tab14,cgdist,amount,Capital gain distributions,nz,filers,all,18,"$2,000,000 under $5,000,000",0.0,22in14ar.xls,AK26,37,AK,26 +4771,2022_tab14_cgdist_amount_nz_all,2022,tab14,cgdist,amount,Capital gain distributions,nz,filers,all,19,"$5,000,000 under $10,000,000",0.0,22in14ar.xls,AK27,37,AK,27 +4772,2022_tab14_cgdist_amount_nz_all,2022,tab14,cgdist,amount,Capital gain distributions,nz,filers,all,20,"$10,000,000 or more",0.0,22in14ar.xls,AK28,37,AK,28 +4773,2022_tab14_cgdist_count_nz_all,2022,tab14,cgdist,count,Capital gain distributions — number of returns,nz,filers,all,1,"All returns, total",3980047.0,22in14ar.xls,AJ9,36,AJ,9 +4774,2022_tab14_cgdist_count_nz_all,2022,tab14,cgdist,count,Capital gain distributions — number of returns,nz,filers,all,2,No adjusted gross income,27012.0,22in14ar.xls,AJ10,36,AJ,10 +4775,2022_tab14_cgdist_count_nz_all,2022,tab14,cgdist,count,Capital gain distributions — number of returns,nz,filers,all,3,"$1 under $5,000",132582.0,22in14ar.xls,AJ11,36,AJ,11 +4776,2022_tab14_cgdist_count_nz_all,2022,tab14,cgdist,count,Capital gain distributions — number of returns,nz,filers,all,4,"$5,000 under $10,000",130890.0,22in14ar.xls,AJ12,36,AJ,12 +4777,2022_tab14_cgdist_count_nz_all,2022,tab14,cgdist,count,Capital gain distributions — number of returns,nz,filers,all,5,"$10,000 under $15,000",106473.0,22in14ar.xls,AJ13,36,AJ,13 +4778,2022_tab14_cgdist_count_nz_all,2022,tab14,cgdist,count,Capital gain distributions — number of returns,nz,filers,all,6,"$15,000 under $20,000",111615.0,22in14ar.xls,AJ14,36,AJ,14 +4779,2022_tab14_cgdist_count_nz_all,2022,tab14,cgdist,count,Capital gain distributions — number of returns,nz,filers,all,7,"$20,000 under $25,000",99575.0,22in14ar.xls,AJ15,36,AJ,15 +4780,2022_tab14_cgdist_count_nz_all,2022,tab14,cgdist,count,Capital gain distributions — number of returns,nz,filers,all,8,"$25,000 under $30,000",94978.0,22in14ar.xls,AJ16,36,AJ,16 +4781,2022_tab14_cgdist_count_nz_all,2022,tab14,cgdist,count,Capital gain distributions — number of returns,nz,filers,all,9,"$30,000 under $40,000",222677.0,22in14ar.xls,AJ17,36,AJ,17 +4782,2022_tab14_cgdist_count_nz_all,2022,tab14,cgdist,count,Capital gain distributions — number of returns,nz,filers,all,10,"$40,000 under $50,000",191959.0,22in14ar.xls,AJ18,36,AJ,18 +4783,2022_tab14_cgdist_count_nz_all,2022,tab14,cgdist,count,Capital gain distributions — number of returns,nz,filers,all,11,"$50,000 under $75,000",546979.0,22in14ar.xls,AJ19,36,AJ,19 +4784,2022_tab14_cgdist_count_nz_all,2022,tab14,cgdist,count,Capital gain distributions — number of returns,nz,filers,all,12,"$75,000 under $100,000",523797.0,22in14ar.xls,AJ20,36,AJ,20 +4785,2022_tab14_cgdist_count_nz_all,2022,tab14,cgdist,count,Capital gain distributions — number of returns,nz,filers,all,13,"$100,000 under $200,000",1191091.0,22in14ar.xls,AJ21,36,AJ,21 +4786,2022_tab14_cgdist_count_nz_all,2022,tab14,cgdist,count,Capital gain distributions — number of returns,nz,filers,all,14,"$200,000 under $500,000",522256.0,22in14ar.xls,AJ22,36,AJ,22 +4787,2022_tab14_cgdist_count_nz_all,2022,tab14,cgdist,count,Capital gain distributions — number of returns,nz,filers,all,15,"$500,000 under $1,000,000",78163.0,22in14ar.xls,AJ23,36,AJ,23 +4788,2022_tab14_cgdist_count_nz_all,2022,tab14,cgdist,count,Capital gain distributions — number of returns,nz,filers,all,16,"$1,000,000 under $1,500,000",0.0,22in14ar.xls,AJ24,36,AJ,24 +4789,2022_tab14_cgdist_count_nz_all,2022,tab14,cgdist,count,Capital gain distributions — number of returns,nz,filers,all,17,"$1,500,000 under $2,000,000",0.0,22in14ar.xls,AJ25,36,AJ,25 +4790,2022_tab14_cgdist_count_nz_all,2022,tab14,cgdist,count,Capital gain distributions — number of returns,nz,filers,all,18,"$2,000,000 under $5,000,000",0.0,22in14ar.xls,AJ26,36,AJ,26 +4791,2022_tab14_cgdist_count_nz_all,2022,tab14,cgdist,count,Capital gain distributions — number of returns,nz,filers,all,19,"$5,000,000 under $10,000,000",0.0,22in14ar.xls,AJ27,36,AJ,27 +4792,2022_tab14_cgdist_count_nz_all,2022,tab14,cgdist,count,Capital gain distributions — number of returns,nz,filers,all,20,"$10,000,000 or more",0.0,22in14ar.xls,AJ28,36,AJ,28 +4793,2022_tab14_cgtaxable_amount_gt0_all,2022,tab14,cgtaxable,amount,Net capital gain,gt0,filers,all,1,"All returns, total",1269785083000.0,22in14ar.xls,AM9,39,AM,9 +4794,2022_tab14_cgtaxable_amount_gt0_all,2022,tab14,cgtaxable,amount,Net capital gain,gt0,filers,all,2,No adjusted gross income,15131125000.0,22in14ar.xls,AM10,39,AM,10 +4795,2022_tab14_cgtaxable_amount_gt0_all,2022,tab14,cgtaxable,amount,Net capital gain,gt0,filers,all,3,"$1 under $5,000",655402000.0,22in14ar.xls,AM11,39,AM,11 +4796,2022_tab14_cgtaxable_amount_gt0_all,2022,tab14,cgtaxable,amount,Net capital gain,gt0,filers,all,4,"$5,000 under $10,000",1075066000.0,22in14ar.xls,AM12,39,AM,12 +4797,2022_tab14_cgtaxable_amount_gt0_all,2022,tab14,cgtaxable,amount,Net capital gain,gt0,filers,all,5,"$10,000 under $15,000",1256699000.0,22in14ar.xls,AM13,39,AM,13 +4798,2022_tab14_cgtaxable_amount_gt0_all,2022,tab14,cgtaxable,amount,Net capital gain,gt0,filers,all,6,"$15,000 under $20,000",1258729000.0,22in14ar.xls,AM14,39,AM,14 +4799,2022_tab14_cgtaxable_amount_gt0_all,2022,tab14,cgtaxable,amount,Net capital gain,gt0,filers,all,7,"$20,000 under $25,000",1537561000.0,22in14ar.xls,AM15,39,AM,15 +4800,2022_tab14_cgtaxable_amount_gt0_all,2022,tab14,cgtaxable,amount,Net capital gain,gt0,filers,all,8,"$25,000 under $30,000",1784653000.0,22in14ar.xls,AM16,39,AM,16 +4801,2022_tab14_cgtaxable_amount_gt0_all,2022,tab14,cgtaxable,amount,Net capital gain,gt0,filers,all,9,"$30,000 under $40,000",3981590000.0,22in14ar.xls,AM17,39,AM,17 +4802,2022_tab14_cgtaxable_amount_gt0_all,2022,tab14,cgtaxable,amount,Net capital gain,gt0,filers,all,10,"$40,000 under $50,000",3384009000.0,22in14ar.xls,AM18,39,AM,18 +4803,2022_tab14_cgtaxable_amount_gt0_all,2022,tab14,cgtaxable,amount,Net capital gain,gt0,filers,all,11,"$50,000 under $75,000",13328918000.0,22in14ar.xls,AM19,39,AM,19 +4804,2022_tab14_cgtaxable_amount_gt0_all,2022,tab14,cgtaxable,amount,Net capital gain,gt0,filers,all,12,"$75,000 under $100,000",14586283000.0,22in14ar.xls,AM20,39,AM,20 +4805,2022_tab14_cgtaxable_amount_gt0_all,2022,tab14,cgtaxable,amount,Net capital gain,gt0,filers,all,13,"$100,000 under $200,000",69765168000.0,22in14ar.xls,AM21,39,AM,21 +4806,2022_tab14_cgtaxable_amount_gt0_all,2022,tab14,cgtaxable,amount,Net capital gain,gt0,filers,all,14,"$200,000 under $500,000",150434000000.0,22in14ar.xls,AM22,39,AM,22 +4807,2022_tab14_cgtaxable_amount_gt0_all,2022,tab14,cgtaxable,amount,Net capital gain,gt0,filers,all,15,"$500,000 under $1,000,000",122254903000.0,22in14ar.xls,AM23,39,AM,23 +4808,2022_tab14_cgtaxable_amount_gt0_all,2022,tab14,cgtaxable,amount,Net capital gain,gt0,filers,all,16,"$1,000,000 under $1,500,000",68052040000.0,22in14ar.xls,AM24,39,AM,24 +4809,2022_tab14_cgtaxable_amount_gt0_all,2022,tab14,cgtaxable,amount,Net capital gain,gt0,filers,all,17,"$1,500,000 under $2,000,000",45324707000.0,22in14ar.xls,AM25,39,AM,25 +4810,2022_tab14_cgtaxable_amount_gt0_all,2022,tab14,cgtaxable,amount,Net capital gain,gt0,filers,all,18,"$2,000,000 under $5,000,000",145075477000.0,22in14ar.xls,AM26,39,AM,26 +4811,2022_tab14_cgtaxable_amount_gt0_all,2022,tab14,cgtaxable,amount,Net capital gain,gt0,filers,all,19,"$5,000,000 under $10,000,000",109907460000.0,22in14ar.xls,AM27,39,AM,27 +4812,2022_tab14_cgtaxable_amount_gt0_all,2022,tab14,cgtaxable,amount,Net capital gain,gt0,filers,all,20,"$10,000,000 or more",500991294000.0,22in14ar.xls,AM28,39,AM,28 +4813,2022_tab14_cgtaxable_amount_lt0_all,2022,tab14,cgtaxable,amount,Net capital loss,lt0,filers,all,1,"All returns, total",28874408000.0,22in14ar.xls,AO9,41,AO,9 +4814,2022_tab14_cgtaxable_amount_lt0_all,2022,tab14,cgtaxable,amount,Net capital loss,lt0,filers,all,2,No adjusted gross income,1236717000.0,22in14ar.xls,AO10,41,AO,10 +4815,2022_tab14_cgtaxable_amount_lt0_all,2022,tab14,cgtaxable,amount,Net capital loss,lt0,filers,all,3,"$1 under $5,000",734893000.0,22in14ar.xls,AO11,41,AO,11 +4816,2022_tab14_cgtaxable_amount_lt0_all,2022,tab14,cgtaxable,amount,Net capital loss,lt0,filers,all,4,"$5,000 under $10,000",658940000.0,22in14ar.xls,AO12,41,AO,12 +4817,2022_tab14_cgtaxable_amount_lt0_all,2022,tab14,cgtaxable,amount,Net capital loss,lt0,filers,all,5,"$10,000 under $15,000",658840000.0,22in14ar.xls,AO13,41,AO,13 +4818,2022_tab14_cgtaxable_amount_lt0_all,2022,tab14,cgtaxable,amount,Net capital loss,lt0,filers,all,6,"$15,000 under $20,000",590974000.0,22in14ar.xls,AO14,41,AO,14 +4819,2022_tab14_cgtaxable_amount_lt0_all,2022,tab14,cgtaxable,amount,Net capital loss,lt0,filers,all,7,"$20,000 under $25,000",564018000.0,22in14ar.xls,AO15,41,AO,15 +4820,2022_tab14_cgtaxable_amount_lt0_all,2022,tab14,cgtaxable,amount,Net capital loss,lt0,filers,all,8,"$25,000 under $30,000",581279000.0,22in14ar.xls,AO16,41,AO,16 +4821,2022_tab14_cgtaxable_amount_lt0_all,2022,tab14,cgtaxable,amount,Net capital loss,lt0,filers,all,9,"$30,000 under $40,000",1232466000.0,22in14ar.xls,AO17,41,AO,17 +4822,2022_tab14_cgtaxable_amount_lt0_all,2022,tab14,cgtaxable,amount,Net capital loss,lt0,filers,all,10,"$40,000 under $50,000",1246685000.0,22in14ar.xls,AO18,41,AO,18 +4823,2022_tab14_cgtaxable_amount_lt0_all,2022,tab14,cgtaxable,amount,Net capital loss,lt0,filers,all,11,"$50,000 under $75,000",3057870000.0,22in14ar.xls,AO19,41,AO,19 +4824,2022_tab14_cgtaxable_amount_lt0_all,2022,tab14,cgtaxable,amount,Net capital loss,lt0,filers,all,12,"$75,000 under $100,000",2905088000.0,22in14ar.xls,AO20,41,AO,20 +4825,2022_tab14_cgtaxable_amount_lt0_all,2022,tab14,cgtaxable,amount,Net capital loss,lt0,filers,all,13,"$100,000 under $200,000",7466456000.0,22in14ar.xls,AO21,41,AO,21 +4826,2022_tab14_cgtaxable_amount_lt0_all,2022,tab14,cgtaxable,amount,Net capital loss,lt0,filers,all,14,"$200,000 under $500,000",5705378000.0,22in14ar.xls,AO22,41,AO,22 +4827,2022_tab14_cgtaxable_amount_lt0_all,2022,tab14,cgtaxable,amount,Net capital loss,lt0,filers,all,15,"$500,000 under $1,000,000",1467163000.0,22in14ar.xls,AO23,41,AO,23 +4828,2022_tab14_cgtaxable_amount_lt0_all,2022,tab14,cgtaxable,amount,Net capital loss,lt0,filers,all,16,"$1,000,000 under $1,500,000",350146000.0,22in14ar.xls,AO24,41,AO,24 +4829,2022_tab14_cgtaxable_amount_lt0_all,2022,tab14,cgtaxable,amount,Net capital loss,lt0,filers,all,17,"$1,500,000 under $2,000,000",143678000.0,22in14ar.xls,AO25,41,AO,25 +4830,2022_tab14_cgtaxable_amount_lt0_all,2022,tab14,cgtaxable,amount,Net capital loss,lt0,filers,all,18,"$2,000,000 under $5,000,000",200629000.0,22in14ar.xls,AO26,41,AO,26 +4831,2022_tab14_cgtaxable_amount_lt0_all,2022,tab14,cgtaxable,amount,Net capital loss,lt0,filers,all,19,"$5,000,000 under $10,000,000",48564000.0,22in14ar.xls,AO27,41,AO,27 +4832,2022_tab14_cgtaxable_amount_lt0_all,2022,tab14,cgtaxable,amount,Net capital loss,lt0,filers,all,20,"$10,000,000 or more",24625000.0,22in14ar.xls,AO28,41,AO,28 +4833,2022_tab14_cgtaxable_count_gt0_all,2022,tab14,cgtaxable,count,Capital gains — number of returns with net gain,gt0,filers,all,1,"All returns, total",12915122.0,22in14ar.xls,AL9,38,AL,9 +4834,2022_tab14_cgtaxable_count_gt0_all,2022,tab14,cgtaxable,count,Capital gains — number of returns with net gain,gt0,filers,all,2,No adjusted gross income,149100.0,22in14ar.xls,AL10,38,AL,10 +4835,2022_tab14_cgtaxable_count_gt0_all,2022,tab14,cgtaxable,count,Capital gains — number of returns with net gain,gt0,filers,all,3,"$1 under $5,000",220363.0,22in14ar.xls,AL11,38,AL,11 +4836,2022_tab14_cgtaxable_count_gt0_all,2022,tab14,cgtaxable,count,Capital gains — number of returns with net gain,gt0,filers,all,4,"$5,000 under $10,000",229680.0,22in14ar.xls,AL12,38,AL,12 +4837,2022_tab14_cgtaxable_count_gt0_all,2022,tab14,cgtaxable,count,Capital gains — number of returns with net gain,gt0,filers,all,5,"$10,000 under $15,000",242744.0,22in14ar.xls,AL13,38,AL,13 +4838,2022_tab14_cgtaxable_count_gt0_all,2022,tab14,cgtaxable,count,Capital gains — number of returns with net gain,gt0,filers,all,6,"$15,000 under $20,000",230900.0,22in14ar.xls,AL14,38,AL,14 +4839,2022_tab14_cgtaxable_count_gt0_all,2022,tab14,cgtaxable,count,Capital gains — number of returns with net gain,gt0,filers,all,7,"$20,000 under $25,000",253315.0,22in14ar.xls,AL15,38,AL,15 +4840,2022_tab14_cgtaxable_count_gt0_all,2022,tab14,cgtaxable,count,Capital gains — number of returns with net gain,gt0,filers,all,8,"$25,000 under $30,000",225968.0,22in14ar.xls,AL16,38,AL,16 +4841,2022_tab14_cgtaxable_count_gt0_all,2022,tab14,cgtaxable,count,Capital gains — number of returns with net gain,gt0,filers,all,9,"$30,000 under $40,000",482246.0,22in14ar.xls,AL17,38,AL,17 +4842,2022_tab14_cgtaxable_count_gt0_all,2022,tab14,cgtaxable,count,Capital gains — number of returns with net gain,gt0,filers,all,10,"$40,000 under $50,000",527948.0,22in14ar.xls,AL18,38,AL,18 +4843,2022_tab14_cgtaxable_count_gt0_all,2022,tab14,cgtaxable,count,Capital gains — number of returns with net gain,gt0,filers,all,11,"$50,000 under $75,000",1476041.0,22in14ar.xls,AL19,38,AL,19 +4844,2022_tab14_cgtaxable_count_gt0_all,2022,tab14,cgtaxable,count,Capital gains — number of returns with net gain,gt0,filers,all,12,"$75,000 under $100,000",1307848.0,22in14ar.xls,AL20,38,AL,20 +4845,2022_tab14_cgtaxable_count_gt0_all,2022,tab14,cgtaxable,count,Capital gains — number of returns with net gain,gt0,filers,all,13,"$100,000 under $200,000",3616111.0,22in14ar.xls,AL21,38,AL,21 +4846,2022_tab14_cgtaxable_count_gt0_all,2022,tab14,cgtaxable,count,Capital gains — number of returns with net gain,gt0,filers,all,14,"$200,000 under $500,000",2796324.0,22in14ar.xls,AL22,38,AL,22 +4847,2022_tab14_cgtaxable_count_gt0_all,2022,tab14,cgtaxable,count,Capital gains — number of returns with net gain,gt0,filers,all,15,"$500,000 under $1,000,000",716042.0,22in14ar.xls,AL23,38,AL,23 +4848,2022_tab14_cgtaxable_count_gt0_all,2022,tab14,cgtaxable,count,Capital gains — number of returns with net gain,gt0,filers,all,16,"$1,000,000 under $1,500,000",183121.0,22in14ar.xls,AL24,38,AL,24 +4849,2022_tab14_cgtaxable_count_gt0_all,2022,tab14,cgtaxable,count,Capital gains — number of returns with net gain,gt0,filers,all,17,"$1,500,000 under $2,000,000",79790.0,22in14ar.xls,AL25,38,AL,25 +4850,2022_tab14_cgtaxable_count_gt0_all,2022,tab14,cgtaxable,count,Capital gains — number of returns with net gain,gt0,filers,all,18,"$2,000,000 under $5,000,000",119204.0,22in14ar.xls,AL26,38,AL,26 +4851,2022_tab14_cgtaxable_count_gt0_all,2022,tab14,cgtaxable,count,Capital gains — number of returns with net gain,gt0,filers,all,19,"$5,000,000 under $10,000,000",33310.0,22in14ar.xls,AL27,38,AL,27 +4852,2022_tab14_cgtaxable_count_gt0_all,2022,tab14,cgtaxable,count,Capital gains — number of returns with net gain,gt0,filers,all,20,"$10,000,000 or more",25066.0,22in14ar.xls,AL28,38,AL,28 +4853,2022_tab14_cgtaxable_count_lt0_all,2022,tab14,cgtaxable,count,Capital gains — number of returns with net loss,lt0,filers,all,1,"All returns, total",13565876.0,22in14ar.xls,AN9,40,AN,9 +4854,2022_tab14_cgtaxable_count_lt0_all,2022,tab14,cgtaxable,count,Capital gains — number of returns with net loss,lt0,filers,all,2,No adjusted gross income,498407.0,22in14ar.xls,AN10,40,AN,10 +4855,2022_tab14_cgtaxable_count_lt0_all,2022,tab14,cgtaxable,count,Capital gains — number of returns with net loss,lt0,filers,all,3,"$1 under $5,000",392041.0,22in14ar.xls,AN11,40,AN,11 +4856,2022_tab14_cgtaxable_count_lt0_all,2022,tab14,cgtaxable,count,Capital gains — number of returns with net loss,lt0,filers,all,4,"$5,000 under $10,000",341472.0,22in14ar.xls,AN12,40,AN,12 +4857,2022_tab14_cgtaxable_count_lt0_all,2022,tab14,cgtaxable,count,Capital gains — number of returns with net loss,lt0,filers,all,5,"$10,000 under $15,000",360608.0,22in14ar.xls,AN13,40,AN,13 +4858,2022_tab14_cgtaxable_count_lt0_all,2022,tab14,cgtaxable,count,Capital gains — number of returns with net loss,lt0,filers,all,6,"$15,000 under $20,000",290222.0,22in14ar.xls,AN14,40,AN,14 +4859,2022_tab14_cgtaxable_count_lt0_all,2022,tab14,cgtaxable,count,Capital gains — number of returns with net loss,lt0,filers,all,7,"$20,000 under $25,000",302514.0,22in14ar.xls,AN15,40,AN,15 +4860,2022_tab14_cgtaxable_count_lt0_all,2022,tab14,cgtaxable,count,Capital gains — number of returns with net loss,lt0,filers,all,8,"$25,000 under $30,000",301308.0,22in14ar.xls,AN16,40,AN,16 +4861,2022_tab14_cgtaxable_count_lt0_all,2022,tab14,cgtaxable,count,Capital gains — number of returns with net loss,lt0,filers,all,9,"$30,000 under $40,000",628156.0,22in14ar.xls,AN17,40,AN,17 +4862,2022_tab14_cgtaxable_count_lt0_all,2022,tab14,cgtaxable,count,Capital gains — number of returns with net loss,lt0,filers,all,10,"$40,000 under $50,000",642162.0,22in14ar.xls,AN18,40,AN,18 +4863,2022_tab14_cgtaxable_count_lt0_all,2022,tab14,cgtaxable,count,Capital gains — number of returns with net loss,lt0,filers,all,11,"$50,000 under $75,000",1560956.0,22in14ar.xls,AN19,40,AN,19 +4864,2022_tab14_cgtaxable_count_lt0_all,2022,tab14,cgtaxable,count,Capital gains — number of returns with net loss,lt0,filers,all,12,"$75,000 under $100,000",1406649.0,22in14ar.xls,AN20,40,AN,20 +4865,2022_tab14_cgtaxable_count_lt0_all,2022,tab14,cgtaxable,count,Capital gains — number of returns with net loss,lt0,filers,all,13,"$100,000 under $200,000",3526750.0,22in14ar.xls,AN21,40,AN,21 +4866,2022_tab14_cgtaxable_count_lt0_all,2022,tab14,cgtaxable,count,Capital gains — number of returns with net loss,lt0,filers,all,14,"$200,000 under $500,000",2479090.0,22in14ar.xls,AN22,40,AN,22 +4867,2022_tab14_cgtaxable_count_lt0_all,2022,tab14,cgtaxable,count,Capital gains — number of returns with net loss,lt0,filers,all,15,"$500,000 under $1,000,000",561543.0,22in14ar.xls,AN23,40,AN,23 +4868,2022_tab14_cgtaxable_count_lt0_all,2022,tab14,cgtaxable,count,Capital gains — number of returns with net loss,lt0,filers,all,16,"$1,000,000 under $1,500,000",126982.0,22in14ar.xls,AN24,40,AN,24 +4869,2022_tab14_cgtaxable_count_lt0_all,2022,tab14,cgtaxable,count,Capital gains — number of returns with net loss,lt0,filers,all,17,"$1,500,000 under $2,000,000",51411.0,22in14ar.xls,AN25,40,AN,25 +4870,2022_tab14_cgtaxable_count_lt0_all,2022,tab14,cgtaxable,count,Capital gains — number of returns with net loss,lt0,filers,all,18,"$2,000,000 under $5,000,000",70293.0,22in14ar.xls,AN26,40,AN,26 +4871,2022_tab14_cgtaxable_count_lt0_all,2022,tab14,cgtaxable,count,Capital gains — number of returns with net loss,lt0,filers,all,19,"$5,000,000 under $10,000,000",16807.0,22in14ar.xls,AN27,40,AN,27 +4872,2022_tab14_cgtaxable_count_lt0_all,2022,tab14,cgtaxable,count,Capital gains — number of returns with net loss,lt0,filers,all,20,"$10,000,000 or more",8508.0,22in14ar.xls,AN28,40,AN,28 +4873,2022_tab14_estateincome_amount_gt0_all,2022,tab14,estateincome,amount,Estate and trust net income,gt0,filers,all,1,"All returns, total",53472482000.0,22in14ar.xls,BY9,77,BY,9 +4874,2022_tab14_estateincome_amount_gt0_all,2022,tab14,estateincome,amount,Estate and trust net income,gt0,filers,all,2,No adjusted gross income,426623000.0,22in14ar.xls,BY10,77,BY,10 +4875,2022_tab14_estateincome_amount_gt0_all,2022,tab14,estateincome,amount,Estate and trust net income,gt0,filers,all,3,"$1 under $5,000",16099000.0,22in14ar.xls,BY11,77,BY,11 +4876,2022_tab14_estateincome_amount_gt0_all,2022,tab14,estateincome,amount,Estate and trust net income,gt0,filers,all,4,"$5,000 under $10,000",33162000.0,22in14ar.xls,BY12,77,BY,12 +4877,2022_tab14_estateincome_amount_gt0_all,2022,tab14,estateincome,amount,Estate and trust net income,gt0,filers,all,5,"$10,000 under $15,000",91789000.0,22in14ar.xls,BY13,77,BY,13 +4878,2022_tab14_estateincome_amount_gt0_all,2022,tab14,estateincome,amount,Estate and trust net income,gt0,filers,all,6,"$15,000 under $20,000",59252000.0,22in14ar.xls,BY14,77,BY,14 +4879,2022_tab14_estateincome_amount_gt0_all,2022,tab14,estateincome,amount,Estate and trust net income,gt0,filers,all,7,"$20,000 under $25,000",111552000.0,22in14ar.xls,BY15,77,BY,15 +4880,2022_tab14_estateincome_amount_gt0_all,2022,tab14,estateincome,amount,Estate and trust net income,gt0,filers,all,8,"$25,000 under $30,000",57771000.0,22in14ar.xls,BY16,77,BY,16 +4881,2022_tab14_estateincome_amount_gt0_all,2022,tab14,estateincome,amount,Estate and trust net income,gt0,filers,all,9,"$30,000 under $40,000",165277000.0,22in14ar.xls,BY17,77,BY,17 +4882,2022_tab14_estateincome_amount_gt0_all,2022,tab14,estateincome,amount,Estate and trust net income,gt0,filers,all,10,"$40,000 under $50,000",239340000.0,22in14ar.xls,BY18,77,BY,18 +4883,2022_tab14_estateincome_amount_gt0_all,2022,tab14,estateincome,amount,Estate and trust net income,gt0,filers,all,11,"$50,000 under $75,000",649247000.0,22in14ar.xls,BY19,77,BY,19 +4884,2022_tab14_estateincome_amount_gt0_all,2022,tab14,estateincome,amount,Estate and trust net income,gt0,filers,all,12,"$75,000 under $100,000",957756000.0,22in14ar.xls,BY20,77,BY,20 +4885,2022_tab14_estateincome_amount_gt0_all,2022,tab14,estateincome,amount,Estate and trust net income,gt0,filers,all,13,"$100,000 under $200,000",4600362000.0,22in14ar.xls,BY21,77,BY,21 +4886,2022_tab14_estateincome_amount_gt0_all,2022,tab14,estateincome,amount,Estate and trust net income,gt0,filers,all,14,"$200,000 under $500,000",8862591000.0,22in14ar.xls,BY22,77,BY,22 +4887,2022_tab14_estateincome_amount_gt0_all,2022,tab14,estateincome,amount,Estate and trust net income,gt0,filers,all,15,"$500,000 under $1,000,000",6163237000.0,22in14ar.xls,BY23,77,BY,23 +4888,2022_tab14_estateincome_amount_gt0_all,2022,tab14,estateincome,amount,Estate and trust net income,gt0,filers,all,16,"$1,000,000 under $1,500,000",3222361000.0,22in14ar.xls,BY24,77,BY,24 +4889,2022_tab14_estateincome_amount_gt0_all,2022,tab14,estateincome,amount,Estate and trust net income,gt0,filers,all,17,"$1,500,000 under $2,000,000",2067472000.0,22in14ar.xls,BY25,77,BY,25 +4890,2022_tab14_estateincome_amount_gt0_all,2022,tab14,estateincome,amount,Estate and trust net income,gt0,filers,all,18,"$2,000,000 under $5,000,000",6768795000.0,22in14ar.xls,BY26,77,BY,26 +4891,2022_tab14_estateincome_amount_gt0_all,2022,tab14,estateincome,amount,Estate and trust net income,gt0,filers,all,19,"$5,000,000 under $10,000,000",5093480000.0,22in14ar.xls,BY27,77,BY,27 +4892,2022_tab14_estateincome_amount_gt0_all,2022,tab14,estateincome,amount,Estate and trust net income,gt0,filers,all,20,"$10,000,000 or more",13886316000.0,22in14ar.xls,BY28,77,BY,28 +4893,2022_tab14_estateincome_amount_lt0_all,2022,tab14,estateincome,amount,Estate and trust net loss,lt0,filers,all,1,"All returns, total",5757408000.0,22in14ar.xls,CA9,79,CA,9 +4894,2022_tab14_estateincome_amount_lt0_all,2022,tab14,estateincome,amount,Estate and trust net loss,lt0,filers,all,2,No adjusted gross income,1488712000.0,22in14ar.xls,CA10,79,CA,10 +4895,2022_tab14_estateincome_amount_lt0_all,2022,tab14,estateincome,amount,Estate and trust net loss,lt0,filers,all,3,"$1 under $5,000",21227000.0,22in14ar.xls,CA11,79,CA,11 +4896,2022_tab14_estateincome_amount_lt0_all,2022,tab14,estateincome,amount,Estate and trust net loss,lt0,filers,all,4,"$5,000 under $10,000",0.0,22in14ar.xls,CA12,79,CA,12 +4897,2022_tab14_estateincome_amount_lt0_all,2022,tab14,estateincome,amount,Estate and trust net loss,lt0,filers,all,5,"$10,000 under $15,000",7080000.0,22in14ar.xls,CA13,79,CA,13 +4898,2022_tab14_estateincome_amount_lt0_all,2022,tab14,estateincome,amount,Estate and trust net loss,lt0,filers,all,6,"$15,000 under $20,000",35627000.0,22in14ar.xls,CA14,79,CA,14 +4899,2022_tab14_estateincome_amount_lt0_all,2022,tab14,estateincome,amount,Estate and trust net loss,lt0,filers,all,7,"$20,000 under $25,000",10916000.0,22in14ar.xls,CA15,79,CA,15 +4900,2022_tab14_estateincome_amount_lt0_all,2022,tab14,estateincome,amount,Estate and trust net loss,lt0,filers,all,8,"$25,000 under $30,000",0.0,22in14ar.xls,CA16,79,CA,16 +4901,2022_tab14_estateincome_amount_lt0_all,2022,tab14,estateincome,amount,Estate and trust net loss,lt0,filers,all,9,"$30,000 under $40,000",17087000.0,22in14ar.xls,CA17,79,CA,17 +4902,2022_tab14_estateincome_amount_lt0_all,2022,tab14,estateincome,amount,Estate and trust net loss,lt0,filers,all,10,"$40,000 under $50,000",5993000.0,22in14ar.xls,CA18,79,CA,18 +4903,2022_tab14_estateincome_amount_lt0_all,2022,tab14,estateincome,amount,Estate and trust net loss,lt0,filers,all,11,"$50,000 under $75,000",17322000.0,22in14ar.xls,CA19,79,CA,19 +4904,2022_tab14_estateincome_amount_lt0_all,2022,tab14,estateincome,amount,Estate and trust net loss,lt0,filers,all,12,"$75,000 under $100,000",114386000.0,22in14ar.xls,CA20,79,CA,20 +4905,2022_tab14_estateincome_amount_lt0_all,2022,tab14,estateincome,amount,Estate and trust net loss,lt0,filers,all,13,"$100,000 under $200,000",248044000.0,22in14ar.xls,CA21,79,CA,21 +4906,2022_tab14_estateincome_amount_lt0_all,2022,tab14,estateincome,amount,Estate and trust net loss,lt0,filers,all,14,"$200,000 under $500,000",359748000.0,22in14ar.xls,CA22,79,CA,22 +4907,2022_tab14_estateincome_amount_lt0_all,2022,tab14,estateincome,amount,Estate and trust net loss,lt0,filers,all,15,"$500,000 under $1,000,000",405601000.0,22in14ar.xls,CA23,79,CA,23 +4908,2022_tab14_estateincome_amount_lt0_all,2022,tab14,estateincome,amount,Estate and trust net loss,lt0,filers,all,16,"$1,000,000 under $1,500,000",300625000.0,22in14ar.xls,CA24,79,CA,24 +4909,2022_tab14_estateincome_amount_lt0_all,2022,tab14,estateincome,amount,Estate and trust net loss,lt0,filers,all,17,"$1,500,000 under $2,000,000",189236000.0,22in14ar.xls,CA25,79,CA,25 +4910,2022_tab14_estateincome_amount_lt0_all,2022,tab14,estateincome,amount,Estate and trust net loss,lt0,filers,all,18,"$2,000,000 under $5,000,000",658365000.0,22in14ar.xls,CA26,79,CA,26 +4911,2022_tab14_estateincome_amount_lt0_all,2022,tab14,estateincome,amount,Estate and trust net loss,lt0,filers,all,19,"$5,000,000 under $10,000,000",401366000.0,22in14ar.xls,CA27,79,CA,27 +4912,2022_tab14_estateincome_amount_lt0_all,2022,tab14,estateincome,amount,Estate and trust net loss,lt0,filers,all,20,"$10,000,000 or more",1476075000.0,22in14ar.xls,CA28,79,CA,28 +4913,2022_tab14_estateincome_count_gt0_all,2022,tab14,estateincome,count,Estate/trust income — number with income,gt0,filers,all,1,"All returns, total",628572.0,22in14ar.xls,BX9,76,BX,9 +4914,2022_tab14_estateincome_count_gt0_all,2022,tab14,estateincome,count,Estate/trust income — number with income,gt0,filers,all,2,No adjusted gross income,11074.0,22in14ar.xls,BX10,76,BX,10 +4915,2022_tab14_estateincome_count_gt0_all,2022,tab14,estateincome,count,Estate/trust income — number with income,gt0,filers,all,3,"$1 under $5,000",4266.0,22in14ar.xls,BX11,76,BX,11 +4916,2022_tab14_estateincome_count_gt0_all,2022,tab14,estateincome,count,Estate/trust income — number with income,gt0,filers,all,4,"$5,000 under $10,000",8632.0,22in14ar.xls,BX12,76,BX,12 +4917,2022_tab14_estateincome_count_gt0_all,2022,tab14,estateincome,count,Estate/trust income — number with income,gt0,filers,all,5,"$10,000 under $15,000",9052.0,22in14ar.xls,BX13,76,BX,13 +4918,2022_tab14_estateincome_count_gt0_all,2022,tab14,estateincome,count,Estate/trust income — number with income,gt0,filers,all,6,"$15,000 under $20,000",11488.0,22in14ar.xls,BX14,76,BX,14 +4919,2022_tab14_estateincome_count_gt0_all,2022,tab14,estateincome,count,Estate/trust income — number with income,gt0,filers,all,7,"$20,000 under $25,000",13195.0,22in14ar.xls,BX15,76,BX,15 +4920,2022_tab14_estateincome_count_gt0_all,2022,tab14,estateincome,count,Estate/trust income — number with income,gt0,filers,all,8,"$25,000 under $30,000",8642.0,22in14ar.xls,BX16,76,BX,16 +4921,2022_tab14_estateincome_count_gt0_all,2022,tab14,estateincome,count,Estate/trust income — number with income,gt0,filers,all,9,"$30,000 under $40,000",22538.0,22in14ar.xls,BX17,76,BX,17 +4922,2022_tab14_estateincome_count_gt0_all,2022,tab14,estateincome,count,Estate/trust income — number with income,gt0,filers,all,10,"$40,000 under $50,000",18888.0,22in14ar.xls,BX18,76,BX,18 +4923,2022_tab14_estateincome_count_gt0_all,2022,tab14,estateincome,count,Estate/trust income — number with income,gt0,filers,all,11,"$50,000 under $75,000",52530.0,22in14ar.xls,BX19,76,BX,19 +4924,2022_tab14_estateincome_count_gt0_all,2022,tab14,estateincome,count,Estate/trust income — number with income,gt0,filers,all,12,"$75,000 under $100,000",49406.0,22in14ar.xls,BX20,76,BX,20 +4925,2022_tab14_estateincome_count_gt0_all,2022,tab14,estateincome,count,Estate/trust income — number with income,gt0,filers,all,13,"$100,000 under $200,000",182421.0,22in14ar.xls,BX21,76,BX,21 +4926,2022_tab14_estateincome_count_gt0_all,2022,tab14,estateincome,count,Estate/trust income — number with income,gt0,filers,all,14,"$200,000 under $500,000",151205.0,22in14ar.xls,BX22,76,BX,22 +4927,2022_tab14_estateincome_count_gt0_all,2022,tab14,estateincome,count,Estate/trust income — number with income,gt0,filers,all,15,"$500,000 under $1,000,000",43878.0,22in14ar.xls,BX23,76,BX,23 +4928,2022_tab14_estateincome_count_gt0_all,2022,tab14,estateincome,count,Estate/trust income — number with income,gt0,filers,all,16,"$1,000,000 under $1,500,000",14506.0,22in14ar.xls,BX24,76,BX,24 +4929,2022_tab14_estateincome_count_gt0_all,2022,tab14,estateincome,count,Estate/trust income — number with income,gt0,filers,all,17,"$1,500,000 under $2,000,000",7036.0,22in14ar.xls,BX25,76,BX,25 +4930,2022_tab14_estateincome_count_gt0_all,2022,tab14,estateincome,count,Estate/trust income — number with income,gt0,filers,all,18,"$2,000,000 under $5,000,000",11987.0,22in14ar.xls,BX26,76,BX,26 +4931,2022_tab14_estateincome_count_gt0_all,2022,tab14,estateincome,count,Estate/trust income — number with income,gt0,filers,all,19,"$5,000,000 under $10,000,000",4342.0,22in14ar.xls,BX27,76,BX,27 +4932,2022_tab14_estateincome_count_gt0_all,2022,tab14,estateincome,count,Estate/trust income — number with income,gt0,filers,all,20,"$10,000,000 or more",3486.0,22in14ar.xls,BX28,76,BX,28 +4933,2022_tab14_estateincome_count_lt0_all,2022,tab14,estateincome,count,Estate/trust income — number with loss,lt0,filers,all,1,"All returns, total",47355.0,22in14ar.xls,BZ9,78,BZ,9 +4934,2022_tab14_estateincome_count_lt0_all,2022,tab14,estateincome,count,Estate/trust income — number with loss,lt0,filers,all,2,No adjusted gross income,3049.0,22in14ar.xls,BZ10,78,BZ,10 +4935,2022_tab14_estateincome_count_lt0_all,2022,tab14,estateincome,count,Estate/trust income — number with loss,lt0,filers,all,3,"$1 under $5,000",1023.0,22in14ar.xls,BZ11,78,BZ,11 +4936,2022_tab14_estateincome_count_lt0_all,2022,tab14,estateincome,count,Estate/trust income — number with loss,lt0,filers,all,4,"$5,000 under $10,000",0.0,22in14ar.xls,BZ12,78,BZ,12 +4937,2022_tab14_estateincome_count_lt0_all,2022,tab14,estateincome,count,Estate/trust income — number with loss,lt0,filers,all,5,"$10,000 under $15,000",1015.0,22in14ar.xls,BZ13,78,BZ,13 +4938,2022_tab14_estateincome_count_lt0_all,2022,tab14,estateincome,count,Estate/trust income — number with loss,lt0,filers,all,6,"$15,000 under $20,000",2000.0,22in14ar.xls,BZ14,78,BZ,14 +4939,2022_tab14_estateincome_count_lt0_all,2022,tab14,estateincome,count,Estate/trust income — number with loss,lt0,filers,all,7,"$20,000 under $25,000",17.0,22in14ar.xls,BZ15,78,BZ,15 +4940,2022_tab14_estateincome_count_lt0_all,2022,tab14,estateincome,count,Estate/trust income — number with loss,lt0,filers,all,8,"$25,000 under $30,000",0.0,22in14ar.xls,BZ16,78,BZ,16 +4941,2022_tab14_estateincome_count_lt0_all,2022,tab14,estateincome,count,Estate/trust income — number with loss,lt0,filers,all,9,"$30,000 under $40,000",2123.0,22in14ar.xls,BZ17,78,BZ,17 +4942,2022_tab14_estateincome_count_lt0_all,2022,tab14,estateincome,count,Estate/trust income — number with loss,lt0,filers,all,10,"$40,000 under $50,000",2030.0,22in14ar.xls,BZ18,78,BZ,18 +4943,2022_tab14_estateincome_count_lt0_all,2022,tab14,estateincome,count,Estate/trust income — number with loss,lt0,filers,all,11,"$50,000 under $75,000",2406.0,22in14ar.xls,BZ19,78,BZ,19 +4944,2022_tab14_estateincome_count_lt0_all,2022,tab14,estateincome,count,Estate/trust income — number with loss,lt0,filers,all,12,"$75,000 under $100,000",2529.0,22in14ar.xls,BZ20,78,BZ,20 +4945,2022_tab14_estateincome_count_lt0_all,2022,tab14,estateincome,count,Estate/trust income — number with loss,lt0,filers,all,13,"$100,000 under $200,000",11602.0,22in14ar.xls,BZ21,78,BZ,21 +4946,2022_tab14_estateincome_count_lt0_all,2022,tab14,estateincome,count,Estate/trust income — number with loss,lt0,filers,all,14,"$200,000 under $500,000",8694.0,22in14ar.xls,BZ22,78,BZ,22 +4947,2022_tab14_estateincome_count_lt0_all,2022,tab14,estateincome,count,Estate/trust income — number with loss,lt0,filers,all,15,"$500,000 under $1,000,000",3150.0,22in14ar.xls,BZ23,78,BZ,23 +4948,2022_tab14_estateincome_count_lt0_all,2022,tab14,estateincome,count,Estate/trust income — number with loss,lt0,filers,all,16,"$1,000,000 under $1,500,000",1643.0,22in14ar.xls,BZ24,78,BZ,24 +4949,2022_tab14_estateincome_count_lt0_all,2022,tab14,estateincome,count,Estate/trust income — number with loss,lt0,filers,all,17,"$1,500,000 under $2,000,000",1272.0,22in14ar.xls,BZ25,78,BZ,25 +4950,2022_tab14_estateincome_count_lt0_all,2022,tab14,estateincome,count,Estate/trust income — number with loss,lt0,filers,all,18,"$2,000,000 under $5,000,000",2420.0,22in14ar.xls,BZ26,78,BZ,26 +4951,2022_tab14_estateincome_count_lt0_all,2022,tab14,estateincome,count,Estate/trust income — number with loss,lt0,filers,all,19,"$5,000,000 under $10,000,000",1083.0,22in14ar.xls,BZ27,78,BZ,27 +4952,2022_tab14_estateincome_count_lt0_all,2022,tab14,estateincome,count,Estate/trust income — number with loss,lt0,filers,all,20,"$10,000,000 or more",1300.0,22in14ar.xls,BZ28,78,BZ,28 +4953,2022_tab14_exemptint_amount_nz_all,2022,tab14,exemptint,amount,Tax-exempt interest,nz,filers,all,1,"All returns, total",55567941000.0,22in14ar.xls,W9,23,W,9 +4954,2022_tab14_exemptint_amount_nz_all,2022,tab14,exemptint,amount,Tax-exempt interest,nz,filers,all,2,No adjusted gross income,789360000.0,22in14ar.xls,W10,23,W,10 +4955,2022_tab14_exemptint_amount_nz_all,2022,tab14,exemptint,amount,Tax-exempt interest,nz,filers,all,3,"$1 under $5,000",135194000.0,22in14ar.xls,W11,23,W,11 +4956,2022_tab14_exemptint_amount_nz_all,2022,tab14,exemptint,amount,Tax-exempt interest,nz,filers,all,4,"$5,000 under $10,000",180828000.0,22in14ar.xls,W12,23,W,12 +4957,2022_tab14_exemptint_amount_nz_all,2022,tab14,exemptint,amount,Tax-exempt interest,nz,filers,all,5,"$10,000 under $15,000",224575000.0,22in14ar.xls,W13,23,W,13 +4958,2022_tab14_exemptint_amount_nz_all,2022,tab14,exemptint,amount,Tax-exempt interest,nz,filers,all,6,"$15,000 under $20,000",196450000.0,22in14ar.xls,W14,23,W,14 +4959,2022_tab14_exemptint_amount_nz_all,2022,tab14,exemptint,amount,Tax-exempt interest,nz,filers,all,7,"$20,000 under $25,000",141466000.0,22in14ar.xls,W15,23,W,15 +4960,2022_tab14_exemptint_amount_nz_all,2022,tab14,exemptint,amount,Tax-exempt interest,nz,filers,all,8,"$25,000 under $30,000",348578000.0,22in14ar.xls,W16,23,W,16 +4961,2022_tab14_exemptint_amount_nz_all,2022,tab14,exemptint,amount,Tax-exempt interest,nz,filers,all,9,"$30,000 under $40,000",813250000.0,22in14ar.xls,W17,23,W,17 +4962,2022_tab14_exemptint_amount_nz_all,2022,tab14,exemptint,amount,Tax-exempt interest,nz,filers,all,10,"$40,000 under $50,000",694502000.0,22in14ar.xls,W18,23,W,18 +4963,2022_tab14_exemptint_amount_nz_all,2022,tab14,exemptint,amount,Tax-exempt interest,nz,filers,all,11,"$50,000 under $75,000",2148899000.0,22in14ar.xls,W19,23,W,19 +4964,2022_tab14_exemptint_amount_nz_all,2022,tab14,exemptint,amount,Tax-exempt interest,nz,filers,all,12,"$75,000 under $100,000",2363823000.0,22in14ar.xls,W20,23,W,20 +4965,2022_tab14_exemptint_amount_nz_all,2022,tab14,exemptint,amount,Tax-exempt interest,nz,filers,all,13,"$100,000 under $200,000",8746815000.0,22in14ar.xls,W21,23,W,21 +4966,2022_tab14_exemptint_amount_nz_all,2022,tab14,exemptint,amount,Tax-exempt interest,nz,filers,all,14,"$200,000 under $500,000",12714183000.0,22in14ar.xls,W22,23,W,22 +4967,2022_tab14_exemptint_amount_nz_all,2022,tab14,exemptint,amount,Tax-exempt interest,nz,filers,all,15,"$500,000 under $1,000,000",7368520000.0,22in14ar.xls,W23,23,W,23 +4968,2022_tab14_exemptint_amount_nz_all,2022,tab14,exemptint,amount,Tax-exempt interest,nz,filers,all,16,"$1,000,000 under $1,500,000",3438200000.0,22in14ar.xls,W24,23,W,24 +4969,2022_tab14_exemptint_amount_nz_all,2022,tab14,exemptint,amount,Tax-exempt interest,nz,filers,all,17,"$1,500,000 under $2,000,000",2293946000.0,22in14ar.xls,W25,23,W,25 +4970,2022_tab14_exemptint_amount_nz_all,2022,tab14,exemptint,amount,Tax-exempt interest,nz,filers,all,18,"$2,000,000 under $5,000,000",5199540000.0,22in14ar.xls,W26,23,W,26 +4971,2022_tab14_exemptint_amount_nz_all,2022,tab14,exemptint,amount,Tax-exempt interest,nz,filers,all,19,"$5,000,000 under $10,000,000",2706049000.0,22in14ar.xls,W27,23,W,27 +4972,2022_tab14_exemptint_amount_nz_all,2022,tab14,exemptint,amount,Tax-exempt interest,nz,filers,all,20,"$10,000,000 or more",5063762000.0,22in14ar.xls,W28,23,W,28 +4973,2022_tab14_exemptint_count_nz_all,2022,tab14,exemptint,count,Tax-exempt interest — number of returns,nz,filers,all,1,"All returns, total",6892813.0,22in14ar.xls,V9,22,V,9 +4974,2022_tab14_exemptint_count_nz_all,2022,tab14,exemptint,count,Tax-exempt interest — number of returns,nz,filers,all,2,No adjusted gross income,93427.0,22in14ar.xls,V10,22,V,10 +4975,2022_tab14_exemptint_count_nz_all,2022,tab14,exemptint,count,Tax-exempt interest — number of returns,nz,filers,all,3,"$1 under $5,000",109109.0,22in14ar.xls,V11,22,V,11 +4976,2022_tab14_exemptint_count_nz_all,2022,tab14,exemptint,count,Tax-exempt interest — number of returns,nz,filers,all,4,"$5,000 under $10,000",89031.0,22in14ar.xls,V12,22,V,12 +4977,2022_tab14_exemptint_count_nz_all,2022,tab14,exemptint,count,Tax-exempt interest — number of returns,nz,filers,all,5,"$10,000 under $15,000",105451.0,22in14ar.xls,V13,22,V,13 +4978,2022_tab14_exemptint_count_nz_all,2022,tab14,exemptint,count,Tax-exempt interest — number of returns,nz,filers,all,6,"$15,000 under $20,000",95997.0,22in14ar.xls,V14,22,V,14 +4979,2022_tab14_exemptint_count_nz_all,2022,tab14,exemptint,count,Tax-exempt interest — number of returns,nz,filers,all,7,"$20,000 under $25,000",94559.0,22in14ar.xls,V15,22,V,15 +4980,2022_tab14_exemptint_count_nz_all,2022,tab14,exemptint,count,Tax-exempt interest — number of returns,nz,filers,all,8,"$25,000 under $30,000",95098.0,22in14ar.xls,V16,22,V,16 +4981,2022_tab14_exemptint_count_nz_all,2022,tab14,exemptint,count,Tax-exempt interest — number of returns,nz,filers,all,9,"$30,000 under $40,000",224413.0,22in14ar.xls,V17,22,V,17 +4982,2022_tab14_exemptint_count_nz_all,2022,tab14,exemptint,count,Tax-exempt interest — number of returns,nz,filers,all,10,"$40,000 under $50,000",262708.0,22in14ar.xls,V18,22,V,18 +4983,2022_tab14_exemptint_count_nz_all,2022,tab14,exemptint,count,Tax-exempt interest — number of returns,nz,filers,all,11,"$50,000 under $75,000",701687.0,22in14ar.xls,V19,22,V,19 +4984,2022_tab14_exemptint_count_nz_all,2022,tab14,exemptint,count,Tax-exempt interest — number of returns,nz,filers,all,12,"$75,000 under $100,000",677301.0,22in14ar.xls,V20,22,V,20 +4985,2022_tab14_exemptint_count_nz_all,2022,tab14,exemptint,count,Tax-exempt interest — number of returns,nz,filers,all,13,"$100,000 under $200,000",1909389.0,22in14ar.xls,V21,22,V,21 +4986,2022_tab14_exemptint_count_nz_all,2022,tab14,exemptint,count,Tax-exempt interest — number of returns,nz,filers,all,14,"$200,000 under $500,000",1588632.0,22in14ar.xls,V22,22,V,22 +4987,2022_tab14_exemptint_count_nz_all,2022,tab14,exemptint,count,Tax-exempt interest — number of returns,nz,filers,all,15,"$500,000 under $1,000,000",485091.0,22in14ar.xls,V23,22,V,23 +4988,2022_tab14_exemptint_count_nz_all,2022,tab14,exemptint,count,Tax-exempt interest — number of returns,nz,filers,all,16,"$1,000,000 under $1,500,000",139181.0,22in14ar.xls,V24,22,V,24 +4989,2022_tab14_exemptint_count_nz_all,2022,tab14,exemptint,count,Tax-exempt interest — number of returns,nz,filers,all,17,"$1,500,000 under $2,000,000",64081.0,22in14ar.xls,V25,22,V,25 +4990,2022_tab14_exemptint_count_nz_all,2022,tab14,exemptint,count,Tax-exempt interest — number of returns,nz,filers,all,18,"$2,000,000 under $5,000,000",103702.0,22in14ar.xls,V26,22,V,26 +4991,2022_tab14_exemptint_count_nz_all,2022,tab14,exemptint,count,Tax-exempt interest — number of returns,nz,filers,all,19,"$5,000,000 under $10,000,000",30837.0,22in14ar.xls,V27,22,V,27 +4992,2022_tab14_exemptint_count_nz_all,2022,tab14,exemptint,count,Tax-exempt interest — number of returns,nz,filers,all,20,"$10,000,000 or more",23117.0,22in14ar.xls,V28,22,V,28 +4993,2022_tab14_iradist_amount_nz_all,2022,tab14,iradist,amount,IRA distributions,nz,filers,all,1,"All returns, total",437775580000.0,22in14ar.xls,AU9,47,AU,9 +4994,2022_tab14_iradist_amount_nz_all,2022,tab14,iradist,amount,IRA distributions,nz,filers,all,2,No adjusted gross income,1980715000.0,22in14ar.xls,AU10,47,AU,10 +4995,2022_tab14_iradist_amount_nz_all,2022,tab14,iradist,amount,IRA distributions,nz,filers,all,3,"$1 under $5,000",956450000.0,22in14ar.xls,AU11,47,AU,11 +4996,2022_tab14_iradist_amount_nz_all,2022,tab14,iradist,amount,IRA distributions,nz,filers,all,4,"$5,000 under $10,000",2516774000.0,22in14ar.xls,AU12,47,AU,12 +4997,2022_tab14_iradist_amount_nz_all,2022,tab14,iradist,amount,IRA distributions,nz,filers,all,5,"$10,000 under $15,000",3889372000.0,22in14ar.xls,AU13,47,AU,13 +4998,2022_tab14_iradist_amount_nz_all,2022,tab14,iradist,amount,IRA distributions,nz,filers,all,6,"$15,000 under $20,000",4566996000.0,22in14ar.xls,AU14,47,AU,14 +4999,2022_tab14_iradist_amount_nz_all,2022,tab14,iradist,amount,IRA distributions,nz,filers,all,7,"$20,000 under $25,000",4833461000.0,22in14ar.xls,AU15,47,AU,15 +5000,2022_tab14_iradist_amount_nz_all,2022,tab14,iradist,amount,IRA distributions,nz,filers,all,8,"$25,000 under $30,000",5327172000.0,22in14ar.xls,AU16,47,AU,16 +5001,2022_tab14_iradist_amount_nz_all,2022,tab14,iradist,amount,IRA distributions,nz,filers,all,9,"$30,000 under $40,000",10566983000.0,22in14ar.xls,AU17,47,AU,17 +5002,2022_tab14_iradist_amount_nz_all,2022,tab14,iradist,amount,IRA distributions,nz,filers,all,10,"$40,000 under $50,000",12521815000.0,22in14ar.xls,AU18,47,AU,18 +5003,2022_tab14_iradist_amount_nz_all,2022,tab14,iradist,amount,IRA distributions,nz,filers,all,11,"$50,000 under $75,000",36656755000.0,22in14ar.xls,AU19,47,AU,19 +5004,2022_tab14_iradist_amount_nz_all,2022,tab14,iradist,amount,IRA distributions,nz,filers,all,12,"$75,000 under $100,000",44499088000.0,22in14ar.xls,AU20,47,AU,20 +5005,2022_tab14_iradist_amount_nz_all,2022,tab14,iradist,amount,IRA distributions,nz,filers,all,13,"$100,000 under $200,000",146268928000.0,22in14ar.xls,AU21,47,AU,21 +5006,2022_tab14_iradist_amount_nz_all,2022,tab14,iradist,amount,IRA distributions,nz,filers,all,14,"$200,000 under $500,000",118094434000.0,22in14ar.xls,AU22,47,AU,22 +5007,2022_tab14_iradist_amount_nz_all,2022,tab14,iradist,amount,IRA distributions,nz,filers,all,15,"$500,000 under $1,000,000",27676430000.0,22in14ar.xls,AU23,47,AU,23 +5008,2022_tab14_iradist_amount_nz_all,2022,tab14,iradist,amount,IRA distributions,nz,filers,all,16,"$1,000,000 under $1,500,000",6463776000.0,22in14ar.xls,AU24,47,AU,24 +5009,2022_tab14_iradist_amount_nz_all,2022,tab14,iradist,amount,IRA distributions,nz,filers,all,17,"$1,500,000 under $2,000,000",2784109000.0,22in14ar.xls,AU25,47,AU,25 +5010,2022_tab14_iradist_amount_nz_all,2022,tab14,iradist,amount,IRA distributions,nz,filers,all,18,"$2,000,000 under $5,000,000",4999976000.0,22in14ar.xls,AU26,47,AU,26 +5011,2022_tab14_iradist_amount_nz_all,2022,tab14,iradist,amount,IRA distributions,nz,filers,all,19,"$5,000,000 under $10,000,000",1580337000.0,22in14ar.xls,AU27,47,AU,27 +5012,2022_tab14_iradist_amount_nz_all,2022,tab14,iradist,amount,IRA distributions,nz,filers,all,20,"$10,000,000 or more",1592011000.0,22in14ar.xls,AU28,47,AU,28 +5013,2022_tab14_iradist_count_nz_all,2022,tab14,iradist,count,IRA distributions — number of returns,nz,filers,all,1,"All returns, total",16282441.0,22in14ar.xls,AT9,46,AT,9 +5014,2022_tab14_iradist_count_nz_all,2022,tab14,iradist,count,IRA distributions — number of returns,nz,filers,all,2,No adjusted gross income,121561.0,22in14ar.xls,AT10,46,AT,10 +5015,2022_tab14_iradist_count_nz_all,2022,tab14,iradist,count,IRA distributions — number of returns,nz,filers,all,3,"$1 under $5,000",349510.0,22in14ar.xls,AT11,46,AT,11 +5016,2022_tab14_iradist_count_nz_all,2022,tab14,iradist,count,IRA distributions — number of returns,nz,filers,all,4,"$5,000 under $10,000",509867.0,22in14ar.xls,AT12,46,AT,12 +5017,2022_tab14_iradist_count_nz_all,2022,tab14,iradist,count,IRA distributions — number of returns,nz,filers,all,5,"$10,000 under $15,000",571324.0,22in14ar.xls,AT13,46,AT,13 +5018,2022_tab14_iradist_count_nz_all,2022,tab14,iradist,count,IRA distributions — number of returns,nz,filers,all,6,"$15,000 under $20,000",571653.0,22in14ar.xls,AT14,46,AT,14 +5019,2022_tab14_iradist_count_nz_all,2022,tab14,iradist,count,IRA distributions — number of returns,nz,filers,all,7,"$20,000 under $25,000",508282.0,22in14ar.xls,AT15,46,AT,15 +5020,2022_tab14_iradist_count_nz_all,2022,tab14,iradist,count,IRA distributions — number of returns,nz,filers,all,8,"$25,000 under $30,000",502471.0,22in14ar.xls,AT16,46,AT,16 +5021,2022_tab14_iradist_count_nz_all,2022,tab14,iradist,count,IRA distributions — number of returns,nz,filers,all,9,"$30,000 under $40,000",930812.0,22in14ar.xls,AT17,46,AT,17 +5022,2022_tab14_iradist_count_nz_all,2022,tab14,iradist,count,IRA distributions — number of returns,nz,filers,all,10,"$40,000 under $50,000",976829.0,22in14ar.xls,AT18,46,AT,18 +5023,2022_tab14_iradist_count_nz_all,2022,tab14,iradist,count,IRA distributions — number of returns,nz,filers,all,11,"$50,000 under $75,000",2376482.0,22in14ar.xls,AT19,46,AT,19 +5024,2022_tab14_iradist_count_nz_all,2022,tab14,iradist,count,IRA distributions — number of returns,nz,filers,all,12,"$75,000 under $100,000",2075069.0,22in14ar.xls,AT20,46,AT,20 +5025,2022_tab14_iradist_count_nz_all,2022,tab14,iradist,count,IRA distributions — number of returns,nz,filers,all,13,"$100,000 under $200,000",4441475.0,22in14ar.xls,AT21,46,AT,21 +5026,2022_tab14_iradist_count_nz_all,2022,tab14,iradist,count,IRA distributions — number of returns,nz,filers,all,14,"$200,000 under $500,000",1909850.0,22in14ar.xls,AT22,46,AT,22 +5027,2022_tab14_iradist_count_nz_all,2022,tab14,iradist,count,IRA distributions — number of returns,nz,filers,all,15,"$500,000 under $1,000,000",303601.0,22in14ar.xls,AT23,46,AT,23 +5028,2022_tab14_iradist_count_nz_all,2022,tab14,iradist,count,IRA distributions — number of returns,nz,filers,all,16,"$1,000,000 under $1,500,000",60854.0,22in14ar.xls,AT24,46,AT,24 +5029,2022_tab14_iradist_count_nz_all,2022,tab14,iradist,count,IRA distributions — number of returns,nz,filers,all,17,"$1,500,000 under $2,000,000",24263.0,22in14ar.xls,AT25,46,AT,25 +5030,2022_tab14_iradist_count_nz_all,2022,tab14,iradist,count,IRA distributions — number of returns,nz,filers,all,18,"$2,000,000 under $5,000,000",35091.0,22in14ar.xls,AT26,46,AT,26 +5031,2022_tab14_iradist_count_nz_all,2022,tab14,iradist,count,IRA distributions — number of returns,nz,filers,all,19,"$5,000,000 under $10,000,000",8317.0,22in14ar.xls,AT27,46,AT,27 +5032,2022_tab14_iradist_count_nz_all,2022,tab14,iradist,count,IRA distributions — number of returns,nz,filers,all,20,"$10,000,000 or more",5130.0,22in14ar.xls,AT28,46,AT,28 +5033,2022_tab14_itemded_amount_nz_all,2022,tab14,itemded,amount,Total itemized deductions,nz,filers,all,1,"All returns, total",668001764000.0,22in14ar.xls,EG9,137,EG,9 +5034,2022_tab14_itemded_amount_nz_all,2022,tab14,itemded,amount,Total itemized deductions,nz,filers,all,2,No adjusted gross income,0.0,22in14ar.xls,EG10,137,EG,10 +5035,2022_tab14_itemded_amount_nz_all,2022,tab14,itemded,amount,Total itemized deductions,nz,filers,all,3,"$1 under $5,000",2212245000.0,22in14ar.xls,EG11,137,EG,11 +5036,2022_tab14_itemded_amount_nz_all,2022,tab14,itemded,amount,Total itemized deductions,nz,filers,all,4,"$5,000 under $10,000",11186695000.0,22in14ar.xls,EG12,137,EG,12 +5037,2022_tab14_itemded_amount_nz_all,2022,tab14,itemded,amount,Total itemized deductions,nz,filers,all,5,"$10,000 under $15,000",2765492000.0,22in14ar.xls,EG13,137,EG,13 +5038,2022_tab14_itemded_amount_nz_all,2022,tab14,itemded,amount,Total itemized deductions,nz,filers,all,6,"$15,000 under $20,000",3989446000.0,22in14ar.xls,EG14,137,EG,14 +5039,2022_tab14_itemded_amount_nz_all,2022,tab14,itemded,amount,Total itemized deductions,nz,filers,all,7,"$20,000 under $25,000",5050663000.0,22in14ar.xls,EG15,137,EG,15 +5040,2022_tab14_itemded_amount_nz_all,2022,tab14,itemded,amount,Total itemized deductions,nz,filers,all,8,"$25,000 under $30,000",5703689000.0,22in14ar.xls,EG16,137,EG,16 +5041,2022_tab14_itemded_amount_nz_all,2022,tab14,itemded,amount,Total itemized deductions,nz,filers,all,9,"$30,000 under $40,000",14494331000.0,22in14ar.xls,EG17,137,EG,17 +5042,2022_tab14_itemded_amount_nz_all,2022,tab14,itemded,amount,Total itemized deductions,nz,filers,all,10,"$40,000 under $50,000",15604243000.0,22in14ar.xls,EG18,137,EG,18 +5043,2022_tab14_itemded_amount_nz_all,2022,tab14,itemded,amount,Total itemized deductions,nz,filers,all,11,"$50,000 under $75,000",51651608000.0,22in14ar.xls,EG19,137,EG,19 +5044,2022_tab14_itemded_amount_nz_all,2022,tab14,itemded,amount,Total itemized deductions,nz,filers,all,12,"$75,000 under $100,000",53445883000.0,22in14ar.xls,EG20,137,EG,20 +5045,2022_tab14_itemded_amount_nz_all,2022,tab14,itemded,amount,Total itemized deductions,nz,filers,all,13,"$100,000 under $200,000",151517219000.0,22in14ar.xls,EG21,137,EG,21 +5046,2022_tab14_itemded_amount_nz_all,2022,tab14,itemded,amount,Total itemized deductions,nz,filers,all,14,"$200,000 under $500,000",136240610000.0,22in14ar.xls,EG22,137,EG,22 +5047,2022_tab14_itemded_amount_nz_all,2022,tab14,itemded,amount,Total itemized deductions,nz,filers,all,15,"$500,000 under $1,000,000",54792042000.0,22in14ar.xls,EG23,137,EG,23 +5048,2022_tab14_itemded_amount_nz_all,2022,tab14,itemded,amount,Total itemized deductions,nz,filers,all,16,"$1,000,000 under $1,500,000",21274748000.0,22in14ar.xls,EG24,137,EG,24 +5049,2022_tab14_itemded_amount_nz_all,2022,tab14,itemded,amount,Total itemized deductions,nz,filers,all,17,"$1,500,000 under $2,000,000",12194361000.0,22in14ar.xls,EG25,137,EG,25 +5050,2022_tab14_itemded_amount_nz_all,2022,tab14,itemded,amount,Total itemized deductions,nz,filers,all,18,"$2,000,000 under $5,000,000",29514407000.0,22in14ar.xls,EG26,137,EG,26 +5051,2022_tab14_itemded_amount_nz_all,2022,tab14,itemded,amount,Total itemized deductions,nz,filers,all,19,"$5,000,000 under $10,000,000",18019722000.0,22in14ar.xls,EG27,137,EG,27 +5052,2022_tab14_itemded_amount_nz_all,2022,tab14,itemded,amount,Total itemized deductions,nz,filers,all,20,"$10,000,000 or more",78344359000.0,22in14ar.xls,EG28,137,EG,28 +5053,2022_tab14_itemded_count_nz_all,2022,tab14,itemded,count,Itemized deductions — number of returns,nz,filers,all,1,"All returns, total",15290841.0,22in14ar.xls,EF9,136,EF,9 +5054,2022_tab14_itemded_count_nz_all,2022,tab14,itemded,count,Itemized deductions — number of returns,nz,filers,all,2,No adjusted gross income,0.0,22in14ar.xls,EF10,136,EF,10 +5055,2022_tab14_itemded_count_nz_all,2022,tab14,itemded,count,Itemized deductions — number of returns,nz,filers,all,3,"$1 under $5,000",106861.0,22in14ar.xls,EF11,136,EF,11 +5056,2022_tab14_itemded_count_nz_all,2022,tab14,itemded,count,Itemized deductions — number of returns,nz,filers,all,4,"$5,000 under $10,000",104685.0,22in14ar.xls,EF12,136,EF,12 +5057,2022_tab14_itemded_count_nz_all,2022,tab14,itemded,count,Itemized deductions — number of returns,nz,filers,all,5,"$10,000 under $15,000",117421.0,22in14ar.xls,EF13,136,EF,13 +5058,2022_tab14_itemded_count_nz_all,2022,tab14,itemded,count,Itemized deductions — number of returns,nz,filers,all,6,"$15,000 under $20,000",157566.0,22in14ar.xls,EF14,136,EF,14 +5059,2022_tab14_itemded_count_nz_all,2022,tab14,itemded,count,Itemized deductions — number of returns,nz,filers,all,7,"$20,000 under $25,000",185594.0,22in14ar.xls,EF15,136,EF,15 +5060,2022_tab14_itemded_count_nz_all,2022,tab14,itemded,count,Itemized deductions — number of returns,nz,filers,all,8,"$25,000 under $30,000",204094.0,22in14ar.xls,EF16,136,EF,16 +5061,2022_tab14_itemded_count_nz_all,2022,tab14,itemded,count,Itemized deductions — number of returns,nz,filers,all,9,"$30,000 under $40,000",504475.0,22in14ar.xls,EF17,136,EF,17 +5062,2022_tab14_itemded_count_nz_all,2022,tab14,itemded,count,Itemized deductions — number of returns,nz,filers,all,10,"$40,000 under $50,000",565877.0,22in14ar.xls,EF18,136,EF,18 +5063,2022_tab14_itemded_count_nz_all,2022,tab14,itemded,count,Itemized deductions — number of returns,nz,filers,all,11,"$50,000 under $75,000",1891131.0,22in14ar.xls,EF19,136,EF,19 +5064,2022_tab14_itemded_count_nz_all,2022,tab14,itemded,count,Itemized deductions — number of returns,nz,filers,all,12,"$75,000 under $100,000",1915805.0,22in14ar.xls,EF20,136,EF,20 +5065,2022_tab14_itemded_count_nz_all,2022,tab14,itemded,count,Itemized deductions — number of returns,nz,filers,all,13,"$100,000 under $200,000",4745777.0,22in14ar.xls,EF21,136,EF,21 +5066,2022_tab14_itemded_count_nz_all,2022,tab14,itemded,count,Itemized deductions — number of returns,nz,filers,all,14,"$200,000 under $500,000",3330396.0,22in14ar.xls,EF22,136,EF,22 +5067,2022_tab14_itemded_count_nz_all,2022,tab14,itemded,count,Itemized deductions — number of returns,nz,filers,all,15,"$500,000 under $1,000,000",902511.0,22in14ar.xls,EF23,136,EF,23 +5068,2022_tab14_itemded_count_nz_all,2022,tab14,itemded,count,Itemized deductions — number of returns,nz,filers,all,16,"$1,000,000 under $1,500,000",230387.0,22in14ar.xls,EF24,136,EF,24 +5069,2022_tab14_itemded_count_nz_all,2022,tab14,itemded,count,Itemized deductions — number of returns,nz,filers,all,17,"$1,500,000 under $2,000,000",101541.0,22in14ar.xls,EF25,136,EF,25 +5070,2022_tab14_itemded_count_nz_all,2022,tab14,itemded,count,Itemized deductions — number of returns,nz,filers,all,18,"$2,000,000 under $5,000,000",153659.0,22in14ar.xls,EF26,136,EF,26 +5071,2022_tab14_itemded_count_nz_all,2022,tab14,itemded,count,Itemized deductions — number of returns,nz,filers,all,19,"$5,000,000 under $10,000,000",42951.0,22in14ar.xls,EF27,136,EF,27 +5072,2022_tab14_itemded_count_nz_all,2022,tab14,itemded,count,Itemized deductions — number of returns,nz,filers,all,20,"$10,000,000 or more",30108.0,22in14ar.xls,EF28,136,EF,28 +5073,2022_tab14_orddiv_amount_nz_all,2022,tab14,orddiv,amount,Ordinary dividends,nz,filers,all,1,"All returns, total",412320850000.0,22in14ar.xls,Y9,25,Y,9 +5074,2022_tab14_orddiv_amount_nz_all,2022,tab14,orddiv,amount,Ordinary dividends,nz,filers,all,2,No adjusted gross income,3782002000.0,22in14ar.xls,Y10,25,Y,10 +5075,2022_tab14_orddiv_amount_nz_all,2022,tab14,orddiv,amount,Ordinary dividends,nz,filers,all,3,"$1 under $5,000",1002127000.0,22in14ar.xls,Y11,25,Y,11 +5076,2022_tab14_orddiv_amount_nz_all,2022,tab14,orddiv,amount,Ordinary dividends,nz,filers,all,4,"$5,000 under $10,000",1342704000.0,22in14ar.xls,Y12,25,Y,12 +5077,2022_tab14_orddiv_amount_nz_all,2022,tab14,orddiv,amount,Ordinary dividends,nz,filers,all,5,"$10,000 under $15,000",1799586000.0,22in14ar.xls,Y13,25,Y,13 +5078,2022_tab14_orddiv_amount_nz_all,2022,tab14,orddiv,amount,Ordinary dividends,nz,filers,all,6,"$15,000 under $20,000",1961601000.0,22in14ar.xls,Y14,25,Y,14 +5079,2022_tab14_orddiv_amount_nz_all,2022,tab14,orddiv,amount,Ordinary dividends,nz,filers,all,7,"$20,000 under $25,000",1927607000.0,22in14ar.xls,Y15,25,Y,15 +5080,2022_tab14_orddiv_amount_nz_all,2022,tab14,orddiv,amount,Ordinary dividends,nz,filers,all,8,"$25,000 under $30,000",2045508000.0,22in14ar.xls,Y16,25,Y,16 +5081,2022_tab14_orddiv_amount_nz_all,2022,tab14,orddiv,amount,Ordinary dividends,nz,filers,all,9,"$30,000 under $40,000",4236334000.0,22in14ar.xls,Y17,25,Y,17 +5082,2022_tab14_orddiv_amount_nz_all,2022,tab14,orddiv,amount,Ordinary dividends,nz,filers,all,10,"$40,000 under $50,000",4878940000.0,22in14ar.xls,Y18,25,Y,18 +5083,2022_tab14_orddiv_amount_nz_all,2022,tab14,orddiv,amount,Ordinary dividends,nz,filers,all,11,"$50,000 under $75,000",14654866000.0,22in14ar.xls,Y19,25,Y,19 +5084,2022_tab14_orddiv_amount_nz_all,2022,tab14,orddiv,amount,Ordinary dividends,nz,filers,all,12,"$75,000 under $100,000",16495243000.0,22in14ar.xls,Y20,25,Y,20 +5085,2022_tab14_orddiv_amount_nz_all,2022,tab14,orddiv,amount,Ordinary dividends,nz,filers,all,13,"$100,000 under $200,000",58133031000.0,22in14ar.xls,Y21,25,Y,21 +5086,2022_tab14_orddiv_amount_nz_all,2022,tab14,orddiv,amount,Ordinary dividends,nz,filers,all,14,"$200,000 under $500,000",83427872000.0,22in14ar.xls,Y22,25,Y,22 +5087,2022_tab14_orddiv_amount_nz_all,2022,tab14,orddiv,amount,Ordinary dividends,nz,filers,all,15,"$500,000 under $1,000,000",47800937000.0,22in14ar.xls,Y23,25,Y,23 +5088,2022_tab14_orddiv_amount_nz_all,2022,tab14,orddiv,amount,Ordinary dividends,nz,filers,all,16,"$1,000,000 under $1,500,000",21561868000.0,22in14ar.xls,Y24,25,Y,24 +5089,2022_tab14_orddiv_amount_nz_all,2022,tab14,orddiv,amount,Ordinary dividends,nz,filers,all,17,"$1,500,000 under $2,000,000",13893099000.0,22in14ar.xls,Y25,25,Y,25 +5090,2022_tab14_orddiv_amount_nz_all,2022,tab14,orddiv,amount,Ordinary dividends,nz,filers,all,18,"$2,000,000 under $5,000,000",36124960000.0,22in14ar.xls,Y26,25,Y,26 +5091,2022_tab14_orddiv_amount_nz_all,2022,tab14,orddiv,amount,Ordinary dividends,nz,filers,all,19,"$5,000,000 under $10,000,000",21509269000.0,22in14ar.xls,Y27,25,Y,27 +5092,2022_tab14_orddiv_amount_nz_all,2022,tab14,orddiv,amount,Ordinary dividends,nz,filers,all,20,"$10,000,000 or more",75743296000.0,22in14ar.xls,Y28,25,Y,28 +5093,2022_tab14_orddiv_count_nz_all,2022,tab14,orddiv,count,Ordinary dividends — number of returns,nz,filers,all,1,"All returns, total",32853481.0,22in14ar.xls,X9,24,X,9 +5094,2022_tab14_orddiv_count_nz_all,2022,tab14,orddiv,count,Ordinary dividends — number of returns,nz,filers,all,2,No adjusted gross income,488427.0,22in14ar.xls,X10,24,X,10 +5095,2022_tab14_orddiv_count_nz_all,2022,tab14,orddiv,count,Ordinary dividends — number of returns,nz,filers,all,3,"$1 under $5,000",926104.0,22in14ar.xls,X11,24,X,11 +5096,2022_tab14_orddiv_count_nz_all,2022,tab14,orddiv,count,Ordinary dividends — number of returns,nz,filers,all,4,"$5,000 under $10,000",758424.0,22in14ar.xls,X12,24,X,12 +5097,2022_tab14_orddiv_count_nz_all,2022,tab14,orddiv,count,Ordinary dividends — number of returns,nz,filers,all,5,"$10,000 under $15,000",797458.0,22in14ar.xls,X13,24,X,13 +5098,2022_tab14_orddiv_count_nz_all,2022,tab14,orddiv,count,Ordinary dividends — number of returns,nz,filers,all,6,"$15,000 under $20,000",696385.0,22in14ar.xls,X14,24,X,14 +5099,2022_tab14_orddiv_count_nz_all,2022,tab14,orddiv,count,Ordinary dividends — number of returns,nz,filers,all,7,"$20,000 under $25,000",724135.0,22in14ar.xls,X15,24,X,15 +5100,2022_tab14_orddiv_count_nz_all,2022,tab14,orddiv,count,Ordinary dividends — number of returns,nz,filers,all,8,"$25,000 under $30,000",692576.0,22in14ar.xls,X16,24,X,16 +5101,2022_tab14_orddiv_count_nz_all,2022,tab14,orddiv,count,Ordinary dividends — number of returns,nz,filers,all,9,"$30,000 under $40,000",1445415.0,22in14ar.xls,X17,24,X,17 +5102,2022_tab14_orddiv_count_nz_all,2022,tab14,orddiv,count,Ordinary dividends — number of returns,nz,filers,all,10,"$40,000 under $50,000",1491106.0,22in14ar.xls,X18,24,X,18 +5103,2022_tab14_orddiv_count_nz_all,2022,tab14,orddiv,count,Ordinary dividends — number of returns,nz,filers,all,11,"$50,000 under $75,000",3966461.0,22in14ar.xls,X19,24,X,19 +5104,2022_tab14_orddiv_count_nz_all,2022,tab14,orddiv,count,Ordinary dividends — number of returns,nz,filers,all,12,"$75,000 under $100,000",3649718.0,22in14ar.xls,X20,24,X,20 +5105,2022_tab14_orddiv_count_nz_all,2022,tab14,orddiv,count,Ordinary dividends — number of returns,nz,filers,all,13,"$100,000 under $200,000",9213886.0,22in14ar.xls,X21,24,X,21 +5106,2022_tab14_orddiv_count_nz_all,2022,tab14,orddiv,count,Ordinary dividends — number of returns,nz,filers,all,14,"$200,000 under $500,000",5982187.0,22in14ar.xls,X22,24,X,22 +5107,2022_tab14_orddiv_count_nz_all,2022,tab14,orddiv,count,Ordinary dividends — number of returns,nz,filers,all,15,"$500,000 under $1,000,000",1317721.0,22in14ar.xls,X23,24,X,23 +5108,2022_tab14_orddiv_count_nz_all,2022,tab14,orddiv,count,Ordinary dividends — number of returns,nz,filers,all,16,"$1,000,000 under $1,500,000",308547.0,22in14ar.xls,X24,24,X,24 +5109,2022_tab14_orddiv_count_nz_all,2022,tab14,orddiv,count,Ordinary dividends — number of returns,nz,filers,all,17,"$1,500,000 under $2,000,000",129569.0,22in14ar.xls,X25,24,X,25 +5110,2022_tab14_orddiv_count_nz_all,2022,tab14,orddiv,count,Ordinary dividends — number of returns,nz,filers,all,18,"$2,000,000 under $5,000,000",184183.0,22in14ar.xls,X26,24,X,26 +5111,2022_tab14_orddiv_count_nz_all,2022,tab14,orddiv,count,Ordinary dividends — number of returns,nz,filers,all,19,"$5,000,000 under $10,000,000",48494.0,22in14ar.xls,X27,24,X,27 +5112,2022_tab14_orddiv_count_nz_all,2022,tab14,orddiv,count,Ordinary dividends — number of returns,nz,filers,all,20,"$10,000,000 or more",32685.0,22in14ar.xls,X28,24,X,28 +5113,2022_tab14_partnerincome_amount_gt0_all,2022,tab14,partnerincome,amount,Partnership net income (2021+),gt0,filers,all,1,"All returns, total",487094509000.0,22in14ar.xls,BQ9,69,BQ,9 +5114,2022_tab14_partnerincome_amount_gt0_all,2022,tab14,partnerincome,amount,Partnership net income (2021+),gt0,filers,all,2,No adjusted gross income,3311266000.0,22in14ar.xls,BQ10,69,BQ,10 +5115,2022_tab14_partnerincome_amount_gt0_all,2022,tab14,partnerincome,amount,Partnership net income (2021+),gt0,filers,all,3,"$1 under $5,000",157881000.0,22in14ar.xls,BQ11,69,BQ,11 +5116,2022_tab14_partnerincome_amount_gt0_all,2022,tab14,partnerincome,amount,Partnership net income (2021+),gt0,filers,all,4,"$5,000 under $10,000",402096000.0,22in14ar.xls,BQ12,69,BQ,12 +5117,2022_tab14_partnerincome_amount_gt0_all,2022,tab14,partnerincome,amount,Partnership net income (2021+),gt0,filers,all,5,"$10,000 under $15,000",355103000.0,22in14ar.xls,BQ13,69,BQ,13 +5118,2022_tab14_partnerincome_amount_gt0_all,2022,tab14,partnerincome,amount,Partnership net income (2021+),gt0,filers,all,6,"$15,000 under $20,000",462131000.0,22in14ar.xls,BQ14,69,BQ,14 +5119,2022_tab14_partnerincome_amount_gt0_all,2022,tab14,partnerincome,amount,Partnership net income (2021+),gt0,filers,all,7,"$20,000 under $25,000",556069000.0,22in14ar.xls,BQ15,69,BQ,15 +5120,2022_tab14_partnerincome_amount_gt0_all,2022,tab14,partnerincome,amount,Partnership net income (2021+),gt0,filers,all,8,"$25,000 under $30,000",797127000.0,22in14ar.xls,BQ16,69,BQ,16 +5121,2022_tab14_partnerincome_amount_gt0_all,2022,tab14,partnerincome,amount,Partnership net income (2021+),gt0,filers,all,9,"$30,000 under $40,000",1951910000.0,22in14ar.xls,BQ17,69,BQ,17 +5122,2022_tab14_partnerincome_amount_gt0_all,2022,tab14,partnerincome,amount,Partnership net income (2021+),gt0,filers,all,10,"$40,000 under $50,000",1850336000.0,22in14ar.xls,BQ18,69,BQ,18 +5123,2022_tab14_partnerincome_amount_gt0_all,2022,tab14,partnerincome,amount,Partnership net income (2021+),gt0,filers,all,11,"$50,000 under $75,000",4589954000.0,22in14ar.xls,BQ19,69,BQ,19 +5124,2022_tab14_partnerincome_amount_gt0_all,2022,tab14,partnerincome,amount,Partnership net income (2021+),gt0,filers,all,12,"$75,000 under $100,000",6021603000.0,22in14ar.xls,BQ20,69,BQ,20 +5125,2022_tab14_partnerincome_amount_gt0_all,2022,tab14,partnerincome,amount,Partnership net income (2021+),gt0,filers,all,13,"$100,000 under $200,000",27193979000.0,22in14ar.xls,BQ21,69,BQ,21 +5126,2022_tab14_partnerincome_amount_gt0_all,2022,tab14,partnerincome,amount,Partnership net income (2021+),gt0,filers,all,14,"$200,000 under $500,000",70924621000.0,22in14ar.xls,BQ22,69,BQ,22 +5127,2022_tab14_partnerincome_amount_gt0_all,2022,tab14,partnerincome,amount,Partnership net income (2021+),gt0,filers,all,15,"$500,000 under $1,000,000",75395435000.0,22in14ar.xls,BQ23,69,BQ,23 +5128,2022_tab14_partnerincome_amount_gt0_all,2022,tab14,partnerincome,amount,Partnership net income (2021+),gt0,filers,all,16,"$1,000,000 under $1,500,000",44835141000.0,22in14ar.xls,BQ24,69,BQ,24 +5129,2022_tab14_partnerincome_amount_gt0_all,2022,tab14,partnerincome,amount,Partnership net income (2021+),gt0,filers,all,17,"$1,500,000 under $2,000,000",30483673000.0,22in14ar.xls,BQ25,69,BQ,25 +5130,2022_tab14_partnerincome_amount_gt0_all,2022,tab14,partnerincome,amount,Partnership net income (2021+),gt0,filers,all,18,"$2,000,000 under $5,000,000",75289227000.0,22in14ar.xls,BQ26,69,BQ,26 +5131,2022_tab14_partnerincome_amount_gt0_all,2022,tab14,partnerincome,amount,Partnership net income (2021+),gt0,filers,all,19,"$5,000,000 under $10,000,000",41778975000.0,22in14ar.xls,BQ27,69,BQ,27 +5132,2022_tab14_partnerincome_amount_gt0_all,2022,tab14,partnerincome,amount,Partnership net income (2021+),gt0,filers,all,20,"$10,000,000 or more",100737982000.0,22in14ar.xls,BQ28,69,BQ,28 +5133,2022_tab14_partnerincome_amount_lt0_all,2022,tab14,partnerincome,amount,Partnership net loss (2021+),lt0,filers,all,1,"All returns, total",175602300000.0,22in14ar.xls,BS9,71,BS,9 +5134,2022_tab14_partnerincome_amount_lt0_all,2022,tab14,partnerincome,amount,Partnership net loss (2021+),lt0,filers,all,2,No adjusted gross income,45083943000.0,22in14ar.xls,BS10,71,BS,10 +5135,2022_tab14_partnerincome_amount_lt0_all,2022,tab14,partnerincome,amount,Partnership net loss (2021+),lt0,filers,all,3,"$1 under $5,000",513797000.0,22in14ar.xls,BS11,71,BS,11 +5136,2022_tab14_partnerincome_amount_lt0_all,2022,tab14,partnerincome,amount,Partnership net loss (2021+),lt0,filers,all,4,"$5,000 under $10,000",442121000.0,22in14ar.xls,BS12,71,BS,12 +5137,2022_tab14_partnerincome_amount_lt0_all,2022,tab14,partnerincome,amount,Partnership net loss (2021+),lt0,filers,all,5,"$10,000 under $15,000",250994000.0,22in14ar.xls,BS13,71,BS,13 +5138,2022_tab14_partnerincome_amount_lt0_all,2022,tab14,partnerincome,amount,Partnership net loss (2021+),lt0,filers,all,6,"$15,000 under $20,000",472824000.0,22in14ar.xls,BS14,71,BS,14 +5139,2022_tab14_partnerincome_amount_lt0_all,2022,tab14,partnerincome,amount,Partnership net loss (2021+),lt0,filers,all,7,"$20,000 under $25,000",384642000.0,22in14ar.xls,BS15,71,BS,15 +5140,2022_tab14_partnerincome_amount_lt0_all,2022,tab14,partnerincome,amount,Partnership net loss (2021+),lt0,filers,all,8,"$25,000 under $30,000",745977000.0,22in14ar.xls,BS16,71,BS,16 +5141,2022_tab14_partnerincome_amount_lt0_all,2022,tab14,partnerincome,amount,Partnership net loss (2021+),lt0,filers,all,9,"$30,000 under $40,000",1149204000.0,22in14ar.xls,BS17,71,BS,17 +5142,2022_tab14_partnerincome_amount_lt0_all,2022,tab14,partnerincome,amount,Partnership net loss (2021+),lt0,filers,all,10,"$40,000 under $50,000",1467106000.0,22in14ar.xls,BS18,71,BS,18 +5143,2022_tab14_partnerincome_amount_lt0_all,2022,tab14,partnerincome,amount,Partnership net loss (2021+),lt0,filers,all,11,"$50,000 under $75,000",3138594000.0,22in14ar.xls,BS19,71,BS,19 +5144,2022_tab14_partnerincome_amount_lt0_all,2022,tab14,partnerincome,amount,Partnership net loss (2021+),lt0,filers,all,12,"$75,000 under $100,000",2849233000.0,22in14ar.xls,BS20,71,BS,20 +5145,2022_tab14_partnerincome_amount_lt0_all,2022,tab14,partnerincome,amount,Partnership net loss (2021+),lt0,filers,all,13,"$100,000 under $200,000",11085367000.0,22in14ar.xls,BS21,71,BS,21 +5146,2022_tab14_partnerincome_amount_lt0_all,2022,tab14,partnerincome,amount,Partnership net loss (2021+),lt0,filers,all,14,"$200,000 under $500,000",17915360000.0,22in14ar.xls,BS22,71,BS,22 +5147,2022_tab14_partnerincome_amount_lt0_all,2022,tab14,partnerincome,amount,Partnership net loss (2021+),lt0,filers,all,15,"$500,000 under $1,000,000",14009247000.0,22in14ar.xls,BS23,71,BS,23 +5148,2022_tab14_partnerincome_amount_lt0_all,2022,tab14,partnerincome,amount,Partnership net loss (2021+),lt0,filers,all,16,"$1,000,000 under $1,500,000",7453173000.0,22in14ar.xls,BS24,71,BS,24 +5149,2022_tab14_partnerincome_amount_lt0_all,2022,tab14,partnerincome,amount,Partnership net loss (2021+),lt0,filers,all,17,"$1,500,000 under $2,000,000",5555828000.0,22in14ar.xls,BS25,71,BS,25 +5150,2022_tab14_partnerincome_amount_lt0_all,2022,tab14,partnerincome,amount,Partnership net loss (2021+),lt0,filers,all,18,"$2,000,000 under $5,000,000",14874495000.0,22in14ar.xls,BS26,71,BS,26 +5151,2022_tab14_partnerincome_amount_lt0_all,2022,tab14,partnerincome,amount,Partnership net loss (2021+),lt0,filers,all,19,"$5,000,000 under $10,000,000",9914133000.0,22in14ar.xls,BS27,71,BS,27 +5152,2022_tab14_partnerincome_amount_lt0_all,2022,tab14,partnerincome,amount,Partnership net loss (2021+),lt0,filers,all,20,"$10,000,000 or more",38296260000.0,22in14ar.xls,BS28,71,BS,28 +5153,2022_tab14_partnerincome_count_gt0_all,2022,tab14,partnerincome,count,Partnership income — number with income (2021+),gt0,filers,all,1,"All returns, total",3311926.0,22in14ar.xls,BP9,68,BP,9 +5154,2022_tab14_partnerincome_count_gt0_all,2022,tab14,partnerincome,count,Partnership income — number with income (2021+),gt0,filers,all,2,No adjusted gross income,47192.0,22in14ar.xls,BP10,68,BP,10 +5155,2022_tab14_partnerincome_count_gt0_all,2022,tab14,partnerincome,count,Partnership income — number with income (2021+),gt0,filers,all,3,"$1 under $5,000",19822.0,22in14ar.xls,BP11,68,BP,11 +5156,2022_tab14_partnerincome_count_gt0_all,2022,tab14,partnerincome,count,Partnership income — number with income (2021+),gt0,filers,all,4,"$5,000 under $10,000",54012.0,22in14ar.xls,BP12,68,BP,12 +5157,2022_tab14_partnerincome_count_gt0_all,2022,tab14,partnerincome,count,Partnership income — number with income (2021+),gt0,filers,all,5,"$10,000 under $15,000",45910.0,22in14ar.xls,BP13,68,BP,13 +5158,2022_tab14_partnerincome_count_gt0_all,2022,tab14,partnerincome,count,Partnership income — number with income (2021+),gt0,filers,all,6,"$15,000 under $20,000",46215.0,22in14ar.xls,BP14,68,BP,14 +5159,2022_tab14_partnerincome_count_gt0_all,2022,tab14,partnerincome,count,Partnership income — number with income (2021+),gt0,filers,all,7,"$20,000 under $25,000",39313.0,22in14ar.xls,BP15,68,BP,15 +5160,2022_tab14_partnerincome_count_gt0_all,2022,tab14,partnerincome,count,Partnership income — number with income (2021+),gt0,filers,all,8,"$25,000 under $30,000",52077.0,22in14ar.xls,BP16,68,BP,16 +5161,2022_tab14_partnerincome_count_gt0_all,2022,tab14,partnerincome,count,Partnership income — number with income (2021+),gt0,filers,all,9,"$30,000 under $40,000",109601.0,22in14ar.xls,BP17,68,BP,17 +5162,2022_tab14_partnerincome_count_gt0_all,2022,tab14,partnerincome,count,Partnership income — number with income (2021+),gt0,filers,all,10,"$40,000 under $50,000",109278.0,22in14ar.xls,BP18,68,BP,18 +5163,2022_tab14_partnerincome_count_gt0_all,2022,tab14,partnerincome,count,Partnership income — number with income (2021+),gt0,filers,all,11,"$50,000 under $75,000",245551.0,22in14ar.xls,BP19,68,BP,19 +5164,2022_tab14_partnerincome_count_gt0_all,2022,tab14,partnerincome,count,Partnership income — number with income (2021+),gt0,filers,all,12,"$75,000 under $100,000",252762.0,22in14ar.xls,BP20,68,BP,20 +5165,2022_tab14_partnerincome_count_gt0_all,2022,tab14,partnerincome,count,Partnership income — number with income (2021+),gt0,filers,all,13,"$100,000 under $200,000",774793.0,22in14ar.xls,BP21,68,BP,21 +5166,2022_tab14_partnerincome_count_gt0_all,2022,tab14,partnerincome,count,Partnership income — number with income (2021+),gt0,filers,all,14,"$200,000 under $500,000",848103.0,22in14ar.xls,BP22,68,BP,22 +5167,2022_tab14_partnerincome_count_gt0_all,2022,tab14,partnerincome,count,Partnership income — number with income (2021+),gt0,filers,all,15,"$500,000 under $1,000,000",363862.0,22in14ar.xls,BP23,68,BP,23 +5168,2022_tab14_partnerincome_count_gt0_all,2022,tab14,partnerincome,count,Partnership income — number with income (2021+),gt0,filers,all,16,"$1,000,000 under $1,500,000",120108.0,22in14ar.xls,BP24,68,BP,24 +5169,2022_tab14_partnerincome_count_gt0_all,2022,tab14,partnerincome,count,Partnership income — number with income (2021+),gt0,filers,all,17,"$1,500,000 under $2,000,000",54951.0,22in14ar.xls,BP25,68,BP,25 +5170,2022_tab14_partnerincome_count_gt0_all,2022,tab14,partnerincome,count,Partnership income — number with income (2021+),gt0,filers,all,18,"$2,000,000 under $5,000,000",86888.0,22in14ar.xls,BP26,68,BP,26 +5171,2022_tab14_partnerincome_count_gt0_all,2022,tab14,partnerincome,count,Partnership income — number with income (2021+),gt0,filers,all,19,"$5,000,000 under $10,000,000",24727.0,22in14ar.xls,BP27,68,BP,27 +5172,2022_tab14_partnerincome_count_gt0_all,2022,tab14,partnerincome,count,Partnership income — number with income (2021+),gt0,filers,all,20,"$10,000,000 or more",16763.0,22in14ar.xls,BP28,68,BP,28 +5173,2022_tab14_partnerincome_count_lt0_all,2022,tab14,partnerincome,count,Partnership income — number with loss (2021+),lt0,filers,all,1,"All returns, total",2094775.0,22in14ar.xls,BR9,70,BR,9 +5174,2022_tab14_partnerincome_count_lt0_all,2022,tab14,partnerincome,count,Partnership income — number with loss (2021+),lt0,filers,all,2,No adjusted gross income,172417.0,22in14ar.xls,BR10,70,BR,10 +5175,2022_tab14_partnerincome_count_lt0_all,2022,tab14,partnerincome,count,Partnership income — number with loss (2021+),lt0,filers,all,3,"$1 under $5,000",30136.0,22in14ar.xls,BR11,70,BR,11 +5176,2022_tab14_partnerincome_count_lt0_all,2022,tab14,partnerincome,count,Partnership income — number with loss (2021+),lt0,filers,all,4,"$5,000 under $10,000",23777.0,22in14ar.xls,BR12,70,BR,12 +5177,2022_tab14_partnerincome_count_lt0_all,2022,tab14,partnerincome,count,Partnership income — number with loss (2021+),lt0,filers,all,5,"$10,000 under $15,000",25302.0,22in14ar.xls,BR13,70,BR,13 +5178,2022_tab14_partnerincome_count_lt0_all,2022,tab14,partnerincome,count,Partnership income — number with loss (2021+),lt0,filers,all,6,"$15,000 under $20,000",27794.0,22in14ar.xls,BR14,70,BR,14 +5179,2022_tab14_partnerincome_count_lt0_all,2022,tab14,partnerincome,count,Partnership income — number with loss (2021+),lt0,filers,all,7,"$20,000 under $25,000",32311.0,22in14ar.xls,BR15,70,BR,15 +5180,2022_tab14_partnerincome_count_lt0_all,2022,tab14,partnerincome,count,Partnership income — number with loss (2021+),lt0,filers,all,8,"$25,000 under $30,000",33093.0,22in14ar.xls,BR16,70,BR,16 +5181,2022_tab14_partnerincome_count_lt0_all,2022,tab14,partnerincome,count,Partnership income — number with loss (2021+),lt0,filers,all,9,"$30,000 under $40,000",61222.0,22in14ar.xls,BR17,70,BR,17 +5182,2022_tab14_partnerincome_count_lt0_all,2022,tab14,partnerincome,count,Partnership income — number with loss (2021+),lt0,filers,all,10,"$40,000 under $50,000",69018.0,22in14ar.xls,BR18,70,BR,18 +5183,2022_tab14_partnerincome_count_lt0_all,2022,tab14,partnerincome,count,Partnership income — number with loss (2021+),lt0,filers,all,11,"$50,000 under $75,000",194901.0,22in14ar.xls,BR19,70,BR,19 +5184,2022_tab14_partnerincome_count_lt0_all,2022,tab14,partnerincome,count,Partnership income — number with loss (2021+),lt0,filers,all,12,"$75,000 under $100,000",147149.0,22in14ar.xls,BR20,70,BR,20 +5185,2022_tab14_partnerincome_count_lt0_all,2022,tab14,partnerincome,count,Partnership income — number with loss (2021+),lt0,filers,all,13,"$100,000 under $200,000",486640.0,22in14ar.xls,BR21,70,BR,21 +5186,2022_tab14_partnerincome_count_lt0_all,2022,tab14,partnerincome,count,Partnership income — number with loss (2021+),lt0,filers,all,14,"$200,000 under $500,000",469603.0,22in14ar.xls,BR22,70,BR,22 +5187,2022_tab14_partnerincome_count_lt0_all,2022,tab14,partnerincome,count,Partnership income — number with loss (2021+),lt0,filers,all,15,"$500,000 under $1,000,000",172709.0,22in14ar.xls,BR23,70,BR,23 +5188,2022_tab14_partnerincome_count_lt0_all,2022,tab14,partnerincome,count,Partnership income — number with loss (2021+),lt0,filers,all,16,"$1,000,000 under $1,500,000",53228.0,22in14ar.xls,BR24,70,BR,24 +5189,2022_tab14_partnerincome_count_lt0_all,2022,tab14,partnerincome,count,Partnership income — number with loss (2021+),lt0,filers,all,17,"$1,500,000 under $2,000,000",26472.0,22in14ar.xls,BR25,70,BR,25 +5190,2022_tab14_partnerincome_count_lt0_all,2022,tab14,partnerincome,count,Partnership income — number with loss (2021+),lt0,filers,all,18,"$2,000,000 under $5,000,000",44463.0,22in14ar.xls,BR26,70,BR,26 +5191,2022_tab14_partnerincome_count_lt0_all,2022,tab14,partnerincome,count,Partnership income — number with loss (2021+),lt0,filers,all,19,"$5,000,000 under $10,000,000",13371.0,22in14ar.xls,BR27,70,BR,27 +5192,2022_tab14_partnerincome_count_lt0_all,2022,tab14,partnerincome,count,Partnership income — number with loss (2021+),lt0,filers,all,20,"$10,000,000 or more",11170.0,22in14ar.xls,BR28,70,BR,28 +5193,2022_tab14_pensions_amount_nz_all,2022,tab14,pensions,amount,Pensions and annuities (total),nz,filers,all,1,"All returns, total",1528410590000.0,22in14ar.xls,AW9,49,AW,9 +5194,2022_tab14_pensions_amount_nz_all,2022,tab14,pensions,amount,Pensions and annuities (total),nz,filers,all,2,No adjusted gross income,8256209000.0,22in14ar.xls,AW10,49,AW,10 +5195,2022_tab14_pensions_amount_nz_all,2022,tab14,pensions,amount,Pensions and annuities (total),nz,filers,all,3,"$1 under $5,000",8681447000.0,22in14ar.xls,AW11,49,AW,11 +5196,2022_tab14_pensions_amount_nz_all,2022,tab14,pensions,amount,Pensions and annuities (total),nz,filers,all,4,"$5,000 under $10,000",10839260000.0,22in14ar.xls,AW12,49,AW,12 +5197,2022_tab14_pensions_amount_nz_all,2022,tab14,pensions,amount,Pensions and annuities (total),nz,filers,all,5,"$10,000 under $15,000",17268768000.0,22in14ar.xls,AW13,49,AW,13 +5198,2022_tab14_pensions_amount_nz_all,2022,tab14,pensions,amount,Pensions and annuities (total),nz,filers,all,6,"$15,000 under $20,000",19136480000.0,22in14ar.xls,AW14,49,AW,14 +5199,2022_tab14_pensions_amount_nz_all,2022,tab14,pensions,amount,Pensions and annuities (total),nz,filers,all,7,"$20,000 under $25,000",20089714000.0,22in14ar.xls,AW15,49,AW,15 +5200,2022_tab14_pensions_amount_nz_all,2022,tab14,pensions,amount,Pensions and annuities (total),nz,filers,all,8,"$25,000 under $30,000",22429177000.0,22in14ar.xls,AW16,49,AW,16 +5201,2022_tab14_pensions_amount_nz_all,2022,tab14,pensions,amount,Pensions and annuities (total),nz,filers,all,9,"$30,000 under $40,000",50139171000.0,22in14ar.xls,AW17,49,AW,17 +5202,2022_tab14_pensions_amount_nz_all,2022,tab14,pensions,amount,Pensions and annuities (total),nz,filers,all,10,"$40,000 under $50,000",87280416000.0,22in14ar.xls,AW18,49,AW,18 +5203,2022_tab14_pensions_amount_nz_all,2022,tab14,pensions,amount,Pensions and annuities (total),nz,filers,all,11,"$50,000 under $75,000",165452006000.0,22in14ar.xls,AW19,49,AW,19 +5204,2022_tab14_pensions_amount_nz_all,2022,tab14,pensions,amount,Pensions and annuities (total),nz,filers,all,12,"$75,000 under $100,000",179611887000.0,22in14ar.xls,AW20,49,AW,20 +5205,2022_tab14_pensions_amount_nz_all,2022,tab14,pensions,amount,Pensions and annuities (total),nz,filers,all,13,"$100,000 under $200,000",507229081000.0,22in14ar.xls,AW21,49,AW,21 +5206,2022_tab14_pensions_amount_nz_all,2022,tab14,pensions,amount,Pensions and annuities (total),nz,filers,all,14,"$200,000 under $500,000",319047092000.0,22in14ar.xls,AW22,49,AW,22 +5207,2022_tab14_pensions_amount_nz_all,2022,tab14,pensions,amount,Pensions and annuities (total),nz,filers,all,15,"$500,000 under $1,000,000",66577278000.0,22in14ar.xls,AW23,49,AW,23 +5208,2022_tab14_pensions_amount_nz_all,2022,tab14,pensions,amount,Pensions and annuities (total),nz,filers,all,16,"$1,000,000 under $1,500,000",18042784000.0,22in14ar.xls,AW24,49,AW,24 +5209,2022_tab14_pensions_amount_nz_all,2022,tab14,pensions,amount,Pensions and annuities (total),nz,filers,all,17,"$1,500,000 under $2,000,000",7211207000.0,22in14ar.xls,AW25,49,AW,25 +5210,2022_tab14_pensions_amount_nz_all,2022,tab14,pensions,amount,Pensions and annuities (total),nz,filers,all,18,"$2,000,000 under $5,000,000",13141378000.0,22in14ar.xls,AW26,49,AW,26 +5211,2022_tab14_pensions_amount_nz_all,2022,tab14,pensions,amount,Pensions and annuities (total),nz,filers,all,19,"$5,000,000 under $10,000,000",4099993000.0,22in14ar.xls,AW27,49,AW,27 +5212,2022_tab14_pensions_amount_nz_all,2022,tab14,pensions,amount,Pensions and annuities (total),nz,filers,all,20,"$10,000,000 or more",3877241000.0,22in14ar.xls,AW28,49,AW,28 +5213,2022_tab14_pensions_count_nz_all,2022,tab14,pensions,count,Pensions and annuities — number of returns,nz,filers,all,1,"All returns, total",32975793.0,22in14ar.xls,AV9,48,AV,9 +5214,2022_tab14_pensions_count_nz_all,2022,tab14,pensions,count,Pensions and annuities — number of returns,nz,filers,all,2,No adjusted gross income,263919.0,22in14ar.xls,AV10,48,AV,10 +5215,2022_tab14_pensions_count_nz_all,2022,tab14,pensions,count,Pensions and annuities — number of returns,nz,filers,all,3,"$1 under $5,000",749981.0,22in14ar.xls,AV11,48,AV,11 +5216,2022_tab14_pensions_count_nz_all,2022,tab14,pensions,count,Pensions and annuities — number of returns,nz,filers,all,4,"$5,000 under $10,000",976411.0,22in14ar.xls,AV12,48,AV,12 +5217,2022_tab14_pensions_count_nz_all,2022,tab14,pensions,count,Pensions and annuities — number of returns,nz,filers,all,5,"$10,000 under $15,000",1358259.0,22in14ar.xls,AV13,48,AV,13 +5218,2022_tab14_pensions_count_nz_all,2022,tab14,pensions,count,Pensions and annuities — number of returns,nz,filers,all,6,"$15,000 under $20,000",1282289.0,22in14ar.xls,AV14,48,AV,14 +5219,2022_tab14_pensions_count_nz_all,2022,tab14,pensions,count,Pensions and annuities — number of returns,nz,filers,all,7,"$20,000 under $25,000",1185076.0,22in14ar.xls,AV15,48,AV,15 +5220,2022_tab14_pensions_count_nz_all,2022,tab14,pensions,count,Pensions and annuities — number of returns,nz,filers,all,8,"$25,000 under $30,000",1183550.0,22in14ar.xls,AV16,48,AV,16 +5221,2022_tab14_pensions_count_nz_all,2022,tab14,pensions,count,Pensions and annuities — number of returns,nz,filers,all,9,"$30,000 under $40,000",2309694.0,22in14ar.xls,AV17,48,AV,17 +5222,2022_tab14_pensions_count_nz_all,2022,tab14,pensions,count,Pensions and annuities — number of returns,nz,filers,all,10,"$40,000 under $50,000",2267786.0,22in14ar.xls,AV18,48,AV,18 +5223,2022_tab14_pensions_count_nz_all,2022,tab14,pensions,count,Pensions and annuities — number of returns,nz,filers,all,11,"$50,000 under $75,000",5280824.0,22in14ar.xls,AV19,48,AV,19 +5224,2022_tab14_pensions_count_nz_all,2022,tab14,pensions,count,Pensions and annuities — number of returns,nz,filers,all,12,"$75,000 under $100,000",4323974.0,22in14ar.xls,AV20,48,AV,20 +5225,2022_tab14_pensions_count_nz_all,2022,tab14,pensions,count,Pensions and annuities — number of returns,nz,filers,all,13,"$100,000 under $200,000",8204662.0,22in14ar.xls,AV21,48,AV,21 +5226,2022_tab14_pensions_count_nz_all,2022,tab14,pensions,count,Pensions and annuities — number of returns,nz,filers,all,14,"$200,000 under $500,000",2991496.0,22in14ar.xls,AV22,48,AV,22 +5227,2022_tab14_pensions_count_nz_all,2022,tab14,pensions,count,Pensions and annuities — number of returns,nz,filers,all,15,"$500,000 under $1,000,000",412073.0,22in14ar.xls,AV23,48,AV,23 +5228,2022_tab14_pensions_count_nz_all,2022,tab14,pensions,count,Pensions and annuities — number of returns,nz,filers,all,16,"$1,000,000 under $1,500,000",85028.0,22in14ar.xls,AV24,48,AV,24 +5229,2022_tab14_pensions_count_nz_all,2022,tab14,pensions,count,Pensions and annuities — number of returns,nz,filers,all,17,"$1,500,000 under $2,000,000",34671.0,22in14ar.xls,AV25,48,AV,25 +5230,2022_tab14_pensions_count_nz_all,2022,tab14,pensions,count,Pensions and annuities — number of returns,nz,filers,all,18,"$2,000,000 under $5,000,000",46735.0,22in14ar.xls,AV26,48,AV,26 +5231,2022_tab14_pensions_count_nz_all,2022,tab14,pensions,count,Pensions and annuities — number of returns,nz,filers,all,19,"$5,000,000 under $10,000,000",11735.0,22in14ar.xls,AV27,48,AV,27 +5232,2022_tab14_pensions_count_nz_all,2022,tab14,pensions,count,Pensions and annuities — number of returns,nz,filers,all,20,"$10,000,000 or more",7631.0,22in14ar.xls,AV28,48,AV,28 +5233,2022_tab14_pensions_taxable_amount_nz_all,2022,tab14,pensions_taxable,amount,Pensions and annuities (taxable),nz,filers,all,1,"All returns, total",911698884000.0,22in14ar.xls,AY9,51,AY,9 +5234,2022_tab14_pensions_taxable_amount_nz_all,2022,tab14,pensions_taxable,amount,Pensions and annuities (taxable),nz,filers,all,2,No adjusted gross income,2461700000.0,22in14ar.xls,AY10,51,AY,10 +5235,2022_tab14_pensions_taxable_amount_nz_all,2022,tab14,pensions_taxable,amount,Pensions and annuities (taxable),nz,filers,all,3,"$1 under $5,000",1926765000.0,22in14ar.xls,AY11,51,AY,11 +5236,2022_tab14_pensions_taxable_amount_nz_all,2022,tab14,pensions_taxable,amount,Pensions and annuities (taxable),nz,filers,all,4,"$5,000 under $10,000",5456915000.0,22in14ar.xls,AY12,51,AY,12 +5237,2022_tab14_pensions_taxable_amount_nz_all,2022,tab14,pensions_taxable,amount,Pensions and annuities (taxable),nz,filers,all,5,"$10,000 under $15,000",11584932000.0,22in14ar.xls,AY13,51,AY,13 +5238,2022_tab14_pensions_taxable_amount_nz_all,2022,tab14,pensions_taxable,amount,Pensions and annuities (taxable),nz,filers,all,6,"$15,000 under $20,000",14116951000.0,22in14ar.xls,AY14,51,AY,14 +5239,2022_tab14_pensions_taxable_amount_nz_all,2022,tab14,pensions_taxable,amount,Pensions and annuities (taxable),nz,filers,all,7,"$20,000 under $25,000",14414125000.0,22in14ar.xls,AY15,51,AY,15 +5240,2022_tab14_pensions_taxable_amount_nz_all,2022,tab14,pensions_taxable,amount,Pensions and annuities (taxable),nz,filers,all,8,"$25,000 under $30,000",16717855000.0,22in14ar.xls,AY16,51,AY,16 +5241,2022_tab14_pensions_taxable_amount_nz_all,2022,tab14,pensions_taxable,amount,Pensions and annuities (taxable),nz,filers,all,9,"$30,000 under $40,000",36978754000.0,22in14ar.xls,AY17,51,AY,17 +5242,2022_tab14_pensions_taxable_amount_nz_all,2022,tab14,pensions_taxable,amount,Pensions and annuities (taxable),nz,filers,all,10,"$40,000 under $50,000",41935487000.0,22in14ar.xls,AY18,51,AY,18 +5243,2022_tab14_pensions_taxable_amount_nz_all,2022,tab14,pensions_taxable,amount,Pensions and annuities (taxable),nz,filers,all,11,"$50,000 under $75,000",123924570000.0,22in14ar.xls,AY19,51,AY,19 +5244,2022_tab14_pensions_taxable_amount_nz_all,2022,tab14,pensions_taxable,amount,Pensions and annuities (taxable),nz,filers,all,12,"$75,000 under $100,000",128997640000.0,22in14ar.xls,AY20,51,AY,20 +5245,2022_tab14_pensions_taxable_amount_nz_all,2022,tab14,pensions_taxable,amount,Pensions and annuities (taxable),nz,filers,all,13,"$100,000 under $200,000",326624026000.0,22in14ar.xls,AY21,51,AY,21 +5246,2022_tab14_pensions_taxable_amount_nz_all,2022,tab14,pensions_taxable,amount,Pensions and annuities (taxable),nz,filers,all,14,"$200,000 under $500,000",153405814000.0,22in14ar.xls,AY22,51,AY,22 +5247,2022_tab14_pensions_taxable_amount_nz_all,2022,tab14,pensions_taxable,amount,Pensions and annuities (taxable),nz,filers,all,15,"$500,000 under $1,000,000",21980856000.0,22in14ar.xls,AY23,51,AY,23 +5248,2022_tab14_pensions_taxable_amount_nz_all,2022,tab14,pensions_taxable,amount,Pensions and annuities (taxable),nz,filers,all,16,"$1,000,000 under $1,500,000",4646272000.0,22in14ar.xls,AY24,51,AY,24 +5249,2022_tab14_pensions_taxable_amount_nz_all,2022,tab14,pensions_taxable,amount,Pensions and annuities (taxable),nz,filers,all,17,"$1,500,000 under $2,000,000",2023264000.0,22in14ar.xls,AY25,51,AY,25 +5250,2022_tab14_pensions_taxable_amount_nz_all,2022,tab14,pensions_taxable,amount,Pensions and annuities (taxable),nz,filers,all,18,"$2,000,000 under $5,000,000",2543726000.0,22in14ar.xls,AY26,51,AY,26 +5251,2022_tab14_pensions_taxable_amount_nz_all,2022,tab14,pensions_taxable,amount,Pensions and annuities (taxable),nz,filers,all,19,"$5,000,000 under $10,000,000",1000482000.0,22in14ar.xls,AY27,51,AY,27 +5252,2022_tab14_pensions_taxable_amount_nz_all,2022,tab14,pensions_taxable,amount,Pensions and annuities (taxable),nz,filers,all,20,"$10,000,000 or more",958750000.0,22in14ar.xls,AY28,51,AY,28 +5253,2022_tab14_pensions_taxable_count_nz_all,2022,tab14,pensions_taxable,count,Pensions and annuities (taxable) — number of returns,nz,filers,all,1,"All returns, total",30020638.0,22in14ar.xls,AX9,50,AX,9 +5254,2022_tab14_pensions_taxable_count_nz_all,2022,tab14,pensions_taxable,count,Pensions and annuities (taxable) — number of returns,nz,filers,all,2,No adjusted gross income,188928.0,22in14ar.xls,AX10,50,AX,10 +5255,2022_tab14_pensions_taxable_count_nz_all,2022,tab14,pensions_taxable,count,Pensions and annuities (taxable) — number of returns,nz,filers,all,3,"$1 under $5,000",678087.0,22in14ar.xls,AX11,50,AX,11 +5256,2022_tab14_pensions_taxable_count_nz_all,2022,tab14,pensions_taxable,count,Pensions and annuities (taxable) — number of returns,nz,filers,all,4,"$5,000 under $10,000",935924.0,22in14ar.xls,AX12,50,AX,12 +5257,2022_tab14_pensions_taxable_count_nz_all,2022,tab14,pensions_taxable,count,Pensions and annuities (taxable) — number of returns,nz,filers,all,5,"$10,000 under $15,000",1305060.0,22in14ar.xls,AX13,50,AX,13 +5258,2022_tab14_pensions_taxable_count_nz_all,2022,tab14,pensions_taxable,count,Pensions and annuities (taxable) — number of returns,nz,filers,all,6,"$15,000 under $20,000",1238841.0,22in14ar.xls,AX14,50,AX,14 +5259,2022_tab14_pensions_taxable_count_nz_all,2022,tab14,pensions_taxable,count,Pensions and annuities (taxable) — number of returns,nz,filers,all,7,"$20,000 under $25,000",1122645.0,22in14ar.xls,AX15,50,AX,15 +5260,2022_tab14_pensions_taxable_count_nz_all,2022,tab14,pensions_taxable,count,Pensions and annuities (taxable) — number of returns,nz,filers,all,8,"$25,000 under $30,000",1126270.0,22in14ar.xls,AX16,50,AX,16 +5261,2022_tab14_pensions_taxable_count_nz_all,2022,tab14,pensions_taxable,count,Pensions and annuities (taxable) — number of returns,nz,filers,all,9,"$30,000 under $40,000",2182773.0,22in14ar.xls,AX17,50,AX,17 +5262,2022_tab14_pensions_taxable_count_nz_all,2022,tab14,pensions_taxable,count,Pensions and annuities (taxable) — number of returns,nz,filers,all,10,"$40,000 under $50,000",2115246.0,22in14ar.xls,AX18,50,AX,18 +5263,2022_tab14_pensions_taxable_count_nz_all,2022,tab14,pensions_taxable,count,Pensions and annuities (taxable) — number of returns,nz,filers,all,11,"$50,000 under $75,000",4883689.0,22in14ar.xls,AX19,50,AX,19 +5264,2022_tab14_pensions_taxable_count_nz_all,2022,tab14,pensions_taxable,count,Pensions and annuities (taxable) — number of returns,nz,filers,all,12,"$75,000 under $100,000",3956479.0,22in14ar.xls,AX20,50,AX,20 +5265,2022_tab14_pensions_taxable_count_nz_all,2022,tab14,pensions_taxable,count,Pensions and annuities (taxable) — number of returns,nz,filers,all,13,"$100,000 under $200,000",7404672.0,22in14ar.xls,AX21,50,AX,21 +5266,2022_tab14_pensions_taxable_count_nz_all,2022,tab14,pensions_taxable,count,Pensions and annuities (taxable) — number of returns,nz,filers,all,14,"$200,000 under $500,000",2466379.0,22in14ar.xls,AX22,50,AX,22 +5267,2022_tab14_pensions_taxable_count_nz_all,2022,tab14,pensions_taxable,count,Pensions and annuities (taxable) — number of returns,nz,filers,all,15,"$500,000 under $1,000,000",290436.0,22in14ar.xls,AX23,50,AX,23 +5268,2022_tab14_pensions_taxable_count_nz_all,2022,tab14,pensions_taxable,count,Pensions and annuities (taxable) — number of returns,nz,filers,all,16,"$1,000,000 under $1,500,000",56206.0,22in14ar.xls,AX24,50,AX,24 +5269,2022_tab14_pensions_taxable_count_nz_all,2022,tab14,pensions_taxable,count,Pensions and annuities (taxable) — number of returns,nz,filers,all,17,"$1,500,000 under $2,000,000",23738.0,22in14ar.xls,AX25,50,AX,25 +5270,2022_tab14_pensions_taxable_count_nz_all,2022,tab14,pensions_taxable,count,Pensions and annuities (taxable) — number of returns,nz,filers,all,18,"$2,000,000 under $5,000,000",31713.0,22in14ar.xls,AX26,50,AX,26 +5271,2022_tab14_pensions_taxable_count_nz_all,2022,tab14,pensions_taxable,count,Pensions and annuities (taxable) — number of returns,nz,filers,all,19,"$5,000,000 under $10,000,000",8093.0,22in14ar.xls,AX27,50,AX,27 +5272,2022_tab14_pensions_taxable_count_nz_all,2022,tab14,pensions_taxable,count,Pensions and annuities (taxable) — number of returns,nz,filers,all,20,"$10,000,000 or more",5456.0,22in14ar.xls,AX28,50,AX,28 +5273,2022_tab14_qbid_amount_nz_all,2022,tab14,qbid,amount,Qualified business income deduction (2021+),nz,filers,all,1,"All returns, total",216078693000.0,22in14ar.xls,EI9,139,EI,9 +5274,2022_tab14_qbid_amount_nz_all,2022,tab14,qbid,amount,Qualified business income deduction (2021+),nz,filers,all,2,No adjusted gross income,0.0,22in14ar.xls,EI10,139,EI,10 +5275,2022_tab14_qbid_amount_nz_all,2022,tab14,qbid,amount,Qualified business income deduction (2021+),nz,filers,all,3,"$1 under $5,000",2192000.0,22in14ar.xls,EI11,139,EI,11 +5276,2022_tab14_qbid_amount_nz_all,2022,tab14,qbid,amount,Qualified business income deduction (2021+),nz,filers,all,4,"$5,000 under $10,000",8095000.0,22in14ar.xls,EI12,139,EI,12 +5277,2022_tab14_qbid_amount_nz_all,2022,tab14,qbid,amount,Qualified business income deduction (2021+),nz,filers,all,5,"$10,000 under $15,000",79404000.0,22in14ar.xls,EI13,139,EI,13 +5278,2022_tab14_qbid_amount_nz_all,2022,tab14,qbid,amount,Qualified business income deduction (2021+),nz,filers,all,6,"$15,000 under $20,000",473079000.0,22in14ar.xls,EI14,139,EI,14 +5279,2022_tab14_qbid_amount_nz_all,2022,tab14,qbid,amount,Qualified business income deduction (2021+),nz,filers,all,7,"$20,000 under $25,000",784347000.0,22in14ar.xls,EI15,139,EI,15 +5280,2022_tab14_qbid_amount_nz_all,2022,tab14,qbid,amount,Qualified business income deduction (2021+),nz,filers,all,8,"$25,000 under $30,000",1007858000.0,22in14ar.xls,EI16,139,EI,16 +5281,2022_tab14_qbid_amount_nz_all,2022,tab14,qbid,amount,Qualified business income deduction (2021+),nz,filers,all,9,"$30,000 under $40,000",2907099000.0,22in14ar.xls,EI17,139,EI,17 +5282,2022_tab14_qbid_amount_nz_all,2022,tab14,qbid,amount,Qualified business income deduction (2021+),nz,filers,all,10,"$40,000 under $50,000",3203594000.0,22in14ar.xls,EI18,139,EI,18 +5283,2022_tab14_qbid_amount_nz_all,2022,tab14,qbid,amount,Qualified business income deduction (2021+),nz,filers,all,11,"$50,000 under $75,000",8711031000.0,22in14ar.xls,EI19,139,EI,19 +5284,2022_tab14_qbid_amount_nz_all,2022,tab14,qbid,amount,Qualified business income deduction (2021+),nz,filers,all,12,"$75,000 under $100,000",8485129000.0,22in14ar.xls,EI20,139,EI,20 +5285,2022_tab14_qbid_amount_nz_all,2022,tab14,qbid,amount,Qualified business income deduction (2021+),nz,filers,all,13,"$100,000 under $200,000",31213286000.0,22in14ar.xls,EI21,139,EI,21 +5286,2022_tab14_qbid_amount_nz_all,2022,tab14,qbid,amount,Qualified business income deduction (2021+),nz,filers,all,14,"$200,000 under $500,000",43295660000.0,22in14ar.xls,EI22,139,EI,22 +5287,2022_tab14_qbid_amount_nz_all,2022,tab14,qbid,amount,Qualified business income deduction (2021+),nz,filers,all,15,"$500,000 under $1,000,000",20878540000.0,22in14ar.xls,EI23,139,EI,23 +5288,2022_tab14_qbid_amount_nz_all,2022,tab14,qbid,amount,Qualified business income deduction (2021+),nz,filers,all,16,"$1,000,000 under $1,500,000",11914987000.0,22in14ar.xls,EI24,139,EI,24 +5289,2022_tab14_qbid_amount_nz_all,2022,tab14,qbid,amount,Qualified business income deduction (2021+),nz,filers,all,17,"$1,500,000 under $2,000,000",8737822000.0,22in14ar.xls,EI25,139,EI,25 +5290,2022_tab14_qbid_amount_nz_all,2022,tab14,qbid,amount,Qualified business income deduction (2021+),nz,filers,all,18,"$2,000,000 under $5,000,000",24115347000.0,22in14ar.xls,EI26,139,EI,26 +5291,2022_tab14_qbid_amount_nz_all,2022,tab14,qbid,amount,Qualified business income deduction (2021+),nz,filers,all,19,"$5,000,000 under $10,000,000",15082798000.0,22in14ar.xls,EI27,139,EI,27 +5292,2022_tab14_qbid_amount_nz_all,2022,tab14,qbid,amount,Qualified business income deduction (2021+),nz,filers,all,20,"$10,000,000 or more",35178424000.0,22in14ar.xls,EI28,139,EI,28 +5293,2022_tab14_qbid_count_nz_all,2022,tab14,qbid,count,QBI deduction — number of returns (2021+),nz,filers,all,1,"All returns, total",25654318.0,22in14ar.xls,EH9,138,EH,9 +5294,2022_tab14_qbid_count_nz_all,2022,tab14,qbid,count,QBI deduction — number of returns (2021+),nz,filers,all,2,No adjusted gross income,0.0,22in14ar.xls,EH10,138,EH,10 +5295,2022_tab14_qbid_count_nz_all,2022,tab14,qbid,count,QBI deduction — number of returns (2021+),nz,filers,all,3,"$1 under $5,000",13037.0,22in14ar.xls,EH11,138,EH,11 +5296,2022_tab14_qbid_count_nz_all,2022,tab14,qbid,count,QBI deduction — number of returns (2021+),nz,filers,all,4,"$5,000 under $10,000",27435.0,22in14ar.xls,EH12,138,EH,12 +5297,2022_tab14_qbid_count_nz_all,2022,tab14,qbid,count,QBI deduction — number of returns (2021+),nz,filers,all,5,"$10,000 under $15,000",411013.0,22in14ar.xls,EH13,138,EH,13 +5298,2022_tab14_qbid_count_nz_all,2022,tab14,qbid,count,QBI deduction — number of returns (2021+),nz,filers,all,6,"$15,000 under $20,000",787843.0,22in14ar.xls,EH14,138,EH,14 +5299,2022_tab14_qbid_count_nz_all,2022,tab14,qbid,count,QBI deduction — number of returns (2021+),nz,filers,all,7,"$20,000 under $25,000",856964.0,22in14ar.xls,EH15,138,EH,15 +5300,2022_tab14_qbid_count_nz_all,2022,tab14,qbid,count,QBI deduction — number of returns (2021+),nz,filers,all,8,"$25,000 under $30,000",912460.0,22in14ar.xls,EH16,138,EH,16 +5301,2022_tab14_qbid_count_nz_all,2022,tab14,qbid,count,QBI deduction — number of returns (2021+),nz,filers,all,9,"$30,000 under $40,000",1775615.0,22in14ar.xls,EH17,138,EH,17 +5302,2022_tab14_qbid_count_nz_all,2022,tab14,qbid,count,QBI deduction — number of returns (2021+),nz,filers,all,10,"$40,000 under $50,000",1594793.0,22in14ar.xls,EH18,138,EH,18 +5303,2022_tab14_qbid_count_nz_all,2022,tab14,qbid,count,QBI deduction — number of returns (2021+),nz,filers,all,11,"$50,000 under $75,000",3483624.0,22in14ar.xls,EH19,138,EH,19 +5304,2022_tab14_qbid_count_nz_all,2022,tab14,qbid,count,QBI deduction — number of returns (2021+),nz,filers,all,12,"$75,000 under $100,000",2813016.0,22in14ar.xls,EH20,138,EH,20 +5305,2022_tab14_qbid_count_nz_all,2022,tab14,qbid,count,QBI deduction — number of returns (2021+),nz,filers,all,13,"$100,000 under $200,000",6872405.0,22in14ar.xls,EH21,138,EH,21 +5306,2022_tab14_qbid_count_nz_all,2022,tab14,qbid,count,QBI deduction — number of returns (2021+),nz,filers,all,14,"$200,000 under $500,000",4517126.0,22in14ar.xls,EH22,138,EH,22 +5307,2022_tab14_qbid_count_nz_all,2022,tab14,qbid,count,QBI deduction — number of returns (2021+),nz,filers,all,15,"$500,000 under $1,000,000",994968.0,22in14ar.xls,EH23,138,EH,23 +5308,2022_tab14_qbid_count_nz_all,2022,tab14,qbid,count,QBI deduction — number of returns (2021+),nz,filers,all,16,"$1,000,000 under $1,500,000",254883.0,22in14ar.xls,EH24,138,EH,24 +5309,2022_tab14_qbid_count_nz_all,2022,tab14,qbid,count,QBI deduction — number of returns (2021+),nz,filers,all,17,"$1,500,000 under $2,000,000",111485.0,22in14ar.xls,EH25,138,EH,25 +5310,2022_tab14_qbid_count_nz_all,2022,tab14,qbid,count,QBI deduction — number of returns (2021+),nz,filers,all,18,"$2,000,000 under $5,000,000",159860.0,22in14ar.xls,EH26,138,EH,26 +5311,2022_tab14_qbid_count_nz_all,2022,tab14,qbid,count,QBI deduction — number of returns (2021+),nz,filers,all,19,"$5,000,000 under $10,000,000",41720.0,22in14ar.xls,EH27,138,EH,27 +5312,2022_tab14_qbid_count_nz_all,2022,tab14,qbid,count,QBI deduction — number of returns (2021+),nz,filers,all,20,"$10,000,000 or more",26069.0,22in14ar.xls,EH28,138,EH,28 +5313,2022_tab14_qualdiv_amount_nz_all,2022,tab14,qualdiv,amount,Qualified dividends,nz,filers,all,1,"All returns, total",313230845000.0,22in14ar.xls,AA9,27,AA,9 +5314,2022_tab14_qualdiv_amount_nz_all,2022,tab14,qualdiv,amount,Qualified dividends,nz,filers,all,2,No adjusted gross income,2427364000.0,22in14ar.xls,AA10,27,AA,10 +5315,2022_tab14_qualdiv_amount_nz_all,2022,tab14,qualdiv,amount,Qualified dividends,nz,filers,all,3,"$1 under $5,000",626680000.0,22in14ar.xls,AA11,27,AA,11 +5316,2022_tab14_qualdiv_amount_nz_all,2022,tab14,qualdiv,amount,Qualified dividends,nz,filers,all,4,"$5,000 under $10,000",802923000.0,22in14ar.xls,AA12,27,AA,12 +5317,2022_tab14_qualdiv_amount_nz_all,2022,tab14,qualdiv,amount,Qualified dividends,nz,filers,all,5,"$10,000 under $15,000",1089569000.0,22in14ar.xls,AA13,27,AA,13 +5318,2022_tab14_qualdiv_amount_nz_all,2022,tab14,qualdiv,amount,Qualified dividends,nz,filers,all,6,"$15,000 under $20,000",1217055000.0,22in14ar.xls,AA14,27,AA,14 +5319,2022_tab14_qualdiv_amount_nz_all,2022,tab14,qualdiv,amount,Qualified dividends,nz,filers,all,7,"$20,000 under $25,000",1221401000.0,22in14ar.xls,AA15,27,AA,15 +5320,2022_tab14_qualdiv_amount_nz_all,2022,tab14,qualdiv,amount,Qualified dividends,nz,filers,all,8,"$25,000 under $30,000",1208577000.0,22in14ar.xls,AA16,27,AA,16 +5321,2022_tab14_qualdiv_amount_nz_all,2022,tab14,qualdiv,amount,Qualified dividends,nz,filers,all,9,"$30,000 under $40,000",2701330000.0,22in14ar.xls,AA17,27,AA,17 +5322,2022_tab14_qualdiv_amount_nz_all,2022,tab14,qualdiv,amount,Qualified dividends,nz,filers,all,10,"$40,000 under $50,000",3339456000.0,22in14ar.xls,AA18,27,AA,18 +5323,2022_tab14_qualdiv_amount_nz_all,2022,tab14,qualdiv,amount,Qualified dividends,nz,filers,all,11,"$50,000 under $75,000",10009937000.0,22in14ar.xls,AA19,27,AA,19 +5324,2022_tab14_qualdiv_amount_nz_all,2022,tab14,qualdiv,amount,Qualified dividends,nz,filers,all,12,"$75,000 under $100,000",11386257000.0,22in14ar.xls,AA20,27,AA,20 +5325,2022_tab14_qualdiv_amount_nz_all,2022,tab14,qualdiv,amount,Qualified dividends,nz,filers,all,13,"$100,000 under $200,000",42106183000.0,22in14ar.xls,AA21,27,AA,21 +5326,2022_tab14_qualdiv_amount_nz_all,2022,tab14,qualdiv,amount,Qualified dividends,nz,filers,all,14,"$200,000 under $500,000",64535479000.0,22in14ar.xls,AA22,27,AA,22 +5327,2022_tab14_qualdiv_amount_nz_all,2022,tab14,qualdiv,amount,Qualified dividends,nz,filers,all,15,"$500,000 under $1,000,000",37096245000.0,22in14ar.xls,AA23,27,AA,23 +5328,2022_tab14_qualdiv_amount_nz_all,2022,tab14,qualdiv,amount,Qualified dividends,nz,filers,all,16,"$1,000,000 under $1,500,000",16687226000.0,22in14ar.xls,AA24,27,AA,24 +5329,2022_tab14_qualdiv_amount_nz_all,2022,tab14,qualdiv,amount,Qualified dividends,nz,filers,all,17,"$1,500,000 under $2,000,000",10708071000.0,22in14ar.xls,AA25,27,AA,25 +5330,2022_tab14_qualdiv_amount_nz_all,2022,tab14,qualdiv,amount,Qualified dividends,nz,filers,all,18,"$2,000,000 under $5,000,000",27882261000.0,22in14ar.xls,AA26,27,AA,26 +5331,2022_tab14_qualdiv_amount_nz_all,2022,tab14,qualdiv,amount,Qualified dividends,nz,filers,all,19,"$5,000,000 under $10,000,000",16627301000.0,22in14ar.xls,AA27,27,AA,27 +5332,2022_tab14_qualdiv_amount_nz_all,2022,tab14,qualdiv,amount,Qualified dividends,nz,filers,all,20,"$10,000,000 or more",61557527000.0,22in14ar.xls,AA28,27,AA,28 +5333,2022_tab14_qualdiv_count_nz_all,2022,tab14,qualdiv,count,Qualified dividends — number of returns,nz,filers,all,1,"All returns, total",30737089.0,22in14ar.xls,Z9,26,Z,9 +5334,2022_tab14_qualdiv_count_nz_all,2022,tab14,qualdiv,count,Qualified dividends — number of returns,nz,filers,all,2,No adjusted gross income,441499.0,22in14ar.xls,Z10,26,Z,10 +5335,2022_tab14_qualdiv_count_nz_all,2022,tab14,qualdiv,count,Qualified dividends — number of returns,nz,filers,all,3,"$1 under $5,000",824214.0,22in14ar.xls,Z11,26,Z,11 +5336,2022_tab14_qualdiv_count_nz_all,2022,tab14,qualdiv,count,Qualified dividends — number of returns,nz,filers,all,4,"$5,000 under $10,000",677033.0,22in14ar.xls,Z12,26,Z,12 +5337,2022_tab14_qualdiv_count_nz_all,2022,tab14,qualdiv,count,Qualified dividends — number of returns,nz,filers,all,5,"$10,000 under $15,000",721032.0,22in14ar.xls,Z13,26,Z,13 +5338,2022_tab14_qualdiv_count_nz_all,2022,tab14,qualdiv,count,Qualified dividends — number of returns,nz,filers,all,6,"$15,000 under $20,000",631439.0,22in14ar.xls,Z14,26,Z,14 +5339,2022_tab14_qualdiv_count_nz_all,2022,tab14,qualdiv,count,Qualified dividends — number of returns,nz,filers,all,7,"$20,000 under $25,000",668034.0,22in14ar.xls,Z15,26,Z,15 +5340,2022_tab14_qualdiv_count_nz_all,2022,tab14,qualdiv,count,Qualified dividends — number of returns,nz,filers,all,8,"$25,000 under $30,000",633167.0,22in14ar.xls,Z16,26,Z,16 +5341,2022_tab14_qualdiv_count_nz_all,2022,tab14,qualdiv,count,Qualified dividends — number of returns,nz,filers,all,9,"$30,000 under $40,000",1313018.0,22in14ar.xls,Z17,26,Z,17 +5342,2022_tab14_qualdiv_count_nz_all,2022,tab14,qualdiv,count,Qualified dividends — number of returns,nz,filers,all,10,"$40,000 under $50,000",1363374.0,22in14ar.xls,Z18,26,Z,18 +5343,2022_tab14_qualdiv_count_nz_all,2022,tab14,qualdiv,count,Qualified dividends — number of returns,nz,filers,all,11,"$50,000 under $75,000",3682018.0,22in14ar.xls,Z19,26,Z,19 +5344,2022_tab14_qualdiv_count_nz_all,2022,tab14,qualdiv,count,Qualified dividends — number of returns,nz,filers,all,12,"$75,000 under $100,000",3402060.0,22in14ar.xls,Z20,26,Z,20 +5345,2022_tab14_qualdiv_count_nz_all,2022,tab14,qualdiv,count,Qualified dividends — number of returns,nz,filers,all,13,"$100,000 under $200,000",8685946.0,22in14ar.xls,Z21,26,Z,21 +5346,2022_tab14_qualdiv_count_nz_all,2022,tab14,qualdiv,count,Qualified dividends — number of returns,nz,filers,all,14,"$200,000 under $500,000",5737299.0,22in14ar.xls,Z22,26,Z,22 +5347,2022_tab14_qualdiv_count_nz_all,2022,tab14,qualdiv,count,Qualified dividends — number of returns,nz,filers,all,15,"$500,000 under $1,000,000",1273494.0,22in14ar.xls,Z23,26,Z,23 +5348,2022_tab14_qualdiv_count_nz_all,2022,tab14,qualdiv,count,Qualified dividends — number of returns,nz,filers,all,16,"$1,000,000 under $1,500,000",298612.0,22in14ar.xls,Z24,26,Z,24 +5349,2022_tab14_qualdiv_count_nz_all,2022,tab14,qualdiv,count,Qualified dividends — number of returns,nz,filers,all,17,"$1,500,000 under $2,000,000",126287.0,22in14ar.xls,Z25,26,Z,25 +5350,2022_tab14_qualdiv_count_nz_all,2022,tab14,qualdiv,count,Qualified dividends — number of returns,nz,filers,all,18,"$2,000,000 under $5,000,000",179434.0,22in14ar.xls,Z26,26,Z,26 +5351,2022_tab14_qualdiv_count_nz_all,2022,tab14,qualdiv,count,Qualified dividends — number of returns,nz,filers,all,19,"$5,000,000 under $10,000,000",47262.0,22in14ar.xls,Z27,26,Z,27 +5352,2022_tab14_qualdiv_count_nz_all,2022,tab14,qualdiv,count,Qualified dividends — number of returns,nz,filers,all,20,"$10,000,000 or more",31865.0,22in14ar.xls,Z28,26,Z,28 +5353,2022_tab14_rentroyalty_amount_gt0_all,2022,tab14,rentroyalty,amount,Rent and royalty net income,gt0,filers,all,1,"All returns, total",148879455000.0,22in14ar.xls,BM9,65,BM,9 +5354,2022_tab14_rentroyalty_amount_gt0_all,2022,tab14,rentroyalty,amount,Rent and royalty net income,gt0,filers,all,2,No adjusted gross income,2629871000.0,22in14ar.xls,BM10,65,BM,10 +5355,2022_tab14_rentroyalty_amount_gt0_all,2022,tab14,rentroyalty,amount,Rent and royalty net income,gt0,filers,all,3,"$1 under $5,000",338802000.0,22in14ar.xls,BM11,65,BM,11 +5356,2022_tab14_rentroyalty_amount_gt0_all,2022,tab14,rentroyalty,amount,Rent and royalty net income,gt0,filers,all,4,"$5,000 under $10,000",1004320000.0,22in14ar.xls,BM12,65,BM,12 +5357,2022_tab14_rentroyalty_amount_gt0_all,2022,tab14,rentroyalty,amount,Rent and royalty net income,gt0,filers,all,5,"$10,000 under $15,000",1313496000.0,22in14ar.xls,BM13,65,BM,13 +5358,2022_tab14_rentroyalty_amount_gt0_all,2022,tab14,rentroyalty,amount,Rent and royalty net income,gt0,filers,all,6,"$15,000 under $20,000",1176753000.0,22in14ar.xls,BM14,65,BM,14 +5359,2022_tab14_rentroyalty_amount_gt0_all,2022,tab14,rentroyalty,amount,Rent and royalty net income,gt0,filers,all,7,"$20,000 under $25,000",1429319000.0,22in14ar.xls,BM15,65,BM,15 +5360,2022_tab14_rentroyalty_amount_gt0_all,2022,tab14,rentroyalty,amount,Rent and royalty net income,gt0,filers,all,8,"$25,000 under $30,000",1493650000.0,22in14ar.xls,BM16,65,BM,16 +5361,2022_tab14_rentroyalty_amount_gt0_all,2022,tab14,rentroyalty,amount,Rent and royalty net income,gt0,filers,all,9,"$30,000 under $40,000",2800298000.0,22in14ar.xls,BM17,65,BM,17 +5362,2022_tab14_rentroyalty_amount_gt0_all,2022,tab14,rentroyalty,amount,Rent and royalty net income,gt0,filers,all,10,"$40,000 under $50,000",2722970000.0,22in14ar.xls,BM18,65,BM,18 +5363,2022_tab14_rentroyalty_amount_gt0_all,2022,tab14,rentroyalty,amount,Rent and royalty net income,gt0,filers,all,11,"$50,000 under $75,000",7819997000.0,22in14ar.xls,BM19,65,BM,19 +5364,2022_tab14_rentroyalty_amount_gt0_all,2022,tab14,rentroyalty,amount,Rent and royalty net income,gt0,filers,all,12,"$75,000 under $100,000",7904055000.0,22in14ar.xls,BM20,65,BM,20 +5365,2022_tab14_rentroyalty_amount_gt0_all,2022,tab14,rentroyalty,amount,Rent and royalty net income,gt0,filers,all,13,"$100,000 under $200,000",26187853000.0,22in14ar.xls,BM21,65,BM,21 +5366,2022_tab14_rentroyalty_amount_gt0_all,2022,tab14,rentroyalty,amount,Rent and royalty net income,gt0,filers,all,14,"$200,000 under $500,000",32430610000.0,22in14ar.xls,BM22,65,BM,22 +5367,2022_tab14_rentroyalty_amount_gt0_all,2022,tab14,rentroyalty,amount,Rent and royalty net income,gt0,filers,all,15,"$500,000 under $1,000,000",19544277000.0,22in14ar.xls,BM23,65,BM,23 +5368,2022_tab14_rentroyalty_amount_gt0_all,2022,tab14,rentroyalty,amount,Rent and royalty net income,gt0,filers,all,16,"$1,000,000 under $1,500,000",7186099000.0,22in14ar.xls,BM24,65,BM,24 +5369,2022_tab14_rentroyalty_amount_gt0_all,2022,tab14,rentroyalty,amount,Rent and royalty net income,gt0,filers,all,17,"$1,500,000 under $2,000,000",4806341000.0,22in14ar.xls,BM25,65,BM,25 +5370,2022_tab14_rentroyalty_amount_gt0_all,2022,tab14,rentroyalty,amount,Rent and royalty net income,gt0,filers,all,18,"$2,000,000 under $5,000,000",11775925000.0,22in14ar.xls,BM26,65,BM,26 +5371,2022_tab14_rentroyalty_amount_gt0_all,2022,tab14,rentroyalty,amount,Rent and royalty net income,gt0,filers,all,19,"$5,000,000 under $10,000,000",5725111000.0,22in14ar.xls,BM27,65,BM,27 +5372,2022_tab14_rentroyalty_amount_gt0_all,2022,tab14,rentroyalty,amount,Rent and royalty net income,gt0,filers,all,20,"$10,000,000 or more",10589707000.0,22in14ar.xls,BM28,65,BM,28 +5373,2022_tab14_rentroyalty_amount_lt0_all,2022,tab14,rentroyalty,amount,Rent and royalty net loss,lt0,filers,all,1,"All returns, total",55702877000.0,22in14ar.xls,BO9,67,BO,9 +5374,2022_tab14_rentroyalty_amount_lt0_all,2022,tab14,rentroyalty,amount,Rent and royalty net loss,lt0,filers,all,2,No adjusted gross income,7448625000.0,22in14ar.xls,BO10,67,BO,10 +5375,2022_tab14_rentroyalty_amount_lt0_all,2022,tab14,rentroyalty,amount,Rent and royalty net loss,lt0,filers,all,3,"$1 under $5,000",513745000.0,22in14ar.xls,BO11,67,BO,11 +5376,2022_tab14_rentroyalty_amount_lt0_all,2022,tab14,rentroyalty,amount,Rent and royalty net loss,lt0,filers,all,4,"$5,000 under $10,000",600699000.0,22in14ar.xls,BO12,67,BO,12 +5377,2022_tab14_rentroyalty_amount_lt0_all,2022,tab14,rentroyalty,amount,Rent and royalty net loss,lt0,filers,all,5,"$10,000 under $15,000",715966000.0,22in14ar.xls,BO13,67,BO,13 +5378,2022_tab14_rentroyalty_amount_lt0_all,2022,tab14,rentroyalty,amount,Rent and royalty net loss,lt0,filers,all,6,"$15,000 under $20,000",856447000.0,22in14ar.xls,BO14,67,BO,14 +5379,2022_tab14_rentroyalty_amount_lt0_all,2022,tab14,rentroyalty,amount,Rent and royalty net loss,lt0,filers,all,7,"$20,000 under $25,000",872132000.0,22in14ar.xls,BO15,67,BO,15 +5380,2022_tab14_rentroyalty_amount_lt0_all,2022,tab14,rentroyalty,amount,Rent and royalty net loss,lt0,filers,all,8,"$25,000 under $30,000",969475000.0,22in14ar.xls,BO16,67,BO,16 +5381,2022_tab14_rentroyalty_amount_lt0_all,2022,tab14,rentroyalty,amount,Rent and royalty net loss,lt0,filers,all,9,"$30,000 under $40,000",1872425000.0,22in14ar.xls,BO17,67,BO,17 +5382,2022_tab14_rentroyalty_amount_lt0_all,2022,tab14,rentroyalty,amount,Rent and royalty net loss,lt0,filers,all,10,"$40,000 under $50,000",2009667000.0,22in14ar.xls,BO18,67,BO,18 +5383,2022_tab14_rentroyalty_amount_lt0_all,2022,tab14,rentroyalty,amount,Rent and royalty net loss,lt0,filers,all,11,"$50,000 under $75,000",5354536000.0,22in14ar.xls,BO19,67,BO,19 +5384,2022_tab14_rentroyalty_amount_lt0_all,2022,tab14,rentroyalty,amount,Rent and royalty net loss,lt0,filers,all,12,"$75,000 under $100,000",4948072000.0,22in14ar.xls,BO20,67,BO,20 +5385,2022_tab14_rentroyalty_amount_lt0_all,2022,tab14,rentroyalty,amount,Rent and royalty net loss,lt0,filers,all,13,"$100,000 under $200,000",9662418000.0,22in14ar.xls,BO21,67,BO,21 +5386,2022_tab14_rentroyalty_amount_lt0_all,2022,tab14,rentroyalty,amount,Rent and royalty net loss,lt0,filers,all,14,"$200,000 under $500,000",8740155000.0,22in14ar.xls,BO22,67,BO,22 +5387,2022_tab14_rentroyalty_amount_lt0_all,2022,tab14,rentroyalty,amount,Rent and royalty net loss,lt0,filers,all,15,"$500,000 under $1,000,000",4422579000.0,22in14ar.xls,BO23,67,BO,23 +5388,2022_tab14_rentroyalty_amount_lt0_all,2022,tab14,rentroyalty,amount,Rent and royalty net loss,lt0,filers,all,16,"$1,000,000 under $1,500,000",1702383000.0,22in14ar.xls,BO24,67,BO,24 +5389,2022_tab14_rentroyalty_amount_lt0_all,2022,tab14,rentroyalty,amount,Rent and royalty net loss,lt0,filers,all,17,"$1,500,000 under $2,000,000",872075000.0,22in14ar.xls,BO25,67,BO,25 +5390,2022_tab14_rentroyalty_amount_lt0_all,2022,tab14,rentroyalty,amount,Rent and royalty net loss,lt0,filers,all,18,"$2,000,000 under $5,000,000",1961507000.0,22in14ar.xls,BO26,67,BO,26 +5391,2022_tab14_rentroyalty_amount_lt0_all,2022,tab14,rentroyalty,amount,Rent and royalty net loss,lt0,filers,all,19,"$5,000,000 under $10,000,000",870774000.0,22in14ar.xls,BO27,67,BO,27 +5392,2022_tab14_rentroyalty_amount_lt0_all,2022,tab14,rentroyalty,amount,Rent and royalty net loss,lt0,filers,all,20,"$10,000,000 or more",1309197000.0,22in14ar.xls,BO28,67,BO,28 +5393,2022_tab14_rentroyalty_count_gt0_all,2022,tab14,rentroyalty,count,Rent/royalty — number of returns with income,gt0,filers,all,1,"All returns, total",6380131.0,22in14ar.xls,BL9,64,BL,9 +5394,2022_tab14_rentroyalty_count_gt0_all,2022,tab14,rentroyalty,count,Rent/royalty — number of returns with income,gt0,filers,all,2,No adjusted gross income,130678.0,22in14ar.xls,BL10,64,BL,10 +5395,2022_tab14_rentroyalty_count_gt0_all,2022,tab14,rentroyalty,count,Rent/royalty — number of returns with income,gt0,filers,all,3,"$1 under $5,000",117053.0,22in14ar.xls,BL11,64,BL,11 +5396,2022_tab14_rentroyalty_count_gt0_all,2022,tab14,rentroyalty,count,Rent/royalty — number of returns with income,gt0,filers,all,4,"$5,000 under $10,000",181896.0,22in14ar.xls,BL12,64,BL,12 +5397,2022_tab14_rentroyalty_count_gt0_all,2022,tab14,rentroyalty,count,Rent/royalty — number of returns with income,gt0,filers,all,5,"$10,000 under $15,000",203905.0,22in14ar.xls,BL13,64,BL,13 +5398,2022_tab14_rentroyalty_count_gt0_all,2022,tab14,rentroyalty,count,Rent/royalty — number of returns with income,gt0,filers,all,6,"$15,000 under $20,000",165099.0,22in14ar.xls,BL14,64,BL,14 +5399,2022_tab14_rentroyalty_count_gt0_all,2022,tab14,rentroyalty,count,Rent/royalty — number of returns with income,gt0,filers,all,7,"$20,000 under $25,000",165903.0,22in14ar.xls,BL15,64,BL,15 +5400,2022_tab14_rentroyalty_count_gt0_all,2022,tab14,rentroyalty,count,Rent/royalty — number of returns with income,gt0,filers,all,8,"$25,000 under $30,000",167124.0,22in14ar.xls,BL16,64,BL,16 +5401,2022_tab14_rentroyalty_count_gt0_all,2022,tab14,rentroyalty,count,Rent/royalty — number of returns with income,gt0,filers,all,9,"$30,000 under $40,000",296014.0,22in14ar.xls,BL17,64,BL,17 +5402,2022_tab14_rentroyalty_count_gt0_all,2022,tab14,rentroyalty,count,Rent/royalty — number of returns with income,gt0,filers,all,10,"$40,000 under $50,000",273407.0,22in14ar.xls,BL18,64,BL,18 +5403,2022_tab14_rentroyalty_count_gt0_all,2022,tab14,rentroyalty,count,Rent/royalty — number of returns with income,gt0,filers,all,11,"$50,000 under $75,000",767152.0,22in14ar.xls,BL19,64,BL,19 +5404,2022_tab14_rentroyalty_count_gt0_all,2022,tab14,rentroyalty,count,Rent/royalty — number of returns with income,gt0,filers,all,12,"$75,000 under $100,000",672921.0,22in14ar.xls,BL20,64,BL,20 +5405,2022_tab14_rentroyalty_count_gt0_all,2022,tab14,rentroyalty,count,Rent/royalty — number of returns with income,gt0,filers,all,13,"$100,000 under $200,000",1644912.0,22in14ar.xls,BL21,64,BL,21 +5406,2022_tab14_rentroyalty_count_gt0_all,2022,tab14,rentroyalty,count,Rent/royalty — number of returns with income,gt0,filers,all,14,"$200,000 under $500,000",1101689.0,22in14ar.xls,BL22,64,BL,22 +5407,2022_tab14_rentroyalty_count_gt0_all,2022,tab14,rentroyalty,count,Rent/royalty — number of returns with income,gt0,filers,all,15,"$500,000 under $1,000,000",285984.0,22in14ar.xls,BL23,64,BL,23 +5408,2022_tab14_rentroyalty_count_gt0_all,2022,tab14,rentroyalty,count,Rent/royalty — number of returns with income,gt0,filers,all,16,"$1,000,000 under $1,500,000",78672.0,22in14ar.xls,BL24,64,BL,24 +5409,2022_tab14_rentroyalty_count_gt0_all,2022,tab14,rentroyalty,count,Rent/royalty — number of returns with income,gt0,filers,all,17,"$1,500,000 under $2,000,000",35783.0,22in14ar.xls,BL25,64,BL,25 +5410,2022_tab14_rentroyalty_count_gt0_all,2022,tab14,rentroyalty,count,Rent/royalty — number of returns with income,gt0,filers,all,18,"$2,000,000 under $5,000,000",59462.0,22in14ar.xls,BL26,64,BL,26 +5411,2022_tab14_rentroyalty_count_gt0_all,2022,tab14,rentroyalty,count,Rent/royalty — number of returns with income,gt0,filers,all,19,"$5,000,000 under $10,000,000",18246.0,22in14ar.xls,BL27,64,BL,27 +5412,2022_tab14_rentroyalty_count_gt0_all,2022,tab14,rentroyalty,count,Rent/royalty — number of returns with income,gt0,filers,all,20,"$10,000,000 or more",14230.0,22in14ar.xls,BL28,64,BL,28 +5413,2022_tab14_rentroyalty_count_lt0_all,2022,tab14,rentroyalty,count,Rent/royalty — number of returns with loss,lt0,filers,all,1,"All returns, total",3313901.0,22in14ar.xls,BN9,66,BN,9 +5414,2022_tab14_rentroyalty_count_lt0_all,2022,tab14,rentroyalty,count,Rent/royalty — number of returns with loss,lt0,filers,all,2,No adjusted gross income,205670.0,22in14ar.xls,BN10,66,BN,10 +5415,2022_tab14_rentroyalty_count_lt0_all,2022,tab14,rentroyalty,count,Rent/royalty — number of returns with loss,lt0,filers,all,3,"$1 under $5,000",56372.0,22in14ar.xls,BN11,66,BN,11 +5416,2022_tab14_rentroyalty_count_lt0_all,2022,tab14,rentroyalty,count,Rent/royalty — number of returns with loss,lt0,filers,all,4,"$5,000 under $10,000",65736.0,22in14ar.xls,BN12,66,BN,12 +5417,2022_tab14_rentroyalty_count_lt0_all,2022,tab14,rentroyalty,count,Rent/royalty — number of returns with loss,lt0,filers,all,5,"$10,000 under $15,000",73126.0,22in14ar.xls,BN13,66,BN,13 +5418,2022_tab14_rentroyalty_count_lt0_all,2022,tab14,rentroyalty,count,Rent/royalty — number of returns with loss,lt0,filers,all,6,"$15,000 under $20,000",82857.0,22in14ar.xls,BN14,66,BN,14 +5419,2022_tab14_rentroyalty_count_lt0_all,2022,tab14,rentroyalty,count,Rent/royalty — number of returns with loss,lt0,filers,all,7,"$20,000 under $25,000",78263.0,22in14ar.xls,BN15,66,BN,15 +5420,2022_tab14_rentroyalty_count_lt0_all,2022,tab14,rentroyalty,count,Rent/royalty — number of returns with loss,lt0,filers,all,8,"$25,000 under $30,000",83536.0,22in14ar.xls,BN16,66,BN,16 +5421,2022_tab14_rentroyalty_count_lt0_all,2022,tab14,rentroyalty,count,Rent/royalty — number of returns with loss,lt0,filers,all,9,"$30,000 under $40,000",166051.0,22in14ar.xls,BN17,66,BN,17 +5422,2022_tab14_rentroyalty_count_lt0_all,2022,tab14,rentroyalty,count,Rent/royalty — number of returns with loss,lt0,filers,all,10,"$40,000 under $50,000",184013.0,22in14ar.xls,BN18,66,BN,18 +5423,2022_tab14_rentroyalty_count_lt0_all,2022,tab14,rentroyalty,count,Rent/royalty — number of returns with loss,lt0,filers,all,11,"$50,000 under $75,000",506332.0,22in14ar.xls,BN19,66,BN,19 +5424,2022_tab14_rentroyalty_count_lt0_all,2022,tab14,rentroyalty,count,Rent/royalty — number of returns with loss,lt0,filers,all,12,"$75,000 under $100,000",444399.0,22in14ar.xls,BN20,66,BN,20 +5425,2022_tab14_rentroyalty_count_lt0_all,2022,tab14,rentroyalty,count,Rent/royalty — number of returns with loss,lt0,filers,all,13,"$100,000 under $200,000",874726.0,22in14ar.xls,BN21,66,BN,21 +5426,2022_tab14_rentroyalty_count_lt0_all,2022,tab14,rentroyalty,count,Rent/royalty — number of returns with loss,lt0,filers,all,14,"$200,000 under $500,000",315250.0,22in14ar.xls,BN22,66,BN,22 +5427,2022_tab14_rentroyalty_count_lt0_all,2022,tab14,rentroyalty,count,Rent/royalty — number of returns with loss,lt0,filers,all,15,"$500,000 under $1,000,000",103015.0,22in14ar.xls,BN23,66,BN,23 +5428,2022_tab14_rentroyalty_count_lt0_all,2022,tab14,rentroyalty,count,Rent/royalty — number of returns with loss,lt0,filers,all,16,"$1,000,000 under $1,500,000",30073.0,22in14ar.xls,BN24,66,BN,24 +5429,2022_tab14_rentroyalty_count_lt0_all,2022,tab14,rentroyalty,count,Rent/royalty — number of returns with loss,lt0,filers,all,17,"$1,500,000 under $2,000,000",13165.0,22in14ar.xls,BN25,66,BN,25 +5430,2022_tab14_rentroyalty_count_lt0_all,2022,tab14,rentroyalty,count,Rent/royalty — number of returns with loss,lt0,filers,all,18,"$2,000,000 under $5,000,000",20751.0,22in14ar.xls,BN26,66,BN,26 +5431,2022_tab14_rentroyalty_count_lt0_all,2022,tab14,rentroyalty,count,Rent/royalty — number of returns with loss,lt0,filers,all,19,"$5,000,000 under $10,000,000",6049.0,22in14ar.xls,BN27,66,BN,27 +5432,2022_tab14_rentroyalty_count_lt0_all,2022,tab14,rentroyalty,count,Rent/royalty — number of returns with loss,lt0,filers,all,20,"$10,000,000 or more",4517.0,22in14ar.xls,BN28,66,BN,28 +5433,2022_tab14_scorpincome_amount_gt0_all,2022,tab14,scorpincome,amount,S-corporation net income (2021+),gt0,filers,all,1,"All returns, total",812741318000.0,22in14ar.xls,BU9,73,BU,9 +5434,2022_tab14_scorpincome_amount_gt0_all,2022,tab14,scorpincome,amount,S-corporation net income (2021+),gt0,filers,all,2,No adjusted gross income,5058593000.0,22in14ar.xls,BU10,73,BU,10 +5435,2022_tab14_scorpincome_amount_gt0_all,2022,tab14,scorpincome,amount,S-corporation net income (2021+),gt0,filers,all,3,"$1 under $5,000",246011000.0,22in14ar.xls,BU11,73,BU,11 +5436,2022_tab14_scorpincome_amount_gt0_all,2022,tab14,scorpincome,amount,S-corporation net income (2021+),gt0,filers,all,4,"$5,000 under $10,000",292912000.0,22in14ar.xls,BU12,73,BU,12 +5437,2022_tab14_scorpincome_amount_gt0_all,2022,tab14,scorpincome,amount,S-corporation net income (2021+),gt0,filers,all,5,"$10,000 under $15,000",486657000.0,22in14ar.xls,BU13,73,BU,13 +5438,2022_tab14_scorpincome_amount_gt0_all,2022,tab14,scorpincome,amount,S-corporation net income (2021+),gt0,filers,all,6,"$15,000 under $20,000",583158000.0,22in14ar.xls,BU14,73,BU,14 +5439,2022_tab14_scorpincome_amount_gt0_all,2022,tab14,scorpincome,amount,S-corporation net income (2021+),gt0,filers,all,7,"$20,000 under $25,000",798350000.0,22in14ar.xls,BU15,73,BU,15 +5440,2022_tab14_scorpincome_amount_gt0_all,2022,tab14,scorpincome,amount,S-corporation net income (2021+),gt0,filers,all,8,"$25,000 under $30,000",1214771000.0,22in14ar.xls,BU16,73,BU,16 +5441,2022_tab14_scorpincome_amount_gt0_all,2022,tab14,scorpincome,amount,S-corporation net income (2021+),gt0,filers,all,9,"$30,000 under $40,000",2929046000.0,22in14ar.xls,BU17,73,BU,17 +5442,2022_tab14_scorpincome_amount_gt0_all,2022,tab14,scorpincome,amount,S-corporation net income (2021+),gt0,filers,all,10,"$40,000 under $50,000",3082848000.0,22in14ar.xls,BU18,73,BU,18 +5443,2022_tab14_scorpincome_amount_gt0_all,2022,tab14,scorpincome,amount,S-corporation net income (2021+),gt0,filers,all,11,"$50,000 under $75,000",12311632000.0,22in14ar.xls,BU19,73,BU,19 +5444,2022_tab14_scorpincome_amount_gt0_all,2022,tab14,scorpincome,amount,S-corporation net income (2021+),gt0,filers,all,12,"$75,000 under $100,000",12098356000.0,22in14ar.xls,BU20,73,BU,20 +5445,2022_tab14_scorpincome_amount_gt0_all,2022,tab14,scorpincome,amount,S-corporation net income (2021+),gt0,filers,all,13,"$100,000 under $200,000",54285528000.0,22in14ar.xls,BU21,73,BU,21 +5446,2022_tab14_scorpincome_amount_gt0_all,2022,tab14,scorpincome,amount,S-corporation net income (2021+),gt0,filers,all,14,"$200,000 under $500,000",127744318000.0,22in14ar.xls,BU22,73,BU,22 +5447,2022_tab14_scorpincome_amount_gt0_all,2022,tab14,scorpincome,amount,S-corporation net income (2021+),gt0,filers,all,15,"$500,000 under $1,000,000",111710531000.0,22in14ar.xls,BU23,73,BU,23 +5448,2022_tab14_scorpincome_amount_gt0_all,2022,tab14,scorpincome,amount,S-corporation net income (2021+),gt0,filers,all,16,"$1,000,000 under $1,500,000",64784994000.0,22in14ar.xls,BU24,73,BU,24 +5449,2022_tab14_scorpincome_amount_gt0_all,2022,tab14,scorpincome,amount,S-corporation net income (2021+),gt0,filers,all,17,"$1,500,000 under $2,000,000",45248962000.0,22in14ar.xls,BU25,73,BU,25 +5450,2022_tab14_scorpincome_amount_gt0_all,2022,tab14,scorpincome,amount,S-corporation net income (2021+),gt0,filers,all,18,"$2,000,000 under $5,000,000",121207183000.0,22in14ar.xls,BU26,73,BU,26 +5451,2022_tab14_scorpincome_amount_gt0_all,2022,tab14,scorpincome,amount,S-corporation net income (2021+),gt0,filers,all,19,"$5,000,000 under $10,000,000",72523417000.0,22in14ar.xls,BU27,73,BU,27 +5452,2022_tab14_scorpincome_amount_gt0_all,2022,tab14,scorpincome,amount,S-corporation net income (2021+),gt0,filers,all,20,"$10,000,000 or more",176134053000.0,22in14ar.xls,BU28,73,BU,28 +5453,2022_tab14_scorpincome_amount_lt0_all,2022,tab14,scorpincome,amount,S-corporation net loss (2021+),lt0,filers,all,1,"All returns, total",93025607000.0,22in14ar.xls,BW9,75,BW,9 +5454,2022_tab14_scorpincome_amount_lt0_all,2022,tab14,scorpincome,amount,S-corporation net loss (2021+),lt0,filers,all,2,No adjusted gross income,28337405000.0,22in14ar.xls,BW10,75,BW,10 +5455,2022_tab14_scorpincome_amount_lt0_all,2022,tab14,scorpincome,amount,S-corporation net loss (2021+),lt0,filers,all,3,"$1 under $5,000",690515000.0,22in14ar.xls,BW11,75,BW,11 +5456,2022_tab14_scorpincome_amount_lt0_all,2022,tab14,scorpincome,amount,S-corporation net loss (2021+),lt0,filers,all,4,"$5,000 under $10,000",584635000.0,22in14ar.xls,BW12,75,BW,12 +5457,2022_tab14_scorpincome_amount_lt0_all,2022,tab14,scorpincome,amount,S-corporation net loss (2021+),lt0,filers,all,5,"$10,000 under $15,000",848888000.0,22in14ar.xls,BW13,75,BW,13 +5458,2022_tab14_scorpincome_amount_lt0_all,2022,tab14,scorpincome,amount,S-corporation net loss (2021+),lt0,filers,all,6,"$15,000 under $20,000",546682000.0,22in14ar.xls,BW14,75,BW,14 +5459,2022_tab14_scorpincome_amount_lt0_all,2022,tab14,scorpincome,amount,S-corporation net loss (2021+),lt0,filers,all,7,"$20,000 under $25,000",763518000.0,22in14ar.xls,BW15,75,BW,15 +5460,2022_tab14_scorpincome_amount_lt0_all,2022,tab14,scorpincome,amount,S-corporation net loss (2021+),lt0,filers,all,8,"$25,000 under $30,000",1089706000.0,22in14ar.xls,BW16,75,BW,16 +5461,2022_tab14_scorpincome_amount_lt0_all,2022,tab14,scorpincome,amount,S-corporation net loss (2021+),lt0,filers,all,9,"$30,000 under $40,000",1858699000.0,22in14ar.xls,BW17,75,BW,17 +5462,2022_tab14_scorpincome_amount_lt0_all,2022,tab14,scorpincome,amount,S-corporation net loss (2021+),lt0,filers,all,10,"$40,000 under $50,000",1310679000.0,22in14ar.xls,BW18,75,BW,18 +5463,2022_tab14_scorpincome_amount_lt0_all,2022,tab14,scorpincome,amount,S-corporation net loss (2021+),lt0,filers,all,11,"$50,000 under $75,000",3737931000.0,22in14ar.xls,BW19,75,BW,19 +5464,2022_tab14_scorpincome_amount_lt0_all,2022,tab14,scorpincome,amount,S-corporation net loss (2021+),lt0,filers,all,12,"$75,000 under $100,000",3147742000.0,22in14ar.xls,BW20,75,BW,20 +5465,2022_tab14_scorpincome_amount_lt0_all,2022,tab14,scorpincome,amount,S-corporation net loss (2021+),lt0,filers,all,13,"$100,000 under $200,000",10258755000.0,22in14ar.xls,BW21,75,BW,21 +5466,2022_tab14_scorpincome_amount_lt0_all,2022,tab14,scorpincome,amount,S-corporation net loss (2021+),lt0,filers,all,14,"$200,000 under $500,000",10948036000.0,22in14ar.xls,BW22,75,BW,22 +5467,2022_tab14_scorpincome_amount_lt0_all,2022,tab14,scorpincome,amount,S-corporation net loss (2021+),lt0,filers,all,15,"$500,000 under $1,000,000",5599460000.0,22in14ar.xls,BW23,75,BW,23 +5468,2022_tab14_scorpincome_amount_lt0_all,2022,tab14,scorpincome,amount,S-corporation net loss (2021+),lt0,filers,all,16,"$1,000,000 under $1,500,000",2691171000.0,22in14ar.xls,BW24,75,BW,24 +5469,2022_tab14_scorpincome_amount_lt0_all,2022,tab14,scorpincome,amount,S-corporation net loss (2021+),lt0,filers,all,17,"$1,500,000 under $2,000,000",1589080000.0,22in14ar.xls,BW25,75,BW,25 +5470,2022_tab14_scorpincome_amount_lt0_all,2022,tab14,scorpincome,amount,S-corporation net loss (2021+),lt0,filers,all,18,"$2,000,000 under $5,000,000",4769442000.0,22in14ar.xls,BW26,75,BW,26 +5471,2022_tab14_scorpincome_amount_lt0_all,2022,tab14,scorpincome,amount,S-corporation net loss (2021+),lt0,filers,all,19,"$5,000,000 under $10,000,000",2809765000.0,22in14ar.xls,BW27,75,BW,27 +5472,2022_tab14_scorpincome_amount_lt0_all,2022,tab14,scorpincome,amount,S-corporation net loss (2021+),lt0,filers,all,20,"$10,000,000 or more",11443499000.0,22in14ar.xls,BW28,75,BW,28 +5473,2022_tab14_scorpincome_count_gt0_all,2022,tab14,scorpincome,count,S-corporation income — number with income (2021+),gt0,filers,all,1,"All returns, total",4027461.0,22in14ar.xls,BT9,72,BT,9 +5474,2022_tab14_scorpincome_count_gt0_all,2022,tab14,scorpincome,count,S-corporation income — number with income (2021+),gt0,filers,all,2,No adjusted gross income,47362.0,22in14ar.xls,BT10,72,BT,10 +5475,2022_tab14_scorpincome_count_gt0_all,2022,tab14,scorpincome,count,S-corporation income — number with income (2021+),gt0,filers,all,3,"$1 under $5,000",22342.0,22in14ar.xls,BT11,72,BT,11 +5476,2022_tab14_scorpincome_count_gt0_all,2022,tab14,scorpincome,count,S-corporation income — number with income (2021+),gt0,filers,all,4,"$5,000 under $10,000",36845.0,22in14ar.xls,BT12,72,BT,12 +5477,2022_tab14_scorpincome_count_gt0_all,2022,tab14,scorpincome,count,S-corporation income — number with income (2021+),gt0,filers,all,5,"$10,000 under $15,000",50584.0,22in14ar.xls,BT13,72,BT,13 +5478,2022_tab14_scorpincome_count_gt0_all,2022,tab14,scorpincome,count,S-corporation income — number with income (2021+),gt0,filers,all,6,"$15,000 under $20,000",61940.0,22in14ar.xls,BT14,72,BT,14 +5479,2022_tab14_scorpincome_count_gt0_all,2022,tab14,scorpincome,count,S-corporation income — number with income (2021+),gt0,filers,all,7,"$20,000 under $25,000",56078.0,22in14ar.xls,BT15,72,BT,15 +5480,2022_tab14_scorpincome_count_gt0_all,2022,tab14,scorpincome,count,S-corporation income — number with income (2021+),gt0,filers,all,8,"$25,000 under $30,000",66913.0,22in14ar.xls,BT16,72,BT,16 +5481,2022_tab14_scorpincome_count_gt0_all,2022,tab14,scorpincome,count,S-corporation income — number with income (2021+),gt0,filers,all,9,"$30,000 under $40,000",154238.0,22in14ar.xls,BT17,72,BT,17 +5482,2022_tab14_scorpincome_count_gt0_all,2022,tab14,scorpincome,count,S-corporation income — number with income (2021+),gt0,filers,all,10,"$40,000 under $50,000",121023.0,22in14ar.xls,BT18,72,BT,18 +5483,2022_tab14_scorpincome_count_gt0_all,2022,tab14,scorpincome,count,S-corporation income — number with income (2021+),gt0,filers,all,11,"$50,000 under $75,000",398335.0,22in14ar.xls,BT19,72,BT,19 +5484,2022_tab14_scorpincome_count_gt0_all,2022,tab14,scorpincome,count,S-corporation income — number with income (2021+),gt0,filers,all,12,"$75,000 under $100,000",310902.0,22in14ar.xls,BT20,72,BT,20 +5485,2022_tab14_scorpincome_count_gt0_all,2022,tab14,scorpincome,count,S-corporation income — number with income (2021+),gt0,filers,all,13,"$100,000 under $200,000",1015075.0,22in14ar.xls,BT21,72,BT,21 +5486,2022_tab14_scorpincome_count_gt0_all,2022,tab14,scorpincome,count,S-corporation income — number with income (2021+),gt0,filers,all,14,"$200,000 under $500,000",1046308.0,22in14ar.xls,BT22,72,BT,22 +5487,2022_tab14_scorpincome_count_gt0_all,2022,tab14,scorpincome,count,S-corporation income — number with income (2021+),gt0,filers,all,15,"$500,000 under $1,000,000",365639.0,22in14ar.xls,BT23,72,BT,23 +5488,2022_tab14_scorpincome_count_gt0_all,2022,tab14,scorpincome,count,S-corporation income — number with income (2021+),gt0,filers,all,16,"$1,000,000 under $1,500,000",108812.0,22in14ar.xls,BT24,72,BT,24 +5489,2022_tab14_scorpincome_count_gt0_all,2022,tab14,scorpincome,count,S-corporation income — number with income (2021+),gt0,filers,all,17,"$1,500,000 under $2,000,000",51323.0,22in14ar.xls,BT25,72,BT,25 +5490,2022_tab14_scorpincome_count_gt0_all,2022,tab14,scorpincome,count,S-corporation income — number with income (2021+),gt0,filers,all,18,"$2,000,000 under $5,000,000",78168.0,22in14ar.xls,BT26,72,BT,26 +5491,2022_tab14_scorpincome_count_gt0_all,2022,tab14,scorpincome,count,S-corporation income — number with income (2021+),gt0,filers,all,19,"$5,000,000 under $10,000,000",21350.0,22in14ar.xls,BT27,72,BT,27 +5492,2022_tab14_scorpincome_count_gt0_all,2022,tab14,scorpincome,count,S-corporation income — number with income (2021+),gt0,filers,all,20,"$10,000,000 or more",14224.0,22in14ar.xls,BT28,72,BT,28 +5493,2022_tab14_scorpincome_count_lt0_all,2022,tab14,scorpincome,count,S-corporation income — number with loss (2021+),lt0,filers,all,1,"All returns, total",1517428.0,22in14ar.xls,BV9,74,BV,9 +5494,2022_tab14_scorpincome_count_lt0_all,2022,tab14,scorpincome,count,S-corporation income — number with loss (2021+),lt0,filers,all,2,No adjusted gross income,186797.0,22in14ar.xls,BV10,74,BV,10 +5495,2022_tab14_scorpincome_count_lt0_all,2022,tab14,scorpincome,count,S-corporation income — number with loss (2021+),lt0,filers,all,3,"$1 under $5,000",34411.0,22in14ar.xls,BV11,74,BV,11 +5496,2022_tab14_scorpincome_count_lt0_all,2022,tab14,scorpincome,count,S-corporation income — number with loss (2021+),lt0,filers,all,4,"$5,000 under $10,000",27288.0,22in14ar.xls,BV12,74,BV,12 +5497,2022_tab14_scorpincome_count_lt0_all,2022,tab14,scorpincome,count,S-corporation income — number with loss (2021+),lt0,filers,all,5,"$10,000 under $15,000",38443.0,22in14ar.xls,BV13,74,BV,13 +5498,2022_tab14_scorpincome_count_lt0_all,2022,tab14,scorpincome,count,S-corporation income — number with loss (2021+),lt0,filers,all,6,"$15,000 under $20,000",35492.0,22in14ar.xls,BV14,74,BV,14 +5499,2022_tab14_scorpincome_count_lt0_all,2022,tab14,scorpincome,count,S-corporation income — number with loss (2021+),lt0,filers,all,7,"$20,000 under $25,000",32497.0,22in14ar.xls,BV15,74,BV,15 +5500,2022_tab14_scorpincome_count_lt0_all,2022,tab14,scorpincome,count,S-corporation income — number with loss (2021+),lt0,filers,all,8,"$25,000 under $30,000",38318.0,22in14ar.xls,BV16,74,BV,16 +5501,2022_tab14_scorpincome_count_lt0_all,2022,tab14,scorpincome,count,S-corporation income — number with loss (2021+),lt0,filers,all,9,"$30,000 under $40,000",66717.0,22in14ar.xls,BV17,74,BV,17 +5502,2022_tab14_scorpincome_count_lt0_all,2022,tab14,scorpincome,count,S-corporation income — number with loss (2021+),lt0,filers,all,10,"$40,000 under $50,000",61429.0,22in14ar.xls,BV18,74,BV,18 +5503,2022_tab14_scorpincome_count_lt0_all,2022,tab14,scorpincome,count,S-corporation income — number with loss (2021+),lt0,filers,all,11,"$50,000 under $75,000",142145.0,22in14ar.xls,BV19,74,BV,19 +5504,2022_tab14_scorpincome_count_lt0_all,2022,tab14,scorpincome,count,S-corporation income — number with loss (2021+),lt0,filers,all,12,"$75,000 under $100,000",130525.0,22in14ar.xls,BV20,74,BV,20 +5505,2022_tab14_scorpincome_count_lt0_all,2022,tab14,scorpincome,count,S-corporation income — number with loss (2021+),lt0,filers,all,13,"$100,000 under $200,000",365653.0,22in14ar.xls,BV21,74,BV,21 +5506,2022_tab14_scorpincome_count_lt0_all,2022,tab14,scorpincome,count,S-corporation income — number with loss (2021+),lt0,filers,all,14,"$200,000 under $500,000",240902.0,22in14ar.xls,BV22,74,BV,22 +5507,2022_tab14_scorpincome_count_lt0_all,2022,tab14,scorpincome,count,S-corporation income — number with loss (2021+),lt0,filers,all,15,"$500,000 under $1,000,000",66468.0,22in14ar.xls,BV23,74,BV,23 +5508,2022_tab14_scorpincome_count_lt0_all,2022,tab14,scorpincome,count,S-corporation income — number with loss (2021+),lt0,filers,all,16,"$1,000,000 under $1,500,000",18252.0,22in14ar.xls,BV24,74,BV,24 +5509,2022_tab14_scorpincome_count_lt0_all,2022,tab14,scorpincome,count,S-corporation income — number with loss (2021+),lt0,filers,all,17,"$1,500,000 under $2,000,000",8370.0,22in14ar.xls,BV25,74,BV,25 +5510,2022_tab14_scorpincome_count_lt0_all,2022,tab14,scorpincome,count,S-corporation income — number with loss (2021+),lt0,filers,all,18,"$2,000,000 under $5,000,000",14792.0,22in14ar.xls,BV26,74,BV,26 +5511,2022_tab14_scorpincome_count_lt0_all,2022,tab14,scorpincome,count,S-corporation income — number with loss (2021+),lt0,filers,all,19,"$5,000,000 under $10,000,000",4555.0,22in14ar.xls,BV27,74,BV,27 +5512,2022_tab14_scorpincome_count_lt0_all,2022,tab14,scorpincome,count,S-corporation income — number with loss (2021+),lt0,filers,all,20,"$10,000,000 or more",4374.0,22in14ar.xls,BV28,74,BV,28 +5513,2022_tab14_socsectaxable_amount_nz_all,2022,tab14,socsectaxable,amount,Social security benefits (taxable),nz,filers,all,1,"All returns, total",458513595000.0,22in14ar.xls,CK9,89,CK,9 +5514,2022_tab14_socsectaxable_amount_nz_all,2022,tab14,socsectaxable,amount,Social security benefits (taxable),nz,filers,all,2,No adjusted gross income,9577000.0,22in14ar.xls,CK10,89,CK,10 +5515,2022_tab14_socsectaxable_amount_nz_all,2022,tab14,socsectaxable,amount,Social security benefits (taxable),nz,filers,all,3,"$1 under $5,000",36938000.0,22in14ar.xls,CK11,89,CK,11 +5516,2022_tab14_socsectaxable_amount_nz_all,2022,tab14,socsectaxable,amount,Social security benefits (taxable),nz,filers,all,4,"$5,000 under $10,000",277763000.0,22in14ar.xls,CK12,89,CK,12 +5517,2022_tab14_socsectaxable_amount_nz_all,2022,tab14,socsectaxable,amount,Social security benefits (taxable),nz,filers,all,5,"$10,000 under $15,000",574534000.0,22in14ar.xls,CK13,89,CK,13 +5518,2022_tab14_socsectaxable_amount_nz_all,2022,tab14,socsectaxable,amount,Social security benefits (taxable),nz,filers,all,6,"$15,000 under $20,000",1828129000.0,22in14ar.xls,CK14,89,CK,14 +5519,2022_tab14_socsectaxable_amount_nz_all,2022,tab14,socsectaxable,amount,Social security benefits (taxable),nz,filers,all,7,"$20,000 under $25,000",3692023000.0,22in14ar.xls,CK15,89,CK,15 +5520,2022_tab14_socsectaxable_amount_nz_all,2022,tab14,socsectaxable,amount,Social security benefits (taxable),nz,filers,all,8,"$25,000 under $30,000",5137194000.0,22in14ar.xls,CK16,89,CK,16 +5521,2022_tab14_socsectaxable_amount_nz_all,2022,tab14,socsectaxable,amount,Social security benefits (taxable),nz,filers,all,9,"$30,000 under $40,000",16288336000.0,22in14ar.xls,CK17,89,CK,17 +5522,2022_tab14_socsectaxable_amount_nz_all,2022,tab14,socsectaxable,amount,Social security benefits (taxable),nz,filers,all,10,"$40,000 under $50,000",22132636000.0,22in14ar.xls,CK18,89,CK,18 +5523,2022_tab14_socsectaxable_amount_nz_all,2022,tab14,socsectaxable,amount,Social security benefits (taxable),nz,filers,all,11,"$50,000 under $75,000",78864758000.0,22in14ar.xls,CK19,89,CK,19 +5524,2022_tab14_socsectaxable_amount_nz_all,2022,tab14,socsectaxable,amount,Social security benefits (taxable),nz,filers,all,12,"$75,000 under $100,000",78886207000.0,22in14ar.xls,CK20,89,CK,20 +5525,2022_tab14_socsectaxable_amount_nz_all,2022,tab14,socsectaxable,amount,Social security benefits (taxable),nz,filers,all,13,"$100,000 under $200,000",171524062000.0,22in14ar.xls,CK21,89,CK,21 +5526,2022_tab14_socsectaxable_amount_nz_all,2022,tab14,socsectaxable,amount,Social security benefits (taxable),nz,filers,all,14,"$200,000 under $500,000",62981505000.0,22in14ar.xls,CK22,89,CK,22 +5527,2022_tab14_socsectaxable_amount_nz_all,2022,tab14,socsectaxable,amount,Social security benefits (taxable),nz,filers,all,15,"$500,000 under $1,000,000",10628872000.0,22in14ar.xls,CK23,89,CK,23 +5528,2022_tab14_socsectaxable_amount_nz_all,2022,tab14,socsectaxable,amount,Social security benefits (taxable),nz,filers,all,16,"$1,000,000 under $1,500,000",2420263000.0,22in14ar.xls,CK24,89,CK,24 +5529,2022_tab14_socsectaxable_amount_nz_all,2022,tab14,socsectaxable,amount,Social security benefits (taxable),nz,filers,all,17,"$1,500,000 under $2,000,000",1019752000.0,22in14ar.xls,CK25,89,CK,25 +5530,2022_tab14_socsectaxable_amount_nz_all,2022,tab14,socsectaxable,amount,Social security benefits (taxable),nz,filers,all,18,"$2,000,000 under $5,000,000",1531738000.0,22in14ar.xls,CK26,89,CK,26 +5531,2022_tab14_socsectaxable_amount_nz_all,2022,tab14,socsectaxable,amount,Social security benefits (taxable),nz,filers,all,19,"$5,000,000 under $10,000,000",400286000.0,22in14ar.xls,CK27,89,CK,27 +5532,2022_tab14_socsectaxable_amount_nz_all,2022,tab14,socsectaxable,amount,Social security benefits (taxable),nz,filers,all,20,"$10,000,000 or more",279021000.0,22in14ar.xls,CK28,89,CK,28 +5533,2022_tab14_socsectaxable_count_nz_all,2022,tab14,socsectaxable,count,Social security benefits (taxable) — number of returns,nz,filers,all,1,"All returns, total",24667460.0,22in14ar.xls,CJ9,88,CJ,9 +5534,2022_tab14_socsectaxable_count_nz_all,2022,tab14,socsectaxable,count,Social security benefits (taxable) — number of returns,nz,filers,all,2,No adjusted gross income,3272.0,22in14ar.xls,CJ10,88,CJ,10 +5535,2022_tab14_socsectaxable_count_nz_all,2022,tab14,socsectaxable,count,Social security benefits (taxable) — number of returns,nz,filers,all,3,"$1 under $5,000",13833.0,22in14ar.xls,CJ11,88,CJ,11 +5536,2022_tab14_socsectaxable_count_nz_all,2022,tab14,socsectaxable,count,Social security benefits (taxable) — number of returns,nz,filers,all,4,"$5,000 under $10,000",78956.0,22in14ar.xls,CJ12,88,CJ,12 +5537,2022_tab14_socsectaxable_count_nz_all,2022,tab14,socsectaxable,count,Social security benefits (taxable) — number of returns,nz,filers,all,5,"$10,000 under $15,000",390560.0,22in14ar.xls,CJ13,88,CJ,13 +5538,2022_tab14_socsectaxable_count_nz_all,2022,tab14,socsectaxable,count,Social security benefits (taxable) — number of returns,nz,filers,all,6,"$15,000 under $20,000",1093175.0,22in14ar.xls,CJ14,88,CJ,14 +5539,2022_tab14_socsectaxable_count_nz_all,2022,tab14,socsectaxable,count,Social security benefits (taxable) — number of returns,nz,filers,all,7,"$20,000 under $25,000",1226518.0,22in14ar.xls,CJ15,88,CJ,15 +5540,2022_tab14_socsectaxable_count_nz_all,2022,tab14,socsectaxable,count,Social security benefits (taxable) — number of returns,nz,filers,all,8,"$25,000 under $30,000",1189658.0,22in14ar.xls,CJ16,88,CJ,16 +5541,2022_tab14_socsectaxable_count_nz_all,2022,tab14,socsectaxable,count,Social security benefits (taxable) — number of returns,nz,filers,all,9,"$30,000 under $40,000",2240513.0,22in14ar.xls,CJ17,88,CJ,17 +5542,2022_tab14_socsectaxable_count_nz_all,2022,tab14,socsectaxable,count,Social security benefits (taxable) — number of returns,nz,filers,all,10,"$40,000 under $50,000",1953921.0,22in14ar.xls,CJ18,88,CJ,18 +5543,2022_tab14_socsectaxable_count_nz_all,2022,tab14,socsectaxable,count,Social security benefits (taxable) — number of returns,nz,filers,all,11,"$50,000 under $75,000",4637686.0,22in14ar.xls,CJ19,88,CJ,19 +5544,2022_tab14_socsectaxable_count_nz_all,2022,tab14,socsectaxable,count,Social security benefits (taxable) — number of returns,nz,filers,all,12,"$75,000 under $100,000",3479283.0,22in14ar.xls,CJ20,88,CJ,20 +5545,2022_tab14_socsectaxable_count_nz_all,2022,tab14,socsectaxable,count,Social security benefits (taxable) — number of returns,nz,filers,all,13,"$100,000 under $200,000",5998511.0,22in14ar.xls,CJ21,88,CJ,21 +5546,2022_tab14_socsectaxable_count_nz_all,2022,tab14,socsectaxable,count,Social security benefits (taxable) — number of returns,nz,filers,all,14,"$200,000 under $500,000",1908375.0,22in14ar.xls,CJ22,88,CJ,22 +5547,2022_tab14_socsectaxable_count_nz_all,2022,tab14,socsectaxable,count,Social security benefits (taxable) — number of returns,nz,filers,all,15,"$500,000 under $1,000,000",299809.0,22in14ar.xls,CJ23,88,CJ,23 +5548,2022_tab14_socsectaxable_count_nz_all,2022,tab14,socsectaxable,count,Social security benefits (taxable) — number of returns,nz,filers,all,16,"$1,000,000 under $1,500,000",67263.0,22in14ar.xls,CJ24,88,CJ,24 +5549,2022_tab14_socsectaxable_count_nz_all,2022,tab14,socsectaxable,count,Social security benefits (taxable) — number of returns,nz,filers,all,17,"$1,500,000 under $2,000,000",27760.0,22in14ar.xls,CJ25,88,CJ,25 +5550,2022_tab14_socsectaxable_count_nz_all,2022,tab14,socsectaxable,count,Social security benefits (taxable) — number of returns,nz,filers,all,18,"$2,000,000 under $5,000,000",40927.0,22in14ar.xls,CJ26,88,CJ,26 +5551,2022_tab14_socsectaxable_count_nz_all,2022,tab14,socsectaxable,count,Social security benefits (taxable) — number of returns,nz,filers,all,19,"$5,000,000 under $10,000,000",10496.0,22in14ar.xls,CJ27,88,CJ,27 +5552,2022_tab14_socsectaxable_count_nz_all,2022,tab14,socsectaxable,count,Social security benefits (taxable) — number of returns,nz,filers,all,20,"$10,000,000 or more",6942.0,22in14ar.xls,CJ28,88,CJ,28 +5553,2022_tab14_socsectot_amount_nz_all,2022,tab14,socsectot,amount,Social security benefits (total),nz,filers,all,1,"All returns, total",871307268000.0,22in14ar.xls,CI9,87,CI,9 +5554,2022_tab14_socsectot_amount_nz_all,2022,tab14,socsectot,amount,Social security benefits (total),nz,filers,all,2,No adjusted gross income,22784191000.0,22in14ar.xls,CI10,87,CI,10 +5555,2022_tab14_socsectot_amount_nz_all,2022,tab14,socsectot,amount,Social security benefits (total),nz,filers,all,3,"$1 under $5,000",44808940000.0,22in14ar.xls,CI11,87,CI,11 +5556,2022_tab14_socsectot_amount_nz_all,2022,tab14,socsectot,amount,Social security benefits (total),nz,filers,all,4,"$5,000 under $10,000",39170034000.0,22in14ar.xls,CI12,87,CI,12 +5557,2022_tab14_socsectot_amount_nz_all,2022,tab14,socsectot,amount,Social security benefits (total),nz,filers,all,5,"$10,000 under $15,000",42729805000.0,22in14ar.xls,CI13,87,CI,13 +5558,2022_tab14_socsectot_amount_nz_all,2022,tab14,socsectot,amount,Social security benefits (total),nz,filers,all,6,"$15,000 under $20,000",38636556000.0,22in14ar.xls,CI14,87,CI,14 +5559,2022_tab14_socsectot_amount_nz_all,2022,tab14,socsectot,amount,Social security benefits (total),nz,filers,all,7,"$20,000 under $25,000",33482285000.0,22in14ar.xls,CI15,87,CI,15 +5560,2022_tab14_socsectot_amount_nz_all,2022,tab14,socsectot,amount,Social security benefits (total),nz,filers,all,8,"$25,000 under $30,000",30641677000.0,22in14ar.xls,CI16,87,CI,16 +5561,2022_tab14_socsectot_amount_nz_all,2022,tab14,socsectot,amount,Social security benefits (total),nz,filers,all,9,"$30,000 under $40,000",57117804000.0,22in14ar.xls,CI17,87,CI,17 +5562,2022_tab14_socsectot_amount_nz_all,2022,tab14,socsectot,amount,Social security benefits (total),nz,filers,all,10,"$40,000 under $50,000",49489596000.0,22in14ar.xls,CI18,87,CI,18 +5563,2022_tab14_socsectot_amount_nz_all,2022,tab14,socsectot,amount,Social security benefits (total),nz,filers,all,11,"$50,000 under $75,000",118478556000.0,22in14ar.xls,CI19,87,CI,19 +5564,2022_tab14_socsectot_amount_nz_all,2022,tab14,socsectot,amount,Social security benefits (total),nz,filers,all,12,"$75,000 under $100,000",98175681000.0,22in14ar.xls,CI20,87,CI,20 +5565,2022_tab14_socsectot_amount_nz_all,2022,tab14,socsectot,amount,Social security benefits (total),nz,filers,all,13,"$100,000 under $200,000",202495359000.0,22in14ar.xls,CI21,87,CI,21 +5566,2022_tab14_socsectot_amount_nz_all,2022,tab14,socsectot,amount,Social security benefits (total),nz,filers,all,14,"$200,000 under $500,000",74138027000.0,22in14ar.xls,CI22,87,CI,22 +5567,2022_tab14_socsectot_amount_nz_all,2022,tab14,socsectot,amount,Social security benefits (total),nz,filers,all,15,"$500,000 under $1,000,000",12508307000.0,22in14ar.xls,CI23,87,CI,23 +5568,2022_tab14_socsectot_amount_nz_all,2022,tab14,socsectot,amount,Social security benefits (total),nz,filers,all,16,"$1,000,000 under $1,500,000",2847599000.0,22in14ar.xls,CI24,87,CI,24 +5569,2022_tab14_socsectot_amount_nz_all,2022,tab14,socsectot,amount,Social security benefits (total),nz,filers,all,17,"$1,500,000 under $2,000,000",1201194000.0,22in14ar.xls,CI25,87,CI,25 +5570,2022_tab14_socsectot_amount_nz_all,2022,tab14,socsectot,amount,Social security benefits (total),nz,filers,all,18,"$2,000,000 under $5,000,000",1802248000.0,22in14ar.xls,CI26,87,CI,26 +5571,2022_tab14_socsectot_amount_nz_all,2022,tab14,socsectot,amount,Social security benefits (total),nz,filers,all,19,"$5,000,000 under $10,000,000",470996000.0,22in14ar.xls,CI27,87,CI,27 +5572,2022_tab14_socsectot_amount_nz_all,2022,tab14,socsectot,amount,Social security benefits (total),nz,filers,all,20,"$10,000,000 or more",328415000.0,22in14ar.xls,CI28,87,CI,28 +5573,2022_tab14_socsectot_count_nz_all,2022,tab14,socsectot,count,Social security benefits (total) — number of returns,nz,filers,all,1,"All returns, total",31861807.0,22in14ar.xls,CH9,86,CH,9 +5574,2022_tab14_socsectot_count_nz_all,2022,tab14,socsectot,count,Social security benefits (total) — number of returns,nz,filers,all,2,No adjusted gross income,1029709.0,22in14ar.xls,CH10,86,CH,10 +5575,2022_tab14_socsectot_count_nz_all,2022,tab14,socsectot,count,Social security benefits (total) — number of returns,nz,filers,all,3,"$1 under $5,000",2102117.0,22in14ar.xls,CH11,86,CH,11 +5576,2022_tab14_socsectot_count_nz_all,2022,tab14,socsectot,count,Social security benefits (total) — number of returns,nz,filers,all,4,"$5,000 under $10,000",1812315.0,22in14ar.xls,CH12,86,CH,12 +5577,2022_tab14_socsectot_count_nz_all,2022,tab14,socsectot,count,Social security benefits (total) — number of returns,nz,filers,all,5,"$10,000 under $15,000",1933305.0,22in14ar.xls,CH13,86,CH,13 +5578,2022_tab14_socsectot_count_nz_all,2022,tab14,socsectot,count,Social security benefits (total) — number of returns,nz,filers,all,6,"$15,000 under $20,000",1707714.0,22in14ar.xls,CH14,86,CH,14 +5579,2022_tab14_socsectot_count_nz_all,2022,tab14,socsectot,count,Social security benefits (total) — number of returns,nz,filers,all,7,"$20,000 under $25,000",1368527.0,22in14ar.xls,CH15,86,CH,15 +5580,2022_tab14_socsectot_count_nz_all,2022,tab14,socsectot,count,Social security benefits (total) — number of returns,nz,filers,all,8,"$25,000 under $30,000",1224515.0,22in14ar.xls,CH16,86,CH,16 +5581,2022_tab14_socsectot_count_nz_all,2022,tab14,socsectot,count,Social security benefits (total) — number of returns,nz,filers,all,9,"$30,000 under $40,000",2241530.0,22in14ar.xls,CH17,86,CH,17 +5582,2022_tab14_socsectot_count_nz_all,2022,tab14,socsectot,count,Social security benefits (total) — number of returns,nz,filers,all,10,"$40,000 under $50,000",1955929.0,22in14ar.xls,CH18,86,CH,18 +5583,2022_tab14_socsectot_count_nz_all,2022,tab14,socsectot,count,Social security benefits (total) — number of returns,nz,filers,all,11,"$50,000 under $75,000",4638670.0,22in14ar.xls,CH19,86,CH,19 +5584,2022_tab14_socsectot_count_nz_all,2022,tab14,socsectot,count,Social security benefits (total) — number of returns,nz,filers,all,12,"$75,000 under $100,000",3481308.0,22in14ar.xls,CH20,86,CH,20 +5585,2022_tab14_socsectot_count_nz_all,2022,tab14,socsectot,count,Social security benefits (total) — number of returns,nz,filers,all,13,"$100,000 under $200,000",6002667.0,22in14ar.xls,CH21,86,CH,21 +5586,2022_tab14_socsectot_count_nz_all,2022,tab14,socsectot,count,Social security benefits (total) — number of returns,nz,filers,all,14,"$200,000 under $500,000",1910013.0,22in14ar.xls,CH22,86,CH,22 +5587,2022_tab14_socsectot_count_nz_all,2022,tab14,socsectot,count,Social security benefits (total) — number of returns,nz,filers,all,15,"$500,000 under $1,000,000",299988.0,22in14ar.xls,CH23,86,CH,23 +5588,2022_tab14_socsectot_count_nz_all,2022,tab14,socsectot,count,Social security benefits (total) — number of returns,nz,filers,all,16,"$1,000,000 under $1,500,000",67304.0,22in14ar.xls,CH24,86,CH,24 +5589,2022_tab14_socsectot_count_nz_all,2022,tab14,socsectot,count,Social security benefits (total) — number of returns,nz,filers,all,17,"$1,500,000 under $2,000,000",27809.0,22in14ar.xls,CH25,86,CH,25 +5590,2022_tab14_socsectot_count_nz_all,2022,tab14,socsectot,count,Social security benefits (total) — number of returns,nz,filers,all,18,"$2,000,000 under $5,000,000",40937.0,22in14ar.xls,CH26,86,CH,26 +5591,2022_tab14_socsectot_count_nz_all,2022,tab14,socsectot,count,Social security benefits (total) — number of returns,nz,filers,all,19,"$5,000,000 under $10,000,000",10500.0,22in14ar.xls,CH27,86,CH,27 +5592,2022_tab14_socsectot_count_nz_all,2022,tab14,socsectot,count,Social security benefits (total) — number of returns,nz,filers,all,20,"$10,000,000 or more",6948.0,22in14ar.xls,CH28,86,CH,28 +5593,2022_tab14_taxbc_amount_nz_all,2022,tab14,taxbc,amount,Income tax before credits,nz,filers,all,1,"All returns, total",2260350184000.0,22in14ar.xls,ES9,149,ES,9 +5594,2022_tab14_taxbc_amount_nz_all,2022,tab14,taxbc,amount,Income tax before credits,nz,filers,all,2,No adjusted gross income,163780000.0,22in14ar.xls,ES10,149,ES,10 +5595,2022_tab14_taxbc_amount_nz_all,2022,tab14,taxbc,amount,Income tax before credits,nz,filers,all,3,"$1 under $5,000",49108000.0,22in14ar.xls,ES11,149,ES,11 +5596,2022_tab14_taxbc_amount_nz_all,2022,tab14,taxbc,amount,Income tax before credits,nz,filers,all,4,"$5,000 under $10,000",76949000.0,22in14ar.xls,ES12,149,ES,12 +5597,2022_tab14_taxbc_amount_nz_all,2022,tab14,taxbc,amount,Income tax before credits,nz,filers,all,5,"$10,000 under $15,000",366463000.0,22in14ar.xls,ES13,149,ES,13 +5598,2022_tab14_taxbc_amount_nz_all,2022,tab14,taxbc,amount,Income tax before credits,nz,filers,all,6,"$15,000 under $20,000",2455524000.0,22in14ar.xls,ES14,149,ES,14 +5599,2022_tab14_taxbc_amount_nz_all,2022,tab14,taxbc,amount,Income tax before credits,nz,filers,all,7,"$20,000 under $25,000",5228484000.0,22in14ar.xls,ES15,149,ES,15 +5600,2022_tab14_taxbc_amount_nz_all,2022,tab14,taxbc,amount,Income tax before credits,nz,filers,all,8,"$25,000 under $30,000",8950835000.0,22in14ar.xls,ES16,149,ES,16 +5601,2022_tab14_taxbc_amount_nz_all,2022,tab14,taxbc,amount,Income tax before credits,nz,filers,all,9,"$30,000 under $40,000",30149194000.0,22in14ar.xls,ES17,149,ES,17 +5602,2022_tab14_taxbc_amount_nz_all,2022,tab14,taxbc,amount,Income tax before credits,nz,filers,all,10,"$40,000 under $50,000",39898555000.0,22in14ar.xls,ES18,149,ES,18 +5603,2022_tab14_taxbc_amount_nz_all,2022,tab14,taxbc,amount,Income tax before credits,nz,filers,all,11,"$50,000 under $75,000",122066429000.0,22in14ar.xls,ES19,149,ES,19 +5604,2022_tab14_taxbc_amount_nz_all,2022,tab14,taxbc,amount,Income tax before credits,nz,filers,all,12,"$75,000 under $100,000",131394004000.0,22in14ar.xls,ES20,149,ES,20 +5605,2022_tab14_taxbc_amount_nz_all,2022,tab14,taxbc,amount,Income tax before credits,nz,filers,all,13,"$100,000 under $200,000",439843814000.0,22in14ar.xls,ES21,149,ES,21 +5606,2022_tab14_taxbc_amount_nz_all,2022,tab14,taxbc,amount,Income tax before credits,nz,filers,all,14,"$200,000 under $500,000",500320082000.0,22in14ar.xls,ES22,149,ES,22 +5607,2022_tab14_taxbc_amount_nz_all,2022,tab14,taxbc,amount,Income tax before credits,nz,filers,all,15,"$500,000 under $1,000,000",260437884000.0,22in14ar.xls,ES23,149,ES,23 +5608,2022_tab14_taxbc_amount_nz_all,2022,tab14,taxbc,amount,Income tax before credits,nz,filers,all,16,"$1,000,000 under $1,500,000",113951006000.0,22in14ar.xls,ES24,149,ES,24 +5609,2022_tab14_taxbc_amount_nz_all,2022,tab14,taxbc,amount,Income tax before credits,nz,filers,all,17,"$1,500,000 under $2,000,000",69393007000.0,22in14ar.xls,ES25,149,ES,25 +5610,2022_tab14_taxbc_amount_nz_all,2022,tab14,taxbc,amount,Income tax before credits,nz,filers,all,18,"$2,000,000 under $5,000,000",171945771000.0,22in14ar.xls,ES26,149,ES,26 +5611,2022_tab14_taxbc_amount_nz_all,2022,tab14,taxbc,amount,Income tax before credits,nz,filers,all,19,"$5,000,000 under $10,000,000",100030718000.0,22in14ar.xls,ES27,149,ES,27 +5612,2022_tab14_taxbc_amount_nz_all,2022,tab14,taxbc,amount,Income tax before credits,nz,filers,all,20,"$10,000,000 or more",263628575000.0,22in14ar.xls,ES28,149,ES,28 +5613,2022_tab14_taxbc_count_nz_all,2022,tab14,taxbc,count,Income tax before credits — number of returns,nz,filers,all,1,"All returns, total",129352044.0,22in14ar.xls,ER9,148,ER,9 +5614,2022_tab14_taxbc_count_nz_all,2022,tab14,taxbc,count,Income tax before credits — number of returns,nz,filers,all,2,No adjusted gross income,82714.0,22in14ar.xls,ER10,148,ER,10 +5615,2022_tab14_taxbc_count_nz_all,2022,tab14,taxbc,count,Income tax before credits — number of returns,nz,filers,all,3,"$1 under $5,000",239298.0,22in14ar.xls,ER11,148,ER,11 +5616,2022_tab14_taxbc_count_nz_all,2022,tab14,taxbc,count,Income tax before credits — number of returns,nz,filers,all,4,"$5,000 under $10,000",278707.0,22in14ar.xls,ER12,148,ER,12 +5617,2022_tab14_taxbc_count_nz_all,2022,tab14,taxbc,count,Income tax before credits — number of returns,nz,filers,all,5,"$10,000 under $15,000",2671211.0,22in14ar.xls,ER13,148,ER,13 +5618,2022_tab14_taxbc_count_nz_all,2022,tab14,taxbc,count,Income tax before credits — number of returns,nz,filers,all,6,"$15,000 under $20,000",6060698.0,22in14ar.xls,ER14,148,ER,14 +5619,2022_tab14_taxbc_count_nz_all,2022,tab14,taxbc,count,Income tax before credits — number of returns,nz,filers,all,7,"$20,000 under $25,000",6829376.0,22in14ar.xls,ER15,148,ER,15 +5620,2022_tab14_taxbc_count_nz_all,2022,tab14,taxbc,count,Income tax before credits — number of returns,nz,filers,all,8,"$25,000 under $30,000",7393134.0,22in14ar.xls,ER16,148,ER,16 +5621,2022_tab14_taxbc_count_nz_all,2022,tab14,taxbc,count,Income tax before credits — number of returns,nz,filers,all,9,"$30,000 under $40,000",15541069.0,22in14ar.xls,ER17,148,ER,17 +5622,2022_tab14_taxbc_count_nz_all,2022,tab14,taxbc,count,Income tax before credits — number of returns,nz,filers,all,10,"$40,000 under $50,000",13155211.0,22in14ar.xls,ER18,148,ER,18 +5623,2022_tab14_taxbc_count_nz_all,2022,tab14,taxbc,count,Income tax before credits — number of returns,nz,filers,all,11,"$50,000 under $75,000",23662648.0,22in14ar.xls,ER19,148,ER,19 +5624,2022_tab14_taxbc_count_nz_all,2022,tab14,taxbc,count,Income tax before credits — number of returns,nz,filers,all,12,"$75,000 under $100,000",15123515.0,22in14ar.xls,ER20,148,ER,20 +5625,2022_tab14_taxbc_count_nz_all,2022,tab14,taxbc,count,Income tax before credits — number of returns,nz,filers,all,13,"$100,000 under $200,000",25829887.0,22in14ar.xls,ER21,148,ER,21 +5626,2022_tab14_taxbc_count_nz_all,2022,tab14,taxbc,count,Income tax before credits — number of returns,nz,filers,all,14,"$200,000 under $500,000",10008079.0,22in14ar.xls,ER22,148,ER,22 +5627,2022_tab14_taxbc_count_nz_all,2022,tab14,taxbc,count,Income tax before credits — number of returns,nz,filers,all,15,"$500,000 under $1,000,000",1672422.0,22in14ar.xls,ER23,148,ER,23 +5628,2022_tab14_taxbc_count_nz_all,2022,tab14,taxbc,count,Income tax before credits — number of returns,nz,filers,all,16,"$1,000,000 under $1,500,000",360600.0,22in14ar.xls,ER24,148,ER,24 +5629,2022_tab14_taxbc_count_nz_all,2022,tab14,taxbc,count,Income tax before credits — number of returns,nz,filers,all,17,"$1,500,000 under $2,000,000",148061.0,22in14ar.xls,ER25,148,ER,25 +5630,2022_tab14_taxbc_count_nz_all,2022,tab14,taxbc,count,Income tax before credits — number of returns,nz,filers,all,18,"$2,000,000 under $5,000,000",207907.0,22in14ar.xls,ER26,148,ER,26 +5631,2022_tab14_taxbc_count_nz_all,2022,tab14,taxbc,count,Income tax before credits — number of returns,nz,filers,all,19,"$5,000,000 under $10,000,000",52914.0,22in14ar.xls,ER27,148,ER,27 +5632,2022_tab14_taxbc_count_nz_all,2022,tab14,taxbc,count,Income tax before credits — number of returns,nz,filers,all,20,"$10,000,000 or more",34591.0,22in14ar.xls,ER28,148,ER,28 +5633,2022_tab14_taxint_amount_nz_all,2022,tab14,taxint,amount,Taxable interest,nz,filers,all,1,"All returns, total",133596569000.0,22in14ar.xls,U9,21,U,9 +5634,2022_tab14_taxint_amount_nz_all,2022,tab14,taxint,amount,Taxable interest,nz,filers,all,2,No adjusted gross income,3365630000.0,22in14ar.xls,U10,21,U,10 +5635,2022_tab14_taxint_amount_nz_all,2022,tab14,taxint,amount,Taxable interest,nz,filers,all,3,"$1 under $5,000",498432000.0,22in14ar.xls,U11,21,U,11 +5636,2022_tab14_taxint_amount_nz_all,2022,tab14,taxint,amount,Taxable interest,nz,filers,all,4,"$5,000 under $10,000",675967000.0,22in14ar.xls,U12,21,U,12 +5637,2022_tab14_taxint_amount_nz_all,2022,tab14,taxint,amount,Taxable interest,nz,filers,all,5,"$10,000 under $15,000",757213000.0,22in14ar.xls,U13,21,U,13 +5638,2022_tab14_taxint_amount_nz_all,2022,tab14,taxint,amount,Taxable interest,nz,filers,all,6,"$15,000 under $20,000",858052000.0,22in14ar.xls,U14,21,U,14 +5639,2022_tab14_taxint_amount_nz_all,2022,tab14,taxint,amount,Taxable interest,nz,filers,all,7,"$20,000 under $25,000",746963000.0,22in14ar.xls,U15,21,U,15 +5640,2022_tab14_taxint_amount_nz_all,2022,tab14,taxint,amount,Taxable interest,nz,filers,all,8,"$25,000 under $30,000",825814000.0,22in14ar.xls,U16,21,U,16 +5641,2022_tab14_taxint_amount_nz_all,2022,tab14,taxint,amount,Taxable interest,nz,filers,all,9,"$30,000 under $40,000",1844279000.0,22in14ar.xls,U17,21,U,17 +5642,2022_tab14_taxint_amount_nz_all,2022,tab14,taxint,amount,Taxable interest,nz,filers,all,10,"$40,000 under $50,000",1577729000.0,22in14ar.xls,U18,21,U,18 +5643,2022_tab14_taxint_amount_nz_all,2022,tab14,taxint,amount,Taxable interest,nz,filers,all,11,"$50,000 under $75,000",5341764000.0,22in14ar.xls,U19,21,U,19 +5644,2022_tab14_taxint_amount_nz_all,2022,tab14,taxint,amount,Taxable interest,nz,filers,all,12,"$75,000 under $100,000",4965163000.0,22in14ar.xls,U20,21,U,20 +5645,2022_tab14_taxint_amount_nz_all,2022,tab14,taxint,amount,Taxable interest,nz,filers,all,13,"$100,000 under $200,000",17661595000.0,22in14ar.xls,U21,21,U,21 +5646,2022_tab14_taxint_amount_nz_all,2022,tab14,taxint,amount,Taxable interest,nz,filers,all,14,"$200,000 under $500,000",20375918000.0,22in14ar.xls,U22,21,U,22 +5647,2022_tab14_taxint_amount_nz_all,2022,tab14,taxint,amount,Taxable interest,nz,filers,all,15,"$500,000 under $1,000,000",11558538000.0,22in14ar.xls,U23,21,U,23 +5648,2022_tab14_taxint_amount_nz_all,2022,tab14,taxint,amount,Taxable interest,nz,filers,all,16,"$1,000,000 under $1,500,000",6183046000.0,22in14ar.xls,U24,21,U,24 +5649,2022_tab14_taxint_amount_nz_all,2022,tab14,taxint,amount,Taxable interest,nz,filers,all,17,"$1,500,000 under $2,000,000",4095630000.0,22in14ar.xls,U25,21,U,25 +5650,2022_tab14_taxint_amount_nz_all,2022,tab14,taxint,amount,Taxable interest,nz,filers,all,18,"$2,000,000 under $5,000,000",12342959000.0,22in14ar.xls,U26,21,U,26 +5651,2022_tab14_taxint_amount_nz_all,2022,tab14,taxint,amount,Taxable interest,nz,filers,all,19,"$5,000,000 under $10,000,000",8523479000.0,22in14ar.xls,U27,21,U,27 +5652,2022_tab14_taxint_amount_nz_all,2022,tab14,taxint,amount,Taxable interest,nz,filers,all,20,"$10,000,000 or more",31398399000.0,22in14ar.xls,U28,21,U,28 +5653,2022_tab14_taxint_count_nz_all,2022,tab14,taxint,count,Taxable interest — number of returns,nz,filers,all,1,"All returns, total",49736855.0,22in14ar.xls,T9,20,T,9 +5654,2022_tab14_taxint_count_nz_all,2022,tab14,taxint,count,Taxable interest — number of returns,nz,filers,all,2,No adjusted gross income,679966.0,22in14ar.xls,T10,20,T,10 +5655,2022_tab14_taxint_count_nz_all,2022,tab14,taxint,count,Taxable interest — number of returns,nz,filers,all,3,"$1 under $5,000",1665026.0,22in14ar.xls,T11,20,T,11 +5656,2022_tab14_taxint_count_nz_all,2022,tab14,taxint,count,Taxable interest — number of returns,nz,filers,all,4,"$5,000 under $10,000",1280664.0,22in14ar.xls,T12,20,T,12 +5657,2022_tab14_taxint_count_nz_all,2022,tab14,taxint,count,Taxable interest — number of returns,nz,filers,all,5,"$10,000 under $15,000",1375568.0,22in14ar.xls,T13,20,T,13 +5658,2022_tab14_taxint_count_nz_all,2022,tab14,taxint,count,Taxable interest — number of returns,nz,filers,all,6,"$15,000 under $20,000",1331696.0,22in14ar.xls,T14,20,T,14 +5659,2022_tab14_taxint_count_nz_all,2022,tab14,taxint,count,Taxable interest — number of returns,nz,filers,all,7,"$20,000 under $25,000",1266528.0,22in14ar.xls,T15,20,T,15 +5660,2022_tab14_taxint_count_nz_all,2022,tab14,taxint,count,Taxable interest — number of returns,nz,filers,all,8,"$25,000 under $30,000",1342809.0,22in14ar.xls,T16,20,T,16 +5661,2022_tab14_taxint_count_nz_all,2022,tab14,taxint,count,Taxable interest — number of returns,nz,filers,all,9,"$30,000 under $40,000",2570802.0,22in14ar.xls,T17,20,T,17 +5662,2022_tab14_taxint_count_nz_all,2022,tab14,taxint,count,Taxable interest — number of returns,nz,filers,all,10,"$40,000 under $50,000",2667327.0,22in14ar.xls,T18,20,T,18 +5663,2022_tab14_taxint_count_nz_all,2022,tab14,taxint,count,Taxable interest — number of returns,nz,filers,all,11,"$50,000 under $75,000",6774179.0,22in14ar.xls,T19,20,T,19 +5664,2022_tab14_taxint_count_nz_all,2022,tab14,taxint,count,Taxable interest — number of returns,nz,filers,all,12,"$75,000 under $100,000",5800861.0,22in14ar.xls,T20,20,T,20 +5665,2022_tab14_taxint_count_nz_all,2022,tab14,taxint,count,Taxable interest — number of returns,nz,filers,all,13,"$100,000 under $200,000",13454221.0,22in14ar.xls,T21,20,T,21 +5666,2022_tab14_taxint_count_nz_all,2022,tab14,taxint,count,Taxable interest — number of returns,nz,filers,all,14,"$200,000 under $500,000",7280415.0,22in14ar.xls,T22,20,T,22 +5667,2022_tab14_taxint_count_nz_all,2022,tab14,taxint,count,Taxable interest — number of returns,nz,filers,all,15,"$500,000 under $1,000,000",1476964.0,22in14ar.xls,T23,20,T,23 +5668,2022_tab14_taxint_count_nz_all,2022,tab14,taxint,count,Taxable interest — number of returns,nz,filers,all,16,"$1,000,000 under $1,500,000",339954.0,22in14ar.xls,T24,20,T,24 +5669,2022_tab14_taxint_count_nz_all,2022,tab14,taxint,count,Taxable interest — number of returns,nz,filers,all,17,"$1,500,000 under $2,000,000",141749.0,22in14ar.xls,T25,20,T,25 +5670,2022_tab14_taxint_count_nz_all,2022,tab14,taxint,count,Taxable interest — number of returns,nz,filers,all,18,"$2,000,000 under $5,000,000",201919.0,22in14ar.xls,T26,20,T,26 +5671,2022_tab14_taxint_count_nz_all,2022,tab14,taxint,count,Taxable interest — number of returns,nz,filers,all,19,"$5,000,000 under $10,000,000",51995.0,22in14ar.xls,T27,20,T,27 +5672,2022_tab14_taxint_count_nz_all,2022,tab14,taxint,count,Taxable interest — number of returns,nz,filers,all,20,"$10,000,000 or more",34213.0,22in14ar.xls,T28,20,T,28 +5673,2022_tab14_unempcomp_amount_nz_all,2022,tab14,unempcomp,amount,Unemployment compensation,nz,filers,all,1,"All returns, total",30247572000.0,22in14ar.xls,CG9,85,CG,9 +5674,2022_tab14_unempcomp_amount_nz_all,2022,tab14,unempcomp,amount,Unemployment compensation,nz,filers,all,2,No adjusted gross income,297874000.0,22in14ar.xls,CG10,85,CG,10 +5675,2022_tab14_unempcomp_amount_nz_all,2022,tab14,unempcomp,amount,Unemployment compensation,nz,filers,all,3,"$1 under $5,000",259782000.0,22in14ar.xls,CG11,85,CG,11 +5676,2022_tab14_unempcomp_amount_nz_all,2022,tab14,unempcomp,amount,Unemployment compensation,nz,filers,all,4,"$5,000 under $10,000",736433000.0,22in14ar.xls,CG12,85,CG,12 +5677,2022_tab14_unempcomp_amount_nz_all,2022,tab14,unempcomp,amount,Unemployment compensation,nz,filers,all,5,"$10,000 under $15,000",1295114000.0,22in14ar.xls,CG13,85,CG,13 +5678,2022_tab14_unempcomp_amount_nz_all,2022,tab14,unempcomp,amount,Unemployment compensation,nz,filers,all,6,"$15,000 under $20,000",1962929000.0,22in14ar.xls,CG14,85,CG,14 +5679,2022_tab14_unempcomp_amount_nz_all,2022,tab14,unempcomp,amount,Unemployment compensation,nz,filers,all,7,"$20,000 under $25,000",2112690000.0,22in14ar.xls,CG15,85,CG,15 +5680,2022_tab14_unempcomp_amount_nz_all,2022,tab14,unempcomp,amount,Unemployment compensation,nz,filers,all,8,"$25,000 under $30,000",2109457000.0,22in14ar.xls,CG16,85,CG,16 +5681,2022_tab14_unempcomp_amount_nz_all,2022,tab14,unempcomp,amount,Unemployment compensation,nz,filers,all,9,"$30,000 under $40,000",3491782000.0,22in14ar.xls,CG17,85,CG,17 +5682,2022_tab14_unempcomp_amount_nz_all,2022,tab14,unempcomp,amount,Unemployment compensation,nz,filers,all,10,"$40,000 under $50,000",2743510000.0,22in14ar.xls,CG18,85,CG,18 +5683,2022_tab14_unempcomp_amount_nz_all,2022,tab14,unempcomp,amount,Unemployment compensation,nz,filers,all,11,"$50,000 under $75,000",4978676000.0,22in14ar.xls,CG19,85,CG,19 +5684,2022_tab14_unempcomp_amount_nz_all,2022,tab14,unempcomp,amount,Unemployment compensation,nz,filers,all,12,"$75,000 under $100,000",3087608000.0,22in14ar.xls,CG20,85,CG,20 +5685,2022_tab14_unempcomp_amount_nz_all,2022,tab14,unempcomp,amount,Unemployment compensation,nz,filers,all,13,"$100,000 under $200,000",5240219000.0,22in14ar.xls,CG21,85,CG,21 +5686,2022_tab14_unempcomp_amount_nz_all,2022,tab14,unempcomp,amount,Unemployment compensation,nz,filers,all,14,"$200,000 under $500,000",1691302000.0,22in14ar.xls,CG22,85,CG,22 +5687,2022_tab14_unempcomp_amount_nz_all,2022,tab14,unempcomp,amount,Unemployment compensation,nz,filers,all,15,"$500,000 under $1,000,000",182568000.0,22in14ar.xls,CG23,85,CG,23 +5688,2022_tab14_unempcomp_amount_nz_all,2022,tab14,unempcomp,amount,Unemployment compensation,nz,filers,all,16,"$1,000,000 under $1,500,000",30487000.0,22in14ar.xls,CG24,85,CG,24 +5689,2022_tab14_unempcomp_amount_nz_all,2022,tab14,unempcomp,amount,Unemployment compensation,nz,filers,all,17,"$1,500,000 under $2,000,000",6834000.0,22in14ar.xls,CG25,85,CG,25 +5690,2022_tab14_unempcomp_amount_nz_all,2022,tab14,unempcomp,amount,Unemployment compensation,nz,filers,all,18,"$2,000,000 under $5,000,000",8058000.0,22in14ar.xls,CG26,85,CG,26 +5691,2022_tab14_unempcomp_amount_nz_all,2022,tab14,unempcomp,amount,Unemployment compensation,nz,filers,all,19,"$5,000,000 under $10,000,000",1618000.0,22in14ar.xls,CG27,85,CG,27 +5692,2022_tab14_unempcomp_amount_nz_all,2022,tab14,unempcomp,amount,Unemployment compensation,nz,filers,all,20,"$10,000,000 or more",10632000.0,22in14ar.xls,CG28,85,CG,28 +5693,2022_tab14_unempcomp_count_nz_all,2022,tab14,unempcomp,count,Unemployment compensation — number of returns,nz,filers,all,1,"All returns, total",4728507.0,22in14ar.xls,CF9,84,CF,9 +5694,2022_tab14_unempcomp_count_nz_all,2022,tab14,unempcomp,count,Unemployment compensation — number of returns,nz,filers,all,2,No adjusted gross income,30375.0,22in14ar.xls,CF10,84,CF,10 +5695,2022_tab14_unempcomp_count_nz_all,2022,tab14,unempcomp,count,Unemployment compensation — number of returns,nz,filers,all,3,"$1 under $5,000",80787.0,22in14ar.xls,CF11,84,CF,11 +5696,2022_tab14_unempcomp_count_nz_all,2022,tab14,unempcomp,count,Unemployment compensation — number of returns,nz,filers,all,4,"$5,000 under $10,000",151452.0,22in14ar.xls,CF12,84,CF,12 +5697,2022_tab14_unempcomp_count_nz_all,2022,tab14,unempcomp,count,Unemployment compensation — number of returns,nz,filers,all,5,"$10,000 under $15,000",241578.0,22in14ar.xls,CF13,84,CF,13 +5698,2022_tab14_unempcomp_count_nz_all,2022,tab14,unempcomp,count,Unemployment compensation — number of returns,nz,filers,all,6,"$15,000 under $20,000",302689.0,22in14ar.xls,CF14,84,CF,14 +5699,2022_tab14_unempcomp_count_nz_all,2022,tab14,unempcomp,count,Unemployment compensation — number of returns,nz,filers,all,7,"$20,000 under $25,000",304130.0,22in14ar.xls,CF15,84,CF,15 +5700,2022_tab14_unempcomp_count_nz_all,2022,tab14,unempcomp,count,Unemployment compensation — number of returns,nz,filers,all,8,"$25,000 under $30,000",317628.0,22in14ar.xls,CF16,84,CF,16 +5701,2022_tab14_unempcomp_count_nz_all,2022,tab14,unempcomp,count,Unemployment compensation — number of returns,nz,filers,all,9,"$30,000 under $40,000",547305.0,22in14ar.xls,CF17,84,CF,17 +5702,2022_tab14_unempcomp_count_nz_all,2022,tab14,unempcomp,count,Unemployment compensation — number of returns,nz,filers,all,10,"$40,000 under $50,000",404022.0,22in14ar.xls,CF18,84,CF,18 +5703,2022_tab14_unempcomp_count_nz_all,2022,tab14,unempcomp,count,Unemployment compensation — number of returns,nz,filers,all,11,"$50,000 under $75,000",776781.0,22in14ar.xls,CF19,84,CF,19 +5704,2022_tab14_unempcomp_count_nz_all,2022,tab14,unempcomp,count,Unemployment compensation — number of returns,nz,filers,all,12,"$75,000 under $100,000",511954.0,22in14ar.xls,CF20,84,CF,20 +5705,2022_tab14_unempcomp_count_nz_all,2022,tab14,unempcomp,count,Unemployment compensation — number of returns,nz,filers,all,13,"$100,000 under $200,000",817583.0,22in14ar.xls,CF21,84,CF,21 +5706,2022_tab14_unempcomp_count_nz_all,2022,tab14,unempcomp,count,Unemployment compensation — number of returns,nz,filers,all,14,"$200,000 under $500,000",215466.0,22in14ar.xls,CF22,84,CF,22 +5707,2022_tab14_unempcomp_count_nz_all,2022,tab14,unempcomp,count,Unemployment compensation — number of returns,nz,filers,all,15,"$500,000 under $1,000,000",20982.0,22in14ar.xls,CF23,84,CF,23 +5708,2022_tab14_unempcomp_count_nz_all,2022,tab14,unempcomp,count,Unemployment compensation — number of returns,nz,filers,all,16,"$1,000,000 under $1,500,000",3694.0,22in14ar.xls,CF24,84,CF,24 +5709,2022_tab14_unempcomp_count_nz_all,2022,tab14,unempcomp,count,Unemployment compensation — number of returns,nz,filers,all,17,"$1,500,000 under $2,000,000",856.0,22in14ar.xls,CF25,84,CF,25 +5710,2022_tab14_unempcomp_count_nz_all,2022,tab14,unempcomp,count,Unemployment compensation — number of returns,nz,filers,all,18,"$2,000,000 under $5,000,000",993.0,22in14ar.xls,CF26,84,CF,26 +5711,2022_tab14_unempcomp_count_nz_all,2022,tab14,unempcomp,count,Unemployment compensation — number of returns,nz,filers,all,19,"$5,000,000 under $10,000,000",169.0,22in14ar.xls,CF27,84,CF,27 +5712,2022_tab14_unempcomp_count_nz_all,2022,tab14,unempcomp,count,Unemployment compensation — number of returns,nz,filers,all,20,"$10,000,000 or more",61.0,22in14ar.xls,CF28,84,CF,28 +5713,2022_tab14_wages_amount_nz_all,2022,tab14,wages,amount,Salaries and wages,nz,filers,all,1,"All returns, total",9738950972000.0,22in14ar.xls,G9,7,G,9 +5714,2022_tab14_wages_amount_nz_all,2022,tab14,wages,amount,Salaries and wages,nz,filers,all,2,No adjusted gross income,26549822000.0,22in14ar.xls,G10,7,G,10 +5715,2022_tab14_wages_amount_nz_all,2022,tab14,wages,amount,Salaries and wages,nz,filers,all,3,"$1 under $5,000",20111860000.0,22in14ar.xls,G11,7,G,11 +5716,2022_tab14_wages_amount_nz_all,2022,tab14,wages,amount,Salaries and wages,nz,filers,all,4,"$5,000 under $10,000",49932161000.0,22in14ar.xls,G12,7,G,12 +5717,2022_tab14_wages_amount_nz_all,2022,tab14,wages,amount,Salaries and wages,nz,filers,all,5,"$10,000 under $15,000",83472741000.0,22in14ar.xls,G13,7,G,13 +5718,2022_tab14_wages_amount_nz_all,2022,tab14,wages,amount,Salaries and wages,nz,filers,all,6,"$15,000 under $20,000",114917988000.0,22in14ar.xls,G14,7,G,14 +5719,2022_tab14_wages_amount_nz_all,2022,tab14,wages,amount,Salaries and wages,nz,filers,all,7,"$20,000 under $25,000",142024298000.0,22in14ar.xls,G15,7,G,15 +5720,2022_tab14_wages_amount_nz_all,2022,tab14,wages,amount,Salaries and wages,nz,filers,all,8,"$25,000 under $30,000",179101569000.0,22in14ar.xls,G16,7,G,16 +5721,2022_tab14_wages_amount_nz_all,2022,tab14,wages,amount,Salaries and wages,nz,filers,all,9,"$30,000 under $40,000",458154921000.0,22in14ar.xls,G17,7,G,17 +5722,2022_tab14_wages_amount_nz_all,2022,tab14,wages,amount,Salaries and wages,nz,filers,all,10,"$40,000 under $50,000",491501148000.0,22in14ar.xls,G18,7,G,18 +5723,2022_tab14_wages_amount_nz_all,2022,tab14,wages,amount,Salaries and wages,nz,filers,all,11,"$50,000 under $75,000",1150473333000.0,22in14ar.xls,G19,7,G,19 +5724,2022_tab14_wages_amount_nz_all,2022,tab14,wages,amount,Salaries and wages,nz,filers,all,12,"$75,000 under $100,000",987573283000.0,22in14ar.xls,G20,7,G,20 +5725,2022_tab14_wages_amount_nz_all,2022,tab14,wages,amount,Salaries and wages,nz,filers,all,13,"$100,000 under $200,000",2619600305000.0,22in14ar.xls,G21,7,G,21 +5726,2022_tab14_wages_amount_nz_all,2022,tab14,wages,amount,Salaries and wages,nz,filers,all,14,"$200,000 under $500,000",2010514162000.0,22in14ar.xls,G22,7,G,22 +5727,2022_tab14_wages_amount_nz_all,2022,tab14,wages,amount,Salaries and wages,nz,filers,all,15,"$500,000 under $1,000,000",652360162000.0,22in14ar.xls,G23,7,G,23 +5728,2022_tab14_wages_amount_nz_all,2022,tab14,wages,amount,Salaries and wages,nz,filers,all,16,"$1,000,000 under $1,500,000",201078168000.0,22in14ar.xls,G24,7,G,24 +5729,2022_tab14_wages_amount_nz_all,2022,tab14,wages,amount,Salaries and wages,nz,filers,all,17,"$1,500,000 under $2,000,000",101222017000.0,22in14ar.xls,G25,7,G,25 +5730,2022_tab14_wages_amount_nz_all,2022,tab14,wages,amount,Salaries and wages,nz,filers,all,18,"$2,000,000 under $5,000,000",202143391000.0,22in14ar.xls,G26,7,G,26 +5731,2022_tab14_wages_amount_nz_all,2022,tab14,wages,amount,Salaries and wages,nz,filers,all,19,"$5,000,000 under $10,000,000",95902801000.0,22in14ar.xls,G27,7,G,27 +5732,2022_tab14_wages_amount_nz_all,2022,tab14,wages,amount,Salaries and wages,nz,filers,all,20,"$10,000,000 or more",152316841000.0,22in14ar.xls,G28,7,G,28 +5733,2022_tab14_wages_count_nz_all,2022,tab14,wages,count,Salaries and wages — number of returns,nz,filers,all,1,"All returns, total",128387726.0,22in14ar.xls,F9,6,F,9 +5734,2022_tab14_wages_count_nz_all,2022,tab14,wages,count,Salaries and wages — number of returns,nz,filers,all,2,No adjusted gross income,535529.0,22in14ar.xls,F10,6,F,10 +5735,2022_tab14_wages_count_nz_all,2022,tab14,wages,count,Salaries and wages — number of returns,nz,filers,all,3,"$1 under $5,000",4526748.0,22in14ar.xls,F11,6,F,11 +5736,2022_tab14_wages_count_nz_all,2022,tab14,wages,count,Salaries and wages — number of returns,nz,filers,all,4,"$5,000 under $10,000",6288131.0,22in14ar.xls,F12,6,F,12 +5737,2022_tab14_wages_count_nz_all,2022,tab14,wages,count,Salaries and wages — number of returns,nz,filers,all,5,"$10,000 under $15,000",6711329.0,22in14ar.xls,F13,6,F,13 +5738,2022_tab14_wages_count_nz_all,2022,tab14,wages,count,Salaries and wages — number of returns,nz,filers,all,6,"$15,000 under $20,000",6711424.0,22in14ar.xls,F14,6,F,14 +5739,2022_tab14_wages_count_nz_all,2022,tab14,wages,count,Salaries and wages — number of returns,nz,filers,all,7,"$20,000 under $25,000",6413397.0,22in14ar.xls,F15,6,F,15 +5740,2022_tab14_wages_count_nz_all,2022,tab14,wages,count,Salaries and wages — number of returns,nz,filers,all,8,"$25,000 under $30,000",6580422.0,22in14ar.xls,F16,6,F,16 +5741,2022_tab14_wages_count_nz_all,2022,tab14,wages,count,Salaries and wages — number of returns,nz,filers,all,9,"$30,000 under $40,000",13512882.0,22in14ar.xls,F17,6,F,17 +5742,2022_tab14_wages_count_nz_all,2022,tab14,wages,count,Salaries and wages — number of returns,nz,filers,all,10,"$40,000 under $50,000",11461901.0,22in14ar.xls,F18,6,F,18 +5743,2022_tab14_wages_count_nz_all,2022,tab14,wages,count,Salaries and wages — number of returns,nz,filers,all,11,"$50,000 under $75,000",20174516.0,22in14ar.xls,F19,6,F,19 +5744,2022_tab14_wages_count_nz_all,2022,tab14,wages,count,Salaries and wages — number of returns,nz,filers,all,12,"$75,000 under $100,000",12691167.0,22in14ar.xls,F20,6,F,20 +5745,2022_tab14_wages_count_nz_all,2022,tab14,wages,count,Salaries and wages — number of returns,nz,filers,all,13,"$100,000 under $200,000",21959412.0,22in14ar.xls,F21,6,F,21 +5746,2022_tab14_wages_count_nz_all,2022,tab14,wages,count,Salaries and wages — number of returns,nz,filers,all,14,"$200,000 under $500,000",8723740.0,22in14ar.xls,F22,6,F,22 +5747,2022_tab14_wages_count_nz_all,2022,tab14,wages,count,Salaries and wages — number of returns,nz,filers,all,15,"$500,000 under $1,000,000",1436001.0,22in14ar.xls,F23,6,F,23 +5748,2022_tab14_wages_count_nz_all,2022,tab14,wages,count,Salaries and wages — number of returns,nz,filers,all,16,"$1,000,000 under $1,500,000",300870.0,22in14ar.xls,F24,6,F,24 +5749,2022_tab14_wages_count_nz_all,2022,tab14,wages,count,Salaries and wages — number of returns,nz,filers,all,17,"$1,500,000 under $2,000,000",121422.0,22in14ar.xls,F25,6,F,25 +5750,2022_tab14_wages_count_nz_all,2022,tab14,wages,count,Salaries and wages — number of returns,nz,filers,all,18,"$2,000,000 under $5,000,000",168281.0,22in14ar.xls,F26,6,F,26 +5751,2022_tab14_wages_count_nz_all,2022,tab14,wages,count,Salaries and wages — number of returns,nz,filers,all,19,"$5,000,000 under $10,000,000",42749.0,22in14ar.xls,F27,6,F,27 +5752,2022_tab14_wages_count_nz_all,2022,tab14,wages,count,Salaries and wages — number of returns,nz,filers,all,20,"$10,000,000 or more",27805.0,22in14ar.xls,F28,6,F,28 +5753,2022_tab21_id_count_nz_all,2022,tab21,id,count,Number of returns with itemized deductions,nz,filers,all,1,"All returns, total",15290841.0,22in21id.xls,B10,2,B,10 +5754,2022_tab21_id_count_nz_all,2022,tab21,id,count,Number of returns with itemized deductions,nz,filers,all,2,"Under $5,000",106861.0,22in21id.xls,B11,2,B,11 +5755,2022_tab21_id_count_nz_all,2022,tab21,id,count,Number of returns with itemized deductions,nz,filers,all,3,"$5,000 under $10,000",104685.0,22in21id.xls,B12,2,B,12 +5756,2022_tab21_id_count_nz_all,2022,tab21,id,count,Number of returns with itemized deductions,nz,filers,all,4,"$10,000 under $15,000",117421.0,22in21id.xls,B13,2,B,13 +5757,2022_tab21_id_count_nz_all,2022,tab21,id,count,Number of returns with itemized deductions,nz,filers,all,5,"$15,000 under $20,000",157566.0,22in21id.xls,B14,2,B,14 +5758,2022_tab21_id_count_nz_all,2022,tab21,id,count,Number of returns with itemized deductions,nz,filers,all,6,"$20,000 under $25,000",185594.0,22in21id.xls,B15,2,B,15 +5759,2022_tab21_id_count_nz_all,2022,tab21,id,count,Number of returns with itemized deductions,nz,filers,all,7,"$25,000 under $30,000",204094.0,22in21id.xls,B16,2,B,16 +5760,2022_tab21_id_count_nz_all,2022,tab21,id,count,Number of returns with itemized deductions,nz,filers,all,8,"$30,000 under $35,000",216563.0,22in21id.xls,B17,2,B,17 +5761,2022_tab21_id_count_nz_all,2022,tab21,id,count,Number of returns with itemized deductions,nz,filers,all,9,"$35,000 under $40,000",287912.0,22in21id.xls,B18,2,B,18 +5762,2022_tab21_id_count_nz_all,2022,tab21,id,count,Number of returns with itemized deductions,nz,filers,all,10,"$40,000 under $45,000",258971.0,22in21id.xls,B19,2,B,19 +5763,2022_tab21_id_count_nz_all,2022,tab21,id,count,Number of returns with itemized deductions,nz,filers,all,11,"$45,000 under $50,000",306906.0,22in21id.xls,B20,2,B,20 +5764,2022_tab21_id_count_nz_all,2022,tab21,id,count,Number of returns with itemized deductions,nz,filers,all,12,"$50,000 under $55,000",349573.0,22in21id.xls,B21,2,B,21 +5765,2022_tab21_id_count_nz_all,2022,tab21,id,count,Number of returns with itemized deductions,nz,filers,all,13,"$55,000 under $60,000",356725.0,22in21id.xls,B22,2,B,22 +5766,2022_tab21_id_count_nz_all,2022,tab21,id,count,Number of returns with itemized deductions,nz,filers,all,14,"$60,000 under $75,000",1184833.0,22in21id.xls,B23,2,B,23 +5767,2022_tab21_id_count_nz_all,2022,tab21,id,count,Number of returns with itemized deductions,nz,filers,all,15,"$75,000 under $100,000",1915665.0,22in21id.xls,B24,2,B,24 +5768,2022_tab21_id_count_nz_all,2022,tab21,id,count,Number of returns with itemized deductions,nz,filers,all,16,"$100,000 under $200,000",4745777.0,22in21id.xls,B25,2,B,25 +5769,2022_tab21_id_count_nz_all,2022,tab21,id,count,Number of returns with itemized deductions,nz,filers,all,17,"$200,000 under $500,000",3330396.0,22in21id.xls,B26,2,B,26 +5770,2022_tab21_id_count_nz_all,2022,tab21,id,count,Number of returns with itemized deductions,nz,filers,all,18,"$500,000 under $1,000,000",902651.0,22in21id.xls,B27,2,B,27 +5771,2022_tab21_id_count_nz_all,2022,tab21,id,count,Number of returns with itemized deductions,nz,filers,all,19,"$1,000,000 under $1,500,000",230387.0,22in21id.xls,B28,2,B,28 +5772,2022_tab21_id_count_nz_all,2022,tab21,id,count,Number of returns with itemized deductions,nz,filers,all,20,"$1,500,000 under $2,000,000",101541.0,22in21id.xls,B29,2,B,29 +5773,2022_tab21_id_count_nz_all,2022,tab21,id,count,Number of returns with itemized deductions,nz,filers,all,21,"$2,000,000 under $5,000,000",153659.0,22in21id.xls,B30,2,B,30 +5774,2022_tab21_id_count_nz_all,2022,tab21,id,count,Number of returns with itemized deductions,nz,filers,all,22,"$5,000,000 under $10,000,000",42951.0,22in21id.xls,B31,2,B,31 +5775,2022_tab21_id_count_nz_all,2022,tab21,id,count,Number of returns with itemized deductions,nz,filers,all,23,"$10,000,000 or more",30108.0,22in21id.xls,B32,2,B,32 +5776,2022_tab21_id_contributions_amount_nz_all,2022,tab21,id_contributions,amount,Charitable contributions,nz,filers,all,1,"All returns, total",222384855000.0,22in21id.xls,DH10,112,DH,10 +5777,2022_tab21_id_contributions_amount_nz_all,2022,tab21,id_contributions,amount,Charitable contributions,nz,filers,all,2,"Under $5,000",34841000.0,22in21id.xls,DH11,112,DH,11 +5778,2022_tab21_id_contributions_amount_nz_all,2022,tab21,id_contributions,amount,Charitable contributions,nz,filers,all,3,"$5,000 under $10,000",92549000.0,22in21id.xls,DH12,112,DH,12 +5779,2022_tab21_id_contributions_amount_nz_all,2022,tab21,id_contributions,amount,Charitable contributions,nz,filers,all,4,"$10,000 under $15,000",159177000.0,22in21id.xls,DH13,112,DH,13 +5780,2022_tab21_id_contributions_amount_nz_all,2022,tab21,id_contributions,amount,Charitable contributions,nz,filers,all,5,"$15,000 under $20,000",281706000.0,22in21id.xls,DH14,112,DH,14 +5781,2022_tab21_id_contributions_amount_nz_all,2022,tab21,id_contributions,amount,Charitable contributions,nz,filers,all,6,"$20,000 under $25,000",456754000.0,22in21id.xls,DH15,112,DH,15 +5782,2022_tab21_id_contributions_amount_nz_all,2022,tab21,id_contributions,amount,Charitable contributions,nz,filers,all,7,"$25,000 under $30,000",553969000.0,22in21id.xls,DH16,112,DH,16 +5783,2022_tab21_id_contributions_amount_nz_all,2022,tab21,id_contributions,amount,Charitable contributions,nz,filers,all,8,"$30,000 under $35,000",663476000.0,22in21id.xls,DH17,112,DH,17 +5784,2022_tab21_id_contributions_amount_nz_all,2022,tab21,id_contributions,amount,Charitable contributions,nz,filers,all,9,"$35,000 under $40,000",1255200000.0,22in21id.xls,DH18,112,DH,18 +5785,2022_tab21_id_contributions_amount_nz_all,2022,tab21,id_contributions,amount,Charitable contributions,nz,filers,all,10,"$40,000 under $45,000",1068181000.0,22in21id.xls,DH19,112,DH,19 +5786,2022_tab21_id_contributions_amount_nz_all,2022,tab21,id_contributions,amount,Charitable contributions,nz,filers,all,11,"$45,000 under $50,000",1311148000.0,22in21id.xls,DH20,112,DH,20 +5787,2022_tab21_id_contributions_amount_nz_all,2022,tab21,id_contributions,amount,Charitable contributions,nz,filers,all,12,"$50,000 under $55,000",1509675000.0,22in21id.xls,DH21,112,DH,21 +5788,2022_tab21_id_contributions_amount_nz_all,2022,tab21,id_contributions,amount,Charitable contributions,nz,filers,all,13,"$55,000 under $60,000",1751614000.0,22in21id.xls,DH22,112,DH,22 +5789,2022_tab21_id_contributions_amount_nz_all,2022,tab21,id_contributions,amount,Charitable contributions,nz,filers,all,14,"$60,000 under $75,000",5401166000.0,22in21id.xls,DH23,112,DH,23 +5790,2022_tab21_id_contributions_amount_nz_all,2022,tab21,id_contributions,amount,Charitable contributions,nz,filers,all,15,"$75,000 under $100,000",9073536000.0,22in21id.xls,DH24,112,DH,24 +5791,2022_tab21_id_contributions_amount_nz_all,2022,tab21,id_contributions,amount,Charitable contributions,nz,filers,all,16,"$100,000 under $200,000",34781128000.0,22in21id.xls,DH25,112,DH,25 +5792,2022_tab21_id_contributions_amount_nz_all,2022,tab21,id_contributions,amount,Charitable contributions,nz,filers,all,17,"$200,000 under $500,000",37531722000.0,22in21id.xls,DH26,112,DH,26 +5793,2022_tab21_id_contributions_amount_nz_all,2022,tab21,id_contributions,amount,Charitable contributions,nz,filers,all,18,"$500,000 under $1,000,000",20333029000.0,22in21id.xls,DH27,112,DH,27 +5794,2022_tab21_id_contributions_amount_nz_all,2022,tab21,id_contributions,amount,Charitable contributions,nz,filers,all,19,"$1,000,000 under $1,500,000",10226379000.0,22in21id.xls,DH28,112,DH,28 +5795,2022_tab21_id_contributions_amount_nz_all,2022,tab21,id_contributions,amount,Charitable contributions,nz,filers,all,20,"$1,500,000 under $2,000,000",6269622000.0,22in21id.xls,DH29,112,DH,29 +5796,2022_tab21_id_contributions_amount_nz_all,2022,tab21,id_contributions,amount,Charitable contributions,nz,filers,all,21,"$2,000,000 under $5,000,000",16801653000.0,22in21id.xls,DH30,112,DH,30 +5797,2022_tab21_id_contributions_amount_nz_all,2022,tab21,id_contributions,amount,Charitable contributions,nz,filers,all,22,"$5,000,000 under $10,000,000",11261823000.0,22in21id.xls,DH31,112,DH,31 +5798,2022_tab21_id_contributions_amount_nz_all,2022,tab21,id_contributions,amount,Charitable contributions,nz,filers,all,23,"$10,000,000 or more",61566506000.0,22in21id.xls,DH32,112,DH,32 +5799,2022_tab21_id_contributions_count_nz_all,2022,tab21,id_contributions,count,Charitable contributions — number of returns,nz,filers,all,1,"All returns, total",12179939.0,22in21id.xls,DG10,111,DG,10 +5800,2022_tab21_id_contributions_count_nz_all,2022,tab21,id_contributions,count,Charitable contributions — number of returns,nz,filers,all,2,"Under $5,000",46941.0,22in21id.xls,DG11,111,DG,11 +5801,2022_tab21_id_contributions_count_nz_all,2022,tab21,id_contributions,count,Charitable contributions — number of returns,nz,filers,all,3,"$5,000 under $10,000",44917.0,22in21id.xls,DG12,111,DG,12 +5802,2022_tab21_id_contributions_count_nz_all,2022,tab21,id_contributions,count,Charitable contributions — number of returns,nz,filers,all,4,"$10,000 under $15,000",67092.0,22in21id.xls,DG13,111,DG,13 +5803,2022_tab21_id_contributions_count_nz_all,2022,tab21,id_contributions,count,Charitable contributions — number of returns,nz,filers,all,5,"$15,000 under $20,000",88049.0,22in21id.xls,DG14,111,DG,14 +5804,2022_tab21_id_contributions_count_nz_all,2022,tab21,id_contributions,count,Charitable contributions — number of returns,nz,filers,all,6,"$20,000 under $25,000",120027.0,22in21id.xls,DG15,111,DG,15 +5805,2022_tab21_id_contributions_count_nz_all,2022,tab21,id_contributions,count,Charitable contributions — number of returns,nz,filers,all,7,"$25,000 under $30,000",132800.0,22in21id.xls,DG16,111,DG,16 +5806,2022_tab21_id_contributions_count_nz_all,2022,tab21,id_contributions,count,Charitable contributions — number of returns,nz,filers,all,8,"$30,000 under $35,000",151769.0,22in21id.xls,DG17,111,DG,17 +5807,2022_tab21_id_contributions_count_nz_all,2022,tab21,id_contributions,count,Charitable contributions — number of returns,nz,filers,all,9,"$35,000 under $40,000",198007.0,22in21id.xls,DG18,111,DG,18 +5808,2022_tab21_id_contributions_count_nz_all,2022,tab21,id_contributions,count,Charitable contributions — number of returns,nz,filers,all,10,"$40,000 under $45,000",188265.0,22in21id.xls,DG19,111,DG,19 +5809,2022_tab21_id_contributions_count_nz_all,2022,tab21,id_contributions,count,Charitable contributions — number of returns,nz,filers,all,11,"$45,000 under $50,000",221978.0,22in21id.xls,DG20,111,DG,20 +5810,2022_tab21_id_contributions_count_nz_all,2022,tab21,id_contributions,count,Charitable contributions — number of returns,nz,filers,all,12,"$50,000 under $55,000",247046.0,22in21id.xls,DG21,111,DG,21 +5811,2022_tab21_id_contributions_count_nz_all,2022,tab21,id_contributions,count,Charitable contributions — number of returns,nz,filers,all,13,"$55,000 under $60,000",276278.0,22in21id.xls,DG22,111,DG,22 +5812,2022_tab21_id_contributions_count_nz_all,2022,tab21,id_contributions,count,Charitable contributions — number of returns,nz,filers,all,14,"$60,000 under $75,000",890000.0,22in21id.xls,DG23,111,DG,23 +5813,2022_tab21_id_contributions_count_nz_all,2022,tab21,id_contributions,count,Charitable contributions — number of returns,nz,filers,all,15,"$75,000 under $100,000",1473990.0,22in21id.xls,DG24,111,DG,24 +5814,2022_tab21_id_contributions_count_nz_all,2022,tab21,id_contributions,count,Charitable contributions — number of returns,nz,filers,all,16,"$100,000 under $200,000",3831570.0,22in21id.xls,DG25,111,DG,25 +5815,2022_tab21_id_contributions_count_nz_all,2022,tab21,id_contributions,count,Charitable contributions — number of returns,nz,filers,all,17,"$200,000 under $500,000",2868979.0,22in21id.xls,DG26,111,DG,26 +5816,2022_tab21_id_contributions_count_nz_all,2022,tab21,id_contributions,count,Charitable contributions — number of returns,nz,filers,all,18,"$500,000 under $1,000,000",810992.0,22in21id.xls,DG27,111,DG,27 +5817,2022_tab21_id_contributions_count_nz_all,2022,tab21,id_contributions,count,Charitable contributions — number of returns,nz,filers,all,19,"$1,000,000 under $1,500,000",211235.0,22in21id.xls,DG28,111,DG,28 +5818,2022_tab21_id_contributions_count_nz_all,2022,tab21,id_contributions,count,Charitable contributions — number of returns,nz,filers,all,20,"$1,500,000 under $2,000,000",94711.0,22in21id.xls,DG29,111,DG,29 +5819,2022_tab21_id_contributions_count_nz_all,2022,tab21,id_contributions,count,Charitable contributions — number of returns,nz,filers,all,21,"$2,000,000 under $5,000,000",144922.0,22in21id.xls,DG30,111,DG,30 +5820,2022_tab21_id_contributions_count_nz_all,2022,tab21,id_contributions,count,Charitable contributions — number of returns,nz,filers,all,22,"$5,000,000 under $10,000,000",41137.0,22in21id.xls,DG31,111,DG,31 +5821,2022_tab21_id_contributions_count_nz_all,2022,tab21,id_contributions,count,Charitable contributions — number of returns,nz,filers,all,23,"$10,000,000 or more",29233.0,22in21id.xls,DG32,111,DG,32 +5822,2022_tab21_id_gst_amount_nz_all,2022,tab21,id_gst,amount,General sales taxes,nz,filers,all,1,"All returns, total",28500488000.0,22in21id.xls,CJ10,88,CJ,10 +5823,2022_tab21_id_gst_amount_nz_all,2022,tab21,id_gst,amount,General sales taxes,nz,filers,all,2,"Under $5,000",32892000.0,22in21id.xls,CJ11,88,CJ,11 +5824,2022_tab21_id_gst_amount_nz_all,2022,tab21,id_gst,amount,General sales taxes,nz,filers,all,3,"$5,000 under $10,000",52650000.0,22in21id.xls,CJ12,88,CJ,12 +5825,2022_tab21_id_gst_amount_nz_all,2022,tab21,id_gst,amount,General sales taxes,nz,filers,all,4,"$10,000 under $15,000",41651000.0,22in21id.xls,CJ13,88,CJ,13 +5826,2022_tab21_id_gst_amount_nz_all,2022,tab21,id_gst,amount,General sales taxes,nz,filers,all,5,"$15,000 under $20,000",87502000.0,22in21id.xls,CJ14,88,CJ,14 +5827,2022_tab21_id_gst_amount_nz_all,2022,tab21,id_gst,amount,General sales taxes,nz,filers,all,6,"$20,000 under $25,000",138220000.0,22in21id.xls,CJ15,88,CJ,15 +5828,2022_tab21_id_gst_amount_nz_all,2022,tab21,id_gst,amount,General sales taxes,nz,filers,all,7,"$25,000 under $30,000",111030000.0,22in21id.xls,CJ16,88,CJ,16 +5829,2022_tab21_id_gst_amount_nz_all,2022,tab21,id_gst,amount,General sales taxes,nz,filers,all,8,"$30,000 under $35,000",143257000.0,22in21id.xls,CJ17,88,CJ,17 +5830,2022_tab21_id_gst_amount_nz_all,2022,tab21,id_gst,amount,General sales taxes,nz,filers,all,9,"$35,000 under $40,000",172862000.0,22in21id.xls,CJ18,88,CJ,18 +5831,2022_tab21_id_gst_amount_nz_all,2022,tab21,id_gst,amount,General sales taxes,nz,filers,all,10,"$40,000 under $45,000",129523000.0,22in21id.xls,CJ19,88,CJ,19 +5832,2022_tab21_id_gst_amount_nz_all,2022,tab21,id_gst,amount,General sales taxes,nz,filers,all,11,"$45,000 under $50,000",163928000.0,22in21id.xls,CJ20,88,CJ,20 +5833,2022_tab21_id_gst_amount_nz_all,2022,tab21,id_gst,amount,General sales taxes,nz,filers,all,12,"$50,000 under $55,000",207610000.0,22in21id.xls,CJ21,88,CJ,21 +5834,2022_tab21_id_gst_amount_nz_all,2022,tab21,id_gst,amount,General sales taxes,nz,filers,all,13,"$55,000 under $60,000",158943000.0,22in21id.xls,CJ22,88,CJ,22 +5835,2022_tab21_id_gst_amount_nz_all,2022,tab21,id_gst,amount,General sales taxes,nz,filers,all,14,"$60,000 under $75,000",611581000.0,22in21id.xls,CJ23,88,CJ,23 +5836,2022_tab21_id_gst_amount_nz_all,2022,tab21,id_gst,amount,General sales taxes,nz,filers,all,15,"$75,000 under $100,000",777926000.0,22in21id.xls,CJ24,88,CJ,24 +5837,2022_tab21_id_gst_amount_nz_all,2022,tab21,id_gst,amount,General sales taxes,nz,filers,all,16,"$100,000 under $200,000",2343346000.0,22in21id.xls,CJ25,88,CJ,25 +5838,2022_tab21_id_gst_amount_nz_all,2022,tab21,id_gst,amount,General sales taxes,nz,filers,all,17,"$200,000 under $500,000",2466407000.0,22in21id.xls,CJ26,88,CJ,26 +5839,2022_tab21_id_gst_amount_nz_all,2022,tab21,id_gst,amount,General sales taxes,nz,filers,all,18,"$500,000 under $1,000,000",20121880000.0,22in21id.xls,CJ27,88,CJ,27 +5840,2022_tab21_id_gst_amount_nz_all,2022,tab21,id_gst,amount,General sales taxes,nz,filers,all,19,"$1,000,000 under $1,500,000",189358000.0,22in21id.xls,CJ28,88,CJ,28 +5841,2022_tab21_id_gst_amount_nz_all,2022,tab21,id_gst,amount,General sales taxes,nz,filers,all,20,"$1,500,000 under $2,000,000",88916000.0,22in21id.xls,CJ29,88,CJ,29 +5842,2022_tab21_id_gst_amount_nz_all,2022,tab21,id_gst,amount,General sales taxes,nz,filers,all,21,"$2,000,000 under $5,000,000",136299000.0,22in21id.xls,CJ30,88,CJ,30 +5843,2022_tab21_id_gst_amount_nz_all,2022,tab21,id_gst,amount,General sales taxes,nz,filers,all,22,"$5,000,000 under $10,000,000",66402000.0,22in21id.xls,CJ31,88,CJ,31 +5844,2022_tab21_id_gst_amount_nz_all,2022,tab21,id_gst,amount,General sales taxes,nz,filers,all,23,"$10,000,000 or more",258304000.0,22in21id.xls,CJ32,88,CJ,32 +5845,2022_tab21_id_gst_count_nz_all,2022,tab21,id_gst,count,General sales taxes — number of returns,nz,filers,all,1,"All returns, total",3653312.0,22in21id.xls,CI10,87,CI,10 +5846,2022_tab21_id_gst_count_nz_all,2022,tab21,id_gst,count,General sales taxes — number of returns,nz,filers,all,2,"Under $5,000",48417.0,22in21id.xls,CI11,87,CI,11 +5847,2022_tab21_id_gst_count_nz_all,2022,tab21,id_gst,count,General sales taxes — number of returns,nz,filers,all,3,"$5,000 under $10,000",60906.0,22in21id.xls,CI12,87,CI,12 +5848,2022_tab21_id_gst_count_nz_all,2022,tab21,id_gst,count,General sales taxes — number of returns,nz,filers,all,4,"$10,000 under $15,000",62658.0,22in21id.xls,CI13,87,CI,13 +5849,2022_tab21_id_gst_count_nz_all,2022,tab21,id_gst,count,General sales taxes — number of returns,nz,filers,all,5,"$15,000 under $20,000",81757.0,22in21id.xls,CI14,87,CI,14 +5850,2022_tab21_id_gst_count_nz_all,2022,tab21,id_gst,count,General sales taxes — number of returns,nz,filers,all,6,"$20,000 under $25,000",80981.0,22in21id.xls,CI15,87,CI,15 +5851,2022_tab21_id_gst_count_nz_all,2022,tab21,id_gst,count,General sales taxes — number of returns,nz,filers,all,7,"$25,000 under $30,000",69038.0,22in21id.xls,CI16,87,CI,16 +5852,2022_tab21_id_gst_count_nz_all,2022,tab21,id_gst,count,General sales taxes — number of returns,nz,filers,all,8,"$30,000 under $35,000",90770.0,22in21id.xls,CI17,87,CI,17 +5853,2022_tab21_id_gst_count_nz_all,2022,tab21,id_gst,count,General sales taxes — number of returns,nz,filers,all,9,"$35,000 under $40,000",109919.0,22in21id.xls,CI18,87,CI,18 +5854,2022_tab21_id_gst_count_nz_all,2022,tab21,id_gst,count,General sales taxes — number of returns,nz,filers,all,10,"$40,000 under $45,000",88569.0,22in21id.xls,CI19,87,CI,19 +5855,2022_tab21_id_gst_count_nz_all,2022,tab21,id_gst,count,General sales taxes — number of returns,nz,filers,all,11,"$45,000 under $50,000",105651.0,22in21id.xls,CI20,87,CI,20 +5856,2022_tab21_id_gst_count_nz_all,2022,tab21,id_gst,count,General sales taxes — number of returns,nz,filers,all,12,"$50,000 under $55,000",109135.0,22in21id.xls,CI21,87,CI,21 +5857,2022_tab21_id_gst_count_nz_all,2022,tab21,id_gst,count,General sales taxes — number of returns,nz,filers,all,13,"$55,000 under $60,000",102830.0,22in21id.xls,CI22,87,CI,22 +5858,2022_tab21_id_gst_count_nz_all,2022,tab21,id_gst,count,General sales taxes — number of returns,nz,filers,all,14,"$60,000 under $75,000",334107.0,22in21id.xls,CI23,87,CI,23 +5859,2022_tab21_id_gst_count_nz_all,2022,tab21,id_gst,count,General sales taxes — number of returns,nz,filers,all,15,"$75,000 under $100,000",403661.0,22in21id.xls,CI24,87,CI,24 +5860,2022_tab21_id_gst_count_nz_all,2022,tab21,id_gst,count,General sales taxes — number of returns,nz,filers,all,16,"$100,000 under $200,000",932034.0,22in21id.xls,CI25,87,CI,25 +5861,2022_tab21_id_gst_count_nz_all,2022,tab21,id_gst,count,General sales taxes — number of returns,nz,filers,all,17,"$200,000 under $500,000",669142.0,22in21id.xls,CI26,87,CI,26 +5862,2022_tab21_id_gst_count_nz_all,2022,tab21,id_gst,count,General sales taxes — number of returns,nz,filers,all,18,"$500,000 under $1,000,000",191587.0,22in21id.xls,CI27,87,CI,27 +5863,2022_tab21_id_gst_count_nz_all,2022,tab21,id_gst,count,General sales taxes — number of returns,nz,filers,all,19,"$1,000,000 under $1,500,000",48184.0,22in21id.xls,CI28,87,CI,28 +5864,2022_tab21_id_gst_count_nz_all,2022,tab21,id_gst,count,General sales taxes — number of returns,nz,filers,all,20,"$1,500,000 under $2,000,000",21636.0,22in21id.xls,CI29,87,CI,29 +5865,2022_tab21_id_gst_count_nz_all,2022,tab21,id_gst,count,General sales taxes — number of returns,nz,filers,all,21,"$2,000,000 under $5,000,000",29825.0,22in21id.xls,CI30,87,CI,30 +5866,2022_tab21_id_gst_count_nz_all,2022,tab21,id_gst,count,General sales taxes — number of returns,nz,filers,all,22,"$5,000,000 under $10,000,000",7757.0,22in21id.xls,CI31,87,CI,31 +5867,2022_tab21_id_gst_count_nz_all,2022,tab21,id_gst,count,General sales taxes — number of returns,nz,filers,all,23,"$10,000,000 or more",4747.0,22in21id.xls,CI32,87,CI,32 +5868,2022_tab21_id_intpaid_amount_nz_all,2022,tab21,id_intpaid,amount,Interest paid,nz,filers,all,1,"All returns, total",170451254000.0,22in21id.xls,CT10,98,CT,10 +5869,2022_tab21_id_intpaid_amount_nz_all,2022,tab21,id_intpaid,amount,Interest paid,nz,filers,all,2,"Under $5,000",528925000.0,22in21id.xls,CT11,98,CT,11 +5870,2022_tab21_id_intpaid_amount_nz_all,2022,tab21,id_intpaid,amount,Interest paid,nz,filers,all,3,"$5,000 under $10,000",541072000.0,22in21id.xls,CT12,98,CT,12 +5871,2022_tab21_id_intpaid_amount_nz_all,2022,tab21,id_intpaid,amount,Interest paid,nz,filers,all,4,"$10,000 under $15,000",470520000.0,22in21id.xls,CT13,98,CT,13 +5872,2022_tab21_id_intpaid_amount_nz_all,2022,tab21,id_intpaid,amount,Interest paid,nz,filers,all,5,"$15,000 under $20,000",986622000.0,22in21id.xls,CT14,98,CT,14 +5873,2022_tab21_id_intpaid_amount_nz_all,2022,tab21,id_intpaid,amount,Interest paid,nz,filers,all,6,"$20,000 under $25,000",1053476000.0,22in21id.xls,CT15,98,CT,15 +5874,2022_tab21_id_intpaid_amount_nz_all,2022,tab21,id_intpaid,amount,Interest paid,nz,filers,all,7,"$25,000 under $30,000",1043256000.0,22in21id.xls,CT16,98,CT,16 +5875,2022_tab21_id_intpaid_amount_nz_all,2022,tab21,id_intpaid,amount,Interest paid,nz,filers,all,8,"$30,000 under $35,000",1428075000.0,22in21id.xls,CT17,98,CT,17 +5876,2022_tab21_id_intpaid_amount_nz_all,2022,tab21,id_intpaid,amount,Interest paid,nz,filers,all,9,"$35,000 under $40,000",1409854000.0,22in21id.xls,CT18,98,CT,18 +5877,2022_tab21_id_intpaid_amount_nz_all,2022,tab21,id_intpaid,amount,Interest paid,nz,filers,all,10,"$40,000 under $45,000",1526699000.0,22in21id.xls,CT19,98,CT,19 +5878,2022_tab21_id_intpaid_amount_nz_all,2022,tab21,id_intpaid,amount,Interest paid,nz,filers,all,11,"$45,000 under $50,000",1915643000.0,22in21id.xls,CT20,98,CT,20 +5879,2022_tab21_id_intpaid_amount_nz_all,2022,tab21,id_intpaid,amount,Interest paid,nz,filers,all,12,"$50,000 under $55,000",2249005000.0,22in21id.xls,CT21,98,CT,21 +5880,2022_tab21_id_intpaid_amount_nz_all,2022,tab21,id_intpaid,amount,Interest paid,nz,filers,all,13,"$55,000 under $60,000",2551086000.0,22in21id.xls,CT22,98,CT,22 +5881,2022_tab21_id_intpaid_amount_nz_all,2022,tab21,id_intpaid,amount,Interest paid,nz,filers,all,14,"$60,000 under $75,000",8089430000.0,22in21id.xls,CT23,98,CT,23 +5882,2022_tab21_id_intpaid_amount_nz_all,2022,tab21,id_intpaid,amount,Interest paid,nz,filers,all,15,"$75,000 under $100,000",14761951000.0,22in21id.xls,CT24,98,CT,24 +5883,2022_tab21_id_intpaid_amount_nz_all,2022,tab21,id_intpaid,amount,Interest paid,nz,filers,all,16,"$100,000 under $200,000",44357448000.0,22in21id.xls,CT25,98,CT,25 +5884,2022_tab21_id_intpaid_amount_nz_all,2022,tab21,id_intpaid,amount,Interest paid,nz,filers,all,17,"$200,000 under $500,000",46070656000.0,22in21id.xls,CT26,98,CT,26 +5885,2022_tab21_id_intpaid_amount_nz_all,2022,tab21,id_intpaid,amount,Interest paid,nz,filers,all,18,"$500,000 under $1,000,000",16157584000.0,22in21id.xls,CT27,98,CT,27 +5886,2022_tab21_id_intpaid_amount_nz_all,2022,tab21,id_intpaid,amount,Interest paid,nz,filers,all,19,"$1,000,000 under $1,500,000",4904980000.0,22in21id.xls,CT28,98,CT,28 +5887,2022_tab21_id_intpaid_amount_nz_all,2022,tab21,id_intpaid,amount,Interest paid,nz,filers,all,20,"$1,500,000 under $2,000,000",2505822000.0,22in21id.xls,CT29,98,CT,29 +5888,2022_tab21_id_intpaid_amount_nz_all,2022,tab21,id_intpaid,amount,Interest paid,nz,filers,all,21,"$2,000,000 under $5,000,000",5267640000.0,22in21id.xls,CT30,98,CT,30 +5889,2022_tab21_id_intpaid_amount_nz_all,2022,tab21,id_intpaid,amount,Interest paid,nz,filers,all,22,"$5,000,000 under $10,000,000",2932702000.0,22in21id.xls,CT31,98,CT,31 +5890,2022_tab21_id_intpaid_amount_nz_all,2022,tab21,id_intpaid,amount,Interest paid,nz,filers,all,23,"$10,000,000 or more",9698806000.0,22in21id.xls,CT32,98,CT,32 +5891,2022_tab21_id_intpaid_count_nz_all,2022,tab21,id_intpaid,count,Interest paid — number of returns,nz,filers,all,1,"All returns, total",11900478.0,22in21id.xls,CS10,97,CS,10 +5892,2022_tab21_id_intpaid_count_nz_all,2022,tab21,id_intpaid,count,Interest paid — number of returns,nz,filers,all,2,"Under $5,000",51464.0,22in21id.xls,CS11,97,CS,11 +5893,2022_tab21_id_intpaid_count_nz_all,2022,tab21,id_intpaid,count,Interest paid — number of returns,nz,filers,all,3,"$5,000 under $10,000",59062.0,22in21id.xls,CS12,97,CS,12 +5894,2022_tab21_id_intpaid_count_nz_all,2022,tab21,id_intpaid,count,Interest paid — number of returns,nz,filers,all,4,"$10,000 under $15,000",51798.0,22in21id.xls,CS13,97,CS,13 +5895,2022_tab21_id_intpaid_count_nz_all,2022,tab21,id_intpaid,count,Interest paid — number of returns,nz,filers,all,5,"$15,000 under $20,000",71368.0,22in21id.xls,CS14,97,CS,14 +5896,2022_tab21_id_intpaid_count_nz_all,2022,tab21,id_intpaid,count,Interest paid — number of returns,nz,filers,all,6,"$20,000 under $25,000",98851.0,22in21id.xls,CS15,97,CS,15 +5897,2022_tab21_id_intpaid_count_nz_all,2022,tab21,id_intpaid,count,Interest paid — number of returns,nz,filers,all,7,"$25,000 under $30,000",88288.0,22in21id.xls,CS16,97,CS,16 +5898,2022_tab21_id_intpaid_count_nz_all,2022,tab21,id_intpaid,count,Interest paid — number of returns,nz,filers,all,8,"$30,000 under $35,000",115643.0,22in21id.xls,CS17,97,CS,17 +5899,2022_tab21_id_intpaid_count_nz_all,2022,tab21,id_intpaid,count,Interest paid — number of returns,nz,filers,all,9,"$35,000 under $40,000",155104.0,22in21id.xls,CS18,97,CS,18 +5900,2022_tab21_id_intpaid_count_nz_all,2022,tab21,id_intpaid,count,Interest paid — number of returns,nz,filers,all,10,"$40,000 under $45,000",147781.0,22in21id.xls,CS19,97,CS,19 +5901,2022_tab21_id_intpaid_count_nz_all,2022,tab21,id_intpaid,count,Interest paid — number of returns,nz,filers,all,11,"$45,000 under $50,000",185527.0,22in21id.xls,CS20,97,CS,20 +5902,2022_tab21_id_intpaid_count_nz_all,2022,tab21,id_intpaid,count,Interest paid — number of returns,nz,filers,all,12,"$50,000 under $55,000",227511.0,22in21id.xls,CS21,97,CS,21 +5903,2022_tab21_id_intpaid_count_nz_all,2022,tab21,id_intpaid,count,Interest paid — number of returns,nz,filers,all,13,"$55,000 under $60,000",237310.0,22in21id.xls,CS22,97,CS,22 +5904,2022_tab21_id_intpaid_count_nz_all,2022,tab21,id_intpaid,count,Interest paid — number of returns,nz,filers,all,14,"$60,000 under $75,000",856172.0,22in21id.xls,CS23,97,CS,23 +5905,2022_tab21_id_intpaid_count_nz_all,2022,tab21,id_intpaid,count,Interest paid — number of returns,nz,filers,all,15,"$75,000 under $100,000",1515059.0,22in21id.xls,CS24,97,CS,24 +5906,2022_tab21_id_intpaid_count_nz_all,2022,tab21,id_intpaid,count,Interest paid — number of returns,nz,filers,all,16,"$100,000 under $200,000",3879650.0,22in21id.xls,CS25,97,CS,25 +5907,2022_tab21_id_intpaid_count_nz_all,2022,tab21,id_intpaid,count,Interest paid — number of returns,nz,filers,all,17,"$200,000 under $500,000",2905042.0,22in21id.xls,CS26,97,CS,26 +5908,2022_tab21_id_intpaid_count_nz_all,2022,tab21,id_intpaid,count,Interest paid — number of returns,nz,filers,all,18,"$500,000 under $1,000,000",789774.0,22in21id.xls,CS27,97,CS,27 +5909,2022_tab21_id_intpaid_count_nz_all,2022,tab21,id_intpaid,count,Interest paid — number of returns,nz,filers,all,19,"$1,000,000 under $1,500,000",194860.0,22in21id.xls,CS28,97,CS,28 +5910,2022_tab21_id_intpaid_count_nz_all,2022,tab21,id_intpaid,count,Interest paid — number of returns,nz,filers,all,20,"$1,500,000 under $2,000,000",84193.0,22in21id.xls,CS29,97,CS,29 +5911,2022_tab21_id_intpaid_count_nz_all,2022,tab21,id_intpaid,count,Interest paid — number of returns,nz,filers,all,21,"$2,000,000 under $5,000,000",126085.0,22in21id.xls,CS30,97,CS,30 +5912,2022_tab21_id_intpaid_count_nz_all,2022,tab21,id_intpaid,count,Interest paid — number of returns,nz,filers,all,22,"$5,000,000 under $10,000,000",35016.0,22in21id.xls,CS31,97,CS,31 +5913,2022_tab21_id_intpaid_count_nz_all,2022,tab21,id_intpaid,count,Interest paid — number of returns,nz,filers,all,23,"$10,000,000 or more",24920.0,22in21id.xls,CS32,97,CS,32 +5914,2022_tab21_id_medical_capped_amount_nz_all,2022,tab21,id_medical_capped,amount,Medical expenses (deductible/capped),nz,filers,all,1,"All returns, total",92946111000.0,22in21id.xls,BV10,74,BV,10 +5915,2022_tab21_id_medical_capped_amount_nz_all,2022,tab21,id_medical_capped,amount,Medical expenses (deductible/capped),nz,filers,all,2,"Under $5,000",1191699000.0,22in21id.xls,BV11,74,BV,11 +5916,2022_tab21_id_medical_capped_amount_nz_all,2022,tab21,id_medical_capped,amount,Medical expenses (deductible/capped),nz,filers,all,3,"$5,000 under $10,000",10098694000.0,22in21id.xls,BV12,74,BV,12 +5917,2022_tab21_id_medical_capped_amount_nz_all,2022,tab21,id_medical_capped,amount,Medical expenses (deductible/capped),nz,filers,all,4,"$10,000 under $15,000",1617799000.0,22in21id.xls,BV13,74,BV,13 +5918,2022_tab21_id_medical_capped_amount_nz_all,2022,tab21,id_medical_capped,amount,Medical expenses (deductible/capped),nz,filers,all,5,"$15,000 under $20,000",1835915000.0,22in21id.xls,BV14,74,BV,14 +5919,2022_tab21_id_medical_capped_amount_nz_all,2022,tab21,id_medical_capped,amount,Medical expenses (deductible/capped),nz,filers,all,6,"$20,000 under $25,000",2419602000.0,22in21id.xls,BV15,74,BV,15 +5920,2022_tab21_id_medical_capped_amount_nz_all,2022,tab21,id_medical_capped,amount,Medical expenses (deductible/capped),nz,filers,all,7,"$25,000 under $30,000",2830226000.0,22in21id.xls,BV16,74,BV,16 +5921,2022_tab21_id_medical_capped_amount_nz_all,2022,tab21,id_medical_capped,amount,Medical expenses (deductible/capped),nz,filers,all,8,"$30,000 under $35,000",2811061000.0,22in21id.xls,BV17,74,BV,17 +5922,2022_tab21_id_medical_capped_amount_nz_all,2022,tab21,id_medical_capped,amount,Medical expenses (deductible/capped),nz,filers,all,9,"$35,000 under $40,000",3276238000.0,22in21id.xls,BV18,74,BV,18 +5923,2022_tab21_id_medical_capped_amount_nz_all,2022,tab21,id_medical_capped,amount,Medical expenses (deductible/capped),nz,filers,all,10,"$40,000 under $45,000",2549754000.0,22in21id.xls,BV19,74,BV,19 +5924,2022_tab21_id_medical_capped_amount_nz_all,2022,tab21,id_medical_capped,amount,Medical expenses (deductible/capped),nz,filers,all,11,"$45,000 under $50,000",3471236000.0,22in21id.xls,BV20,74,BV,20 +5925,2022_tab21_id_medical_capped_amount_nz_all,2022,tab21,id_medical_capped,amount,Medical expenses (deductible/capped),nz,filers,all,12,"$50,000 under $55,000",3173483000.0,22in21id.xls,BV21,74,BV,21 +5926,2022_tab21_id_medical_capped_amount_nz_all,2022,tab21,id_medical_capped,amount,Medical expenses (deductible/capped),nz,filers,all,13,"$55,000 under $60,000",2996137000.0,22in21id.xls,BV22,74,BV,22 +5927,2022_tab21_id_medical_capped_amount_nz_all,2022,tab21,id_medical_capped,amount,Medical expenses (deductible/capped),nz,filers,all,14,"$60,000 under $75,000",8982950000.0,22in21id.xls,BV23,74,BV,23 +5928,2022_tab21_id_medical_capped_amount_nz_all,2022,tab21,id_medical_capped,amount,Medical expenses (deductible/capped),nz,filers,all,15,"$75,000 under $100,000",12134303000.0,22in21id.xls,BV24,74,BV,24 +5929,2022_tab21_id_medical_capped_amount_nz_all,2022,tab21,id_medical_capped,amount,Medical expenses (deductible/capped),nz,filers,all,16,"$100,000 under $200,000",21689680000.0,22in21id.xls,BV25,74,BV,25 +5930,2022_tab21_id_medical_capped_amount_nz_all,2022,tab21,id_medical_capped,amount,Medical expenses (deductible/capped),nz,filers,all,17,"$200,000 under $500,000",9579720000.0,22in21id.xls,BV26,74,BV,26 +5931,2022_tab21_id_medical_capped_amount_nz_all,2022,tab21,id_medical_capped,amount,Medical expenses (deductible/capped),nz,filers,all,18,"$500,000 under $1,000,000",1776927000.0,22in21id.xls,BV27,74,BV,27 +5932,2022_tab21_id_medical_capped_amount_nz_all,2022,tab21,id_medical_capped,amount,Medical expenses (deductible/capped),nz,filers,all,19,"$1,000,000 under $1,500,000",259973000.0,22in21id.xls,BV28,74,BV,28 +5933,2022_tab21_id_medical_capped_amount_nz_all,2022,tab21,id_medical_capped,amount,Medical expenses (deductible/capped),nz,filers,all,20,"$1,500,000 under $2,000,000",109843000.0,22in21id.xls,BV29,74,BV,29 +5934,2022_tab21_id_medical_capped_amount_nz_all,2022,tab21,id_medical_capped,amount,Medical expenses (deductible/capped),nz,filers,all,21,"$2,000,000 under $5,000,000",120686000.0,22in21id.xls,BV30,74,BV,30 +5935,2022_tab21_id_medical_capped_amount_nz_all,2022,tab21,id_medical_capped,amount,Medical expenses (deductible/capped),nz,filers,all,22,"$5,000,000 under $10,000,000",18806000.0,22in21id.xls,BV31,74,BV,31 +5936,2022_tab21_id_medical_capped_amount_nz_all,2022,tab21,id_medical_capped,amount,Medical expenses (deductible/capped),nz,filers,all,23,"$10,000,000 or more",1380000.0,22in21id.xls,BV32,74,BV,32 +5937,2022_tab21_id_medical_capped_count_nz_all,2022,tab21,id_medical_capped,count,Medical expenses (deductible/capped) — number of returns,nz,filers,all,1,"All returns, total",3983082.0,22in21id.xls,BU10,73,BU,10 +5938,2022_tab21_id_medical_capped_count_nz_all,2022,tab21,id_medical_capped,count,Medical expenses (deductible/capped) — number of returns,nz,filers,all,2,"Under $5,000",66399.0,22in21id.xls,BU11,73,BU,11 +5939,2022_tab21_id_medical_capped_count_nz_all,2022,tab21,id_medical_capped,count,Medical expenses (deductible/capped) — number of returns,nz,filers,all,3,"$5,000 under $10,000",70113.0,22in21id.xls,BU12,73,BU,12 +5940,2022_tab21_id_medical_capped_count_nz_all,2022,tab21,id_medical_capped,count,Medical expenses (deductible/capped) — number of returns,nz,filers,all,4,"$10,000 under $15,000",84637.0,22in21id.xls,BU13,73,BU,13 +5941,2022_tab21_id_medical_capped_count_nz_all,2022,tab21,id_medical_capped,count,Medical expenses (deductible/capped) — number of returns,nz,filers,all,5,"$15,000 under $20,000",119212.0,22in21id.xls,BU14,73,BU,14 +5942,2022_tab21_id_medical_capped_count_nz_all,2022,tab21,id_medical_capped,count,Medical expenses (deductible/capped) — number of returns,nz,filers,all,6,"$20,000 under $25,000",127977.0,22in21id.xls,BU15,73,BU,15 +5943,2022_tab21_id_medical_capped_count_nz_all,2022,tab21,id_medical_capped,count,Medical expenses (deductible/capped) — number of returns,nz,filers,all,7,"$25,000 under $30,000",133921.0,22in21id.xls,BU16,73,BU,16 +5944,2022_tab21_id_medical_capped_count_nz_all,2022,tab21,id_medical_capped,count,Medical expenses (deductible/capped) — number of returns,nz,filers,all,8,"$30,000 under $35,000",141187.0,22in21id.xls,BU17,73,BU,17 +5945,2022_tab21_id_medical_capped_count_nz_all,2022,tab21,id_medical_capped,count,Medical expenses (deductible/capped) — number of returns,nz,filers,all,9,"$35,000 under $40,000",176025.0,22in21id.xls,BU18,73,BU,18 +5946,2022_tab21_id_medical_capped_count_nz_all,2022,tab21,id_medical_capped,count,Medical expenses (deductible/capped) — number of returns,nz,filers,all,10,"$40,000 under $45,000",144236.0,22in21id.xls,BU19,73,BU,19 +5947,2022_tab21_id_medical_capped_count_nz_all,2022,tab21,id_medical_capped,count,Medical expenses (deductible/capped) — number of returns,nz,filers,all,11,"$45,000 under $50,000",169405.0,22in21id.xls,BU20,73,BU,20 +5948,2022_tab21_id_medical_capped_count_nz_all,2022,tab21,id_medical_capped,count,Medical expenses (deductible/capped) — number of returns,nz,filers,all,12,"$50,000 under $55,000",169006.0,22in21id.xls,BU21,73,BU,21 +5949,2022_tab21_id_medical_capped_count_nz_all,2022,tab21,id_medical_capped,count,Medical expenses (deductible/capped) — number of returns,nz,filers,all,13,"$55,000 under $60,000",156340.0,22in21id.xls,BU22,73,BU,22 +5950,2022_tab21_id_medical_capped_count_nz_all,2022,tab21,id_medical_capped,count,Medical expenses (deductible/capped) — number of returns,nz,filers,all,14,"$60,000 under $75,000",493012.0,22in21id.xls,BU23,73,BU,23 +5951,2022_tab21_id_medical_capped_count_nz_all,2022,tab21,id_medical_capped,count,Medical expenses (deductible/capped) — number of returns,nz,filers,all,15,"$75,000 under $100,000",589529.0,22in21id.xls,BU24,73,BU,24 +5952,2022_tab21_id_medical_capped_count_nz_all,2022,tab21,id_medical_capped,count,Medical expenses (deductible/capped) — number of returns,nz,filers,all,16,"$100,000 under $200,000",1040043.0,22in21id.xls,BU25,73,BU,25 +5953,2022_tab21_id_medical_capped_count_nz_all,2022,tab21,id_medical_capped,count,Medical expenses (deductible/capped) — number of returns,nz,filers,all,17,"$200,000 under $500,000",278713.0,22in21id.xls,BU26,73,BU,26 +5954,2022_tab21_id_medical_capped_count_nz_all,2022,tab21,id_medical_capped,count,Medical expenses (deductible/capped) — number of returns,nz,filers,all,18,"$500,000 under $1,000,000",19750.0,22in21id.xls,BU27,73,BU,27 +5955,2022_tab21_id_medical_capped_count_nz_all,2022,tab21,id_medical_capped,count,Medical expenses (deductible/capped) — number of returns,nz,filers,all,19,"$1,000,000 under $1,500,000",2220.0,22in21id.xls,BU28,73,BU,28 +5956,2022_tab21_id_medical_capped_count_nz_all,2022,tab21,id_medical_capped,count,Medical expenses (deductible/capped) — number of returns,nz,filers,all,20,"$1,500,000 under $2,000,000",771.0,22in21id.xls,BU29,73,BU,29 +5957,2022_tab21_id_medical_capped_count_nz_all,2022,tab21,id_medical_capped,count,Medical expenses (deductible/capped) — number of returns,nz,filers,all,21,"$2,000,000 under $5,000,000",544.0,22in21id.xls,BU30,73,BU,30 +5958,2022_tab21_id_medical_capped_count_nz_all,2022,tab21,id_medical_capped,count,Medical expenses (deductible/capped) — number of returns,nz,filers,all,22,"$5,000,000 under $10,000,000",39.0,22in21id.xls,BU31,73,BU,31 +5959,2022_tab21_id_medical_capped_count_nz_all,2022,tab21,id_medical_capped,count,Medical expenses (deductible/capped) — number of returns,nz,filers,all,23,"$10,000,000 or more",3.0,22in21id.xls,BU32,73,BU,32 +5960,2022_tab21_id_medical_uncapped_amount_nz_all,2022,tab21,id_medical_uncapped,amount,Medical expenses (total/uncapped),nz,filers,all,1,"All returns, total",120988136000.0,22in21id.xls,BX10,76,BX,10 +5961,2022_tab21_id_medical_uncapped_amount_nz_all,2022,tab21,id_medical_uncapped,amount,Medical expenses (total/uncapped),nz,filers,all,2,"Under $5,000",1202437000.0,22in21id.xls,BX11,76,BX,11 +5962,2022_tab21_id_medical_uncapped_amount_nz_all,2022,tab21,id_medical_uncapped,amount,Medical expenses (total/uncapped),nz,filers,all,3,"$5,000 under $10,000",10139280000.0,22in21id.xls,BX12,76,BX,12 +5963,2022_tab21_id_medical_uncapped_amount_nz_all,2022,tab21,id_medical_uncapped,amount,Medical expenses (total/uncapped),nz,filers,all,4,"$10,000 under $15,000",1696521000.0,22in21id.xls,BX13,76,BX,13 +5964,2022_tab21_id_medical_uncapped_amount_nz_all,2022,tab21,id_medical_uncapped,amount,Medical expenses (total/uncapped),nz,filers,all,5,"$15,000 under $20,000",1993208000.0,22in21id.xls,BX14,76,BX,14 +5965,2022_tab21_id_medical_uncapped_amount_nz_all,2022,tab21,id_medical_uncapped,amount,Medical expenses (total/uncapped),nz,filers,all,6,"$20,000 under $25,000",2638259000.0,22in21id.xls,BX15,76,BX,15 +5966,2022_tab21_id_medical_uncapped_amount_nz_all,2022,tab21,id_medical_uncapped,amount,Medical expenses (total/uncapped),nz,filers,all,7,"$25,000 under $30,000",3107240000.0,22in21id.xls,BX16,76,BX,16 +5967,2022_tab21_id_medical_uncapped_amount_nz_all,2022,tab21,id_medical_uncapped,amount,Medical expenses (total/uncapped),nz,filers,all,8,"$30,000 under $35,000",3156446000.0,22in21id.xls,BX17,76,BX,17 +5968,2022_tab21_id_medical_uncapped_amount_nz_all,2022,tab21,id_medical_uncapped,amount,Medical expenses (total/uncapped),nz,filers,all,9,"$35,000 under $40,000",3771170000.0,22in21id.xls,BX18,76,BX,18 +5969,2022_tab21_id_medical_uncapped_amount_nz_all,2022,tab21,id_medical_uncapped,amount,Medical expenses (total/uncapped),nz,filers,all,10,"$40,000 under $45,000",3011339000.0,22in21id.xls,BX19,76,BX,19 +5970,2022_tab21_id_medical_uncapped_amount_nz_all,2022,tab21,id_medical_uncapped,amount,Medical expenses (total/uncapped),nz,filers,all,11,"$45,000 under $50,000",4074881000.0,22in21id.xls,BX20,76,BX,20 +5971,2022_tab21_id_medical_uncapped_amount_nz_all,2022,tab21,id_medical_uncapped,amount,Medical expenses (total/uncapped),nz,filers,all,12,"$50,000 under $55,000",3836231000.0,22in21id.xls,BX21,76,BX,21 +5972,2022_tab21_id_medical_uncapped_amount_nz_all,2022,tab21,id_medical_uncapped,amount,Medical expenses (total/uncapped),nz,filers,all,13,"$55,000 under $60,000",3669549000.0,22in21id.xls,BX22,76,BX,22 +5973,2022_tab21_id_medical_uncapped_amount_nz_all,2022,tab21,id_medical_uncapped,amount,Medical expenses (total/uncapped),nz,filers,all,14,"$60,000 under $75,000",11480491000.0,22in21id.xls,BX23,76,BX,23 +5974,2022_tab21_id_medical_uncapped_amount_nz_all,2022,tab21,id_medical_uncapped,amount,Medical expenses (total/uncapped),nz,filers,all,15,"$75,000 under $100,000",15979554000.0,22in21id.xls,BX24,76,BX,24 +5975,2022_tab21_id_medical_uncapped_amount_nz_all,2022,tab21,id_medical_uncapped,amount,Medical expenses (total/uncapped),nz,filers,all,16,"$100,000 under $200,000",32277299000.0,22in21id.xls,BX25,76,BX,25 +5976,2022_tab21_id_medical_uncapped_amount_nz_all,2022,tab21,id_medical_uncapped,amount,Medical expenses (total/uncapped),nz,filers,all,17,"$200,000 under $500,000",15279634000.0,22in21id.xls,BX26,76,BX,26 +5977,2022_tab21_id_medical_uncapped_amount_nz_all,2022,tab21,id_medical_uncapped,amount,Medical expenses (total/uncapped),nz,filers,all,18,"$500,000 under $1,000,000",2729821000.0,22in21id.xls,BX27,76,BX,27 +5978,2022_tab21_id_medical_uncapped_amount_nz_all,2022,tab21,id_medical_uncapped,amount,Medical expenses (total/uncapped),nz,filers,all,19,"$1,000,000 under $1,500,000",457210000.0,22in21id.xls,BX28,76,BX,28 +5979,2022_tab21_id_medical_uncapped_amount_nz_all,2022,tab21,id_medical_uncapped,amount,Medical expenses (total/uncapped),nz,filers,all,20,"$1,500,000 under $2,000,000",208301000.0,22in21id.xls,BX29,76,BX,29 +5980,2022_tab21_id_medical_uncapped_amount_nz_all,2022,tab21,id_medical_uncapped,amount,Medical expenses (total/uncapped),nz,filers,all,21,"$2,000,000 under $5,000,000",236937000.0,22in21id.xls,BX30,76,BX,30 +5981,2022_tab21_id_medical_uncapped_amount_nz_all,2022,tab21,id_medical_uncapped,amount,Medical expenses (total/uncapped),nz,filers,all,22,"$5,000,000 under $10,000,000",38147000.0,22in21id.xls,BX31,76,BX,31 +5982,2022_tab21_id_medical_uncapped_amount_nz_all,2022,tab21,id_medical_uncapped,amount,Medical expenses (total/uncapped),nz,filers,all,23,"$10,000,000 or more",4181000.0,22in21id.xls,BX32,76,BX,32 +5983,2022_tab21_id_medical_uncapped_count_nz_all,2022,tab21,id_medical_uncapped,count,Medical expenses (total/uncapped) — number of returns,nz,filers,all,1,"All returns, total",3983082.0,22in21id.xls,BW10,75,BW,10 +5984,2022_tab21_id_medical_uncapped_count_nz_all,2022,tab21,id_medical_uncapped,count,Medical expenses (total/uncapped) — number of returns,nz,filers,all,2,"Under $5,000",66399.0,22in21id.xls,BW11,75,BW,11 +5985,2022_tab21_id_medical_uncapped_count_nz_all,2022,tab21,id_medical_uncapped,count,Medical expenses (total/uncapped) — number of returns,nz,filers,all,3,"$5,000 under $10,000",70113.0,22in21id.xls,BW12,75,BW,12 +5986,2022_tab21_id_medical_uncapped_count_nz_all,2022,tab21,id_medical_uncapped,count,Medical expenses (total/uncapped) — number of returns,nz,filers,all,4,"$10,000 under $15,000",84637.0,22in21id.xls,BW13,75,BW,13 +5987,2022_tab21_id_medical_uncapped_count_nz_all,2022,tab21,id_medical_uncapped,count,Medical expenses (total/uncapped) — number of returns,nz,filers,all,5,"$15,000 under $20,000",119212.0,22in21id.xls,BW14,75,BW,14 +5988,2022_tab21_id_medical_uncapped_count_nz_all,2022,tab21,id_medical_uncapped,count,Medical expenses (total/uncapped) — number of returns,nz,filers,all,6,"$20,000 under $25,000",127977.0,22in21id.xls,BW15,75,BW,15 +5989,2022_tab21_id_medical_uncapped_count_nz_all,2022,tab21,id_medical_uncapped,count,Medical expenses (total/uncapped) — number of returns,nz,filers,all,7,"$25,000 under $30,000",133921.0,22in21id.xls,BW16,75,BW,16 +5990,2022_tab21_id_medical_uncapped_count_nz_all,2022,tab21,id_medical_uncapped,count,Medical expenses (total/uncapped) — number of returns,nz,filers,all,8,"$30,000 under $35,000",141187.0,22in21id.xls,BW17,75,BW,17 +5991,2022_tab21_id_medical_uncapped_count_nz_all,2022,tab21,id_medical_uncapped,count,Medical expenses (total/uncapped) — number of returns,nz,filers,all,9,"$35,000 under $40,000",176025.0,22in21id.xls,BW18,75,BW,18 +5992,2022_tab21_id_medical_uncapped_count_nz_all,2022,tab21,id_medical_uncapped,count,Medical expenses (total/uncapped) — number of returns,nz,filers,all,10,"$40,000 under $45,000",144236.0,22in21id.xls,BW19,75,BW,19 +5993,2022_tab21_id_medical_uncapped_count_nz_all,2022,tab21,id_medical_uncapped,count,Medical expenses (total/uncapped) — number of returns,nz,filers,all,11,"$45,000 under $50,000",169405.0,22in21id.xls,BW20,75,BW,20 +5994,2022_tab21_id_medical_uncapped_count_nz_all,2022,tab21,id_medical_uncapped,count,Medical expenses (total/uncapped) — number of returns,nz,filers,all,12,"$50,000 under $55,000",169006.0,22in21id.xls,BW21,75,BW,21 +5995,2022_tab21_id_medical_uncapped_count_nz_all,2022,tab21,id_medical_uncapped,count,Medical expenses (total/uncapped) — number of returns,nz,filers,all,13,"$55,000 under $60,000",156340.0,22in21id.xls,BW22,75,BW,22 +5996,2022_tab21_id_medical_uncapped_count_nz_all,2022,tab21,id_medical_uncapped,count,Medical expenses (total/uncapped) — number of returns,nz,filers,all,14,"$60,000 under $75,000",493012.0,22in21id.xls,BW23,75,BW,23 +5997,2022_tab21_id_medical_uncapped_count_nz_all,2022,tab21,id_medical_uncapped,count,Medical expenses (total/uncapped) — number of returns,nz,filers,all,15,"$75,000 under $100,000",589529.0,22in21id.xls,BW24,75,BW,24 +5998,2022_tab21_id_medical_uncapped_count_nz_all,2022,tab21,id_medical_uncapped,count,Medical expenses (total/uncapped) — number of returns,nz,filers,all,16,"$100,000 under $200,000",1040043.0,22in21id.xls,BW25,75,BW,25 +5999,2022_tab21_id_medical_uncapped_count_nz_all,2022,tab21,id_medical_uncapped,count,Medical expenses (total/uncapped) — number of returns,nz,filers,all,17,"$200,000 under $500,000",278713.0,22in21id.xls,BW26,75,BW,26 +6000,2022_tab21_id_medical_uncapped_count_nz_all,2022,tab21,id_medical_uncapped,count,Medical expenses (total/uncapped) — number of returns,nz,filers,all,18,"$500,000 under $1,000,000",19750.0,22in21id.xls,BW27,75,BW,27 +6001,2022_tab21_id_medical_uncapped_count_nz_all,2022,tab21,id_medical_uncapped,count,Medical expenses (total/uncapped) — number of returns,nz,filers,all,19,"$1,000,000 under $1,500,000",2220.0,22in21id.xls,BW28,75,BW,28 +6002,2022_tab21_id_medical_uncapped_count_nz_all,2022,tab21,id_medical_uncapped,count,Medical expenses (total/uncapped) — number of returns,nz,filers,all,20,"$1,500,000 under $2,000,000",771.0,22in21id.xls,BW29,75,BW,29 +6003,2022_tab21_id_medical_uncapped_count_nz_all,2022,tab21,id_medical_uncapped,count,Medical expenses (total/uncapped) — number of returns,nz,filers,all,21,"$2,000,000 under $5,000,000",544.0,22in21id.xls,BW30,75,BW,30 +6004,2022_tab21_id_medical_uncapped_count_nz_all,2022,tab21,id_medical_uncapped,count,Medical expenses (total/uncapped) — number of returns,nz,filers,all,22,"$5,000,000 under $10,000,000",39.0,22in21id.xls,BW31,75,BW,31 +6005,2022_tab21_id_medical_uncapped_count_nz_all,2022,tab21,id_medical_uncapped,count,Medical expenses (total/uncapped) — number of returns,nz,filers,all,23,"$10,000,000 or more",3.0,22in21id.xls,BW32,75,BW,32 +6006,2022_tab21_id_mortgage_amount_nz_all,2022,tab21,id_mortgage,amount,Home mortgage interest,nz,filers,all,1,"All returns, total",145435728000.0,22in21id.xls,CX10,102,CX,10 +6007,2022_tab21_id_mortgage_amount_nz_all,2022,tab21,id_mortgage,amount,Home mortgage interest,nz,filers,all,2,"Under $5,000",494627000.0,22in21id.xls,CX11,102,CX,11 +6008,2022_tab21_id_mortgage_amount_nz_all,2022,tab21,id_mortgage,amount,Home mortgage interest,nz,filers,all,3,"$5,000 under $10,000",530166000.0,22in21id.xls,CX12,102,CX,12 +6009,2022_tab21_id_mortgage_amount_nz_all,2022,tab21,id_mortgage,amount,Home mortgage interest,nz,filers,all,4,"$10,000 under $15,000",467388000.0,22in21id.xls,CX13,102,CX,13 +6010,2022_tab21_id_mortgage_amount_nz_all,2022,tab21,id_mortgage,amount,Home mortgage interest,nz,filers,all,5,"$15,000 under $20,000",953867000.0,22in21id.xls,CX14,102,CX,14 +6011,2022_tab21_id_mortgage_amount_nz_all,2022,tab21,id_mortgage,amount,Home mortgage interest,nz,filers,all,6,"$20,000 under $25,000",1044906000.0,22in21id.xls,CX15,102,CX,15 +6012,2022_tab21_id_mortgage_amount_nz_all,2022,tab21,id_mortgage,amount,Home mortgage interest,nz,filers,all,7,"$25,000 under $30,000",1034852000.0,22in21id.xls,CX16,102,CX,16 +6013,2022_tab21_id_mortgage_amount_nz_all,2022,tab21,id_mortgage,amount,Home mortgage interest,nz,filers,all,8,"$30,000 under $35,000",1147577000.0,22in21id.xls,CX17,102,CX,17 +6014,2022_tab21_id_mortgage_amount_nz_all,2022,tab21,id_mortgage,amount,Home mortgage interest,nz,filers,all,9,"$35,000 under $40,000",1347943000.0,22in21id.xls,CX18,102,CX,18 +6015,2022_tab21_id_mortgage_amount_nz_all,2022,tab21,id_mortgage,amount,Home mortgage interest,nz,filers,all,10,"$40,000 under $45,000",1456726000.0,22in21id.xls,CX19,102,CX,19 +6016,2022_tab21_id_mortgage_amount_nz_all,2022,tab21,id_mortgage,amount,Home mortgage interest,nz,filers,all,11,"$45,000 under $50,000",1885532000.0,22in21id.xls,CX20,102,CX,20 +6017,2022_tab21_id_mortgage_amount_nz_all,2022,tab21,id_mortgage,amount,Home mortgage interest,nz,filers,all,12,"$50,000 under $55,000",2164241000.0,22in21id.xls,CX21,102,CX,21 +6018,2022_tab21_id_mortgage_amount_nz_all,2022,tab21,id_mortgage,amount,Home mortgage interest,nz,filers,all,13,"$55,000 under $60,000",2455604000.0,22in21id.xls,CX22,102,CX,22 +6019,2022_tab21_id_mortgage_amount_nz_all,2022,tab21,id_mortgage,amount,Home mortgage interest,nz,filers,all,14,"$60,000 under $75,000",7917811000.0,22in21id.xls,CX23,102,CX,23 +6020,2022_tab21_id_mortgage_amount_nz_all,2022,tab21,id_mortgage,amount,Home mortgage interest,nz,filers,all,15,"$75,000 under $100,000",14439702000.0,22in21id.xls,CX24,102,CX,24 +6021,2022_tab21_id_mortgage_amount_nz_all,2022,tab21,id_mortgage,amount,Home mortgage interest,nz,filers,all,16,"$100,000 under $200,000",43076729000.0,22in21id.xls,CX25,102,CX,25 +6022,2022_tab21_id_mortgage_amount_nz_all,2022,tab21,id_mortgage,amount,Home mortgage interest,nz,filers,all,17,"$200,000 under $500,000",43488414000.0,22in21id.xls,CX26,102,CX,26 +6023,2022_tab21_id_mortgage_amount_nz_all,2022,tab21,id_mortgage,amount,Home mortgage interest,nz,filers,all,18,"$500,000 under $1,000,000",13846540000.0,22in21id.xls,CX27,102,CX,27 +6024,2022_tab21_id_mortgage_amount_nz_all,2022,tab21,id_mortgage,amount,Home mortgage interest,nz,filers,all,19,"$1,000,000 under $1,500,000",3428384000.0,22in21id.xls,CX28,102,CX,28 +6025,2022_tab21_id_mortgage_amount_nz_all,2022,tab21,id_mortgage,amount,Home mortgage interest,nz,filers,all,20,"$1,500,000 under $2,000,000",1442720000.0,22in21id.xls,CX29,102,CX,29 +6026,2022_tab21_id_mortgage_amount_nz_all,2022,tab21,id_mortgage,amount,Home mortgage interest,nz,filers,all,21,"$2,000,000 under $5,000,000",2010572000.0,22in21id.xls,CX30,102,CX,30 +6027,2022_tab21_id_mortgage_amount_nz_all,2022,tab21,id_mortgage,amount,Home mortgage interest,nz,filers,all,22,"$5,000,000 under $10,000,000",503857000.0,22in21id.xls,CX31,102,CX,31 +6028,2022_tab21_id_mortgage_amount_nz_all,2022,tab21,id_mortgage,amount,Home mortgage interest,nz,filers,all,23,"$10,000,000 or more",297571000.0,22in21id.xls,CX32,102,CX,32 +6029,2022_tab21_id_mortgage_count_nz_all,2022,tab21,id_mortgage,count,Home mortgage interest — number of returns,nz,filers,all,1,"All returns, total",11629555.0,22in21id.xls,CW10,101,CW,10 +6030,2022_tab21_id_mortgage_count_nz_all,2022,tab21,id_mortgage,count,Home mortgage interest — number of returns,nz,filers,all,2,"Under $5,000",49012.0,22in21id.xls,CW11,101,CW,11 +6031,2022_tab21_id_mortgage_count_nz_all,2022,tab21,id_mortgage,count,Home mortgage interest — number of returns,nz,filers,all,3,"$5,000 under $10,000",53786.0,22in21id.xls,CW12,101,CW,12 +6032,2022_tab21_id_mortgage_count_nz_all,2022,tab21,id_mortgage,count,Home mortgage interest — number of returns,nz,filers,all,4,"$10,000 under $15,000",50378.0,22in21id.xls,CW13,101,CW,13 +6033,2022_tab21_id_mortgage_count_nz_all,2022,tab21,id_mortgage,count,Home mortgage interest — number of returns,nz,filers,all,5,"$15,000 under $20,000",69179.0,22in21id.xls,CW14,101,CW,14 +6034,2022_tab21_id_mortgage_count_nz_all,2022,tab21,id_mortgage,count,Home mortgage interest — number of returns,nz,filers,all,6,"$20,000 under $25,000",96021.0,22in21id.xls,CW15,101,CW,15 +6035,2022_tab21_id_mortgage_count_nz_all,2022,tab21,id_mortgage,count,Home mortgage interest — number of returns,nz,filers,all,7,"$25,000 under $30,000",87201.0,22in21id.xls,CW16,101,CW,16 +6036,2022_tab21_id_mortgage_count_nz_all,2022,tab21,id_mortgage,count,Home mortgage interest — number of returns,nz,filers,all,8,"$30,000 under $35,000",112541.0,22in21id.xls,CW17,101,CW,17 +6037,2022_tab21_id_mortgage_count_nz_all,2022,tab21,id_mortgage,count,Home mortgage interest — number of returns,nz,filers,all,9,"$35,000 under $40,000",153739.0,22in21id.xls,CW18,101,CW,18 +6038,2022_tab21_id_mortgage_count_nz_all,2022,tab21,id_mortgage,count,Home mortgage interest — number of returns,nz,filers,all,10,"$40,000 under $45,000",145538.0,22in21id.xls,CW19,101,CW,19 +6039,2022_tab21_id_mortgage_count_nz_all,2022,tab21,id_mortgage,count,Home mortgage interest — number of returns,nz,filers,all,11,"$45,000 under $50,000",181958.0,22in21id.xls,CW20,101,CW,20 +6040,2022_tab21_id_mortgage_count_nz_all,2022,tab21,id_mortgage,count,Home mortgage interest — number of returns,nz,filers,all,12,"$50,000 under $55,000",224320.0,22in21id.xls,CW21,101,CW,21 +6041,2022_tab21_id_mortgage_count_nz_all,2022,tab21,id_mortgage,count,Home mortgage interest — number of returns,nz,filers,all,13,"$55,000 under $60,000",233844.0,22in21id.xls,CW22,101,CW,22 +6042,2022_tab21_id_mortgage_count_nz_all,2022,tab21,id_mortgage,count,Home mortgage interest — number of returns,nz,filers,all,14,"$60,000 under $75,000",848002.0,22in21id.xls,CW23,101,CW,23 +6043,2022_tab21_id_mortgage_count_nz_all,2022,tab21,id_mortgage,count,Home mortgage interest — number of returns,nz,filers,all,15,"$75,000 under $100,000",1504094.0,22in21id.xls,CW24,101,CW,24 +6044,2022_tab21_id_mortgage_count_nz_all,2022,tab21,id_mortgage,count,Home mortgage interest — number of returns,nz,filers,all,16,"$100,000 under $200,000",3836302.0,22in21id.xls,CW25,101,CW,25 +6045,2022_tab21_id_mortgage_count_nz_all,2022,tab21,id_mortgage,count,Home mortgage interest — number of returns,nz,filers,all,17,"$200,000 under $500,000",2840097.0,22in21id.xls,CW26,101,CW,26 +6046,2022_tab21_id_mortgage_count_nz_all,2022,tab21,id_mortgage,count,Home mortgage interest — number of returns,nz,filers,all,18,"$500,000 under $1,000,000",751961.0,22in21id.xls,CW27,101,CW,27 +6047,2022_tab21_id_mortgage_count_nz_all,2022,tab21,id_mortgage,count,Home mortgage interest — number of returns,nz,filers,all,19,"$1,000,000 under $1,500,000",176048.0,22in21id.xls,CW28,101,CW,28 +6048,2022_tab21_id_mortgage_count_nz_all,2022,tab21,id_mortgage,count,Home mortgage interest — number of returns,nz,filers,all,20,"$1,500,000 under $2,000,000",73746.0,22in21id.xls,CW29,101,CW,29 +6049,2022_tab21_id_mortgage_count_nz_all,2022,tab21,id_mortgage,count,Home mortgage interest — number of returns,nz,filers,all,21,"$2,000,000 under $5,000,000",102107.0,22in21id.xls,CW30,101,CW,30 +6050,2022_tab21_id_mortgage_count_nz_all,2022,tab21,id_mortgage,count,Home mortgage interest — number of returns,nz,filers,all,22,"$5,000,000 under $10,000,000",25106.0,22in21id.xls,CW31,101,CW,31 +6051,2022_tab21_id_mortgage_count_nz_all,2022,tab21,id_mortgage,count,Home mortgage interest — number of returns,nz,filers,all,23,"$10,000,000 or more",14576.0,22in21id.xls,CW32,101,CW,32 +6052,2022_tab21_id_pit_amount_nz_all,2022,tab21,id_pit,amount,State income taxes,nz,filers,all,1,"All returns, total",257354764000.0,22in21id.xls,CH10,86,CH,10 +6053,2022_tab21_id_pit_amount_nz_all,2022,tab21,id_pit,amount,State income taxes,nz,filers,all,2,"Under $5,000",59953000.0,22in21id.xls,CH11,86,CH,11 +6054,2022_tab21_id_pit_amount_nz_all,2022,tab21,id_pit,amount,State income taxes,nz,filers,all,3,"$5,000 under $10,000",105836000.0,22in21id.xls,CH12,86,CH,12 +6055,2022_tab21_id_pit_amount_nz_all,2022,tab21,id_pit,amount,State income taxes,nz,filers,all,4,"$10,000 under $15,000",82289000.0,22in21id.xls,CH13,86,CH,13 +6056,2022_tab21_id_pit_amount_nz_all,2022,tab21,id_pit,amount,State income taxes,nz,filers,all,5,"$15,000 under $20,000",136023000.0,22in21id.xls,CH14,86,CH,14 +6057,2022_tab21_id_pit_amount_nz_all,2022,tab21,id_pit,amount,State income taxes,nz,filers,all,6,"$20,000 under $25,000",219740000.0,22in21id.xls,CH15,86,CH,15 +6058,2022_tab21_id_pit_amount_nz_all,2022,tab21,id_pit,amount,State income taxes,nz,filers,all,7,"$25,000 under $30,000",289210000.0,22in21id.xls,CH16,86,CH,16 +6059,2022_tab21_id_pit_amount_nz_all,2022,tab21,id_pit,amount,State income taxes,nz,filers,all,8,"$30,000 under $35,000",228824000.0,22in21id.xls,CH17,86,CH,17 +6060,2022_tab21_id_pit_amount_nz_all,2022,tab21,id_pit,amount,State income taxes,nz,filers,all,9,"$35,000 under $40,000",523540000.0,22in21id.xls,CH18,86,CH,18 +6061,2022_tab21_id_pit_amount_nz_all,2022,tab21,id_pit,amount,State income taxes,nz,filers,all,10,"$40,000 under $45,000",465899000.0,22in21id.xls,CH19,86,CH,19 +6062,2022_tab21_id_pit_amount_nz_all,2022,tab21,id_pit,amount,State income taxes,nz,filers,all,11,"$45,000 under $50,000",470460000.0,22in21id.xls,CH20,86,CH,20 +6063,2022_tab21_id_pit_amount_nz_all,2022,tab21,id_pit,amount,State income taxes,nz,filers,all,12,"$50,000 under $55,000",665647000.0,22in21id.xls,CH21,86,CH,21 +6064,2022_tab21_id_pit_amount_nz_all,2022,tab21,id_pit,amount,State income taxes,nz,filers,all,13,"$55,000 under $60,000",718738000.0,22in21id.xls,CH22,86,CH,22 +6065,2022_tab21_id_pit_amount_nz_all,2022,tab21,id_pit,amount,State income taxes,nz,filers,all,14,"$60,000 under $75,000",3143733000.0,22in21id.xls,CH23,86,CH,23 +6066,2022_tab21_id_pit_amount_nz_all,2022,tab21,id_pit,amount,State income taxes,nz,filers,all,15,"$75,000 under $100,000",7250442000.0,22in21id.xls,CH24,86,CH,24 +6067,2022_tab21_id_pit_amount_nz_all,2022,tab21,id_pit,amount,State income taxes,nz,filers,all,16,"$100,000 under $200,000",29975406000.0,22in21id.xls,CH25,86,CH,25 +6068,2022_tab21_id_pit_amount_nz_all,2022,tab21,id_pit,amount,State income taxes,nz,filers,all,17,"$200,000 under $500,000",52499008000.0,22in21id.xls,CH26,86,CH,26 +6069,2022_tab21_id_pit_amount_nz_all,2022,tab21,id_pit,amount,State income taxes,nz,filers,all,18,"$500,000 under $1,000,000",35533301000.0,22in21id.xls,CH27,86,CH,27 +6070,2022_tab21_id_pit_amount_nz_all,2022,tab21,id_pit,amount,State income taxes,nz,filers,all,19,"$1,000,000 under $1,500,000",17378132000.0,22in21id.xls,CH28,86,CH,28 +6071,2022_tab21_id_pit_amount_nz_all,2022,tab21,id_pit,amount,State income taxes,nz,filers,all,20,"$1,500,000 under $2,000,000",10837281000.0,22in21id.xls,CH29,86,CH,29 +6072,2022_tab21_id_pit_amount_nz_all,2022,tab21,id_pit,amount,State income taxes,nz,filers,all,21,"$2,000,000 under $5,000,000",29273724000.0,22in21id.xls,CH30,86,CH,30 +6073,2022_tab21_id_pit_amount_nz_all,2022,tab21,id_pit,amount,State income taxes,nz,filers,all,22,"$5,000,000 under $10,000,000",18054598000.0,22in21id.xls,CH31,86,CH,31 +6074,2022_tab21_id_pit_amount_nz_all,2022,tab21,id_pit,amount,State income taxes,nz,filers,all,23,"$10,000,000 or more",49442981000.0,22in21id.xls,CH32,86,CH,32 +6075,2022_tab21_id_pit_count_nz_all,2022,tab21,id_pit,count,State income taxes — number of returns,nz,filers,all,1,"All returns, total",10988927.0,22in21id.xls,CG10,85,CG,10 +6076,2022_tab21_id_pit_count_nz_all,2022,tab21,id_pit,count,State income taxes — number of returns,nz,filers,all,2,"Under $5,000",26571.0,22in21id.xls,CG11,85,CG,11 +6077,2022_tab21_id_pit_count_nz_all,2022,tab21,id_pit,count,State income taxes — number of returns,nz,filers,all,3,"$5,000 under $10,000",31007.0,22in21id.xls,CG12,85,CG,12 +6078,2022_tab21_id_pit_count_nz_all,2022,tab21,id_pit,count,State income taxes — number of returns,nz,filers,all,4,"$10,000 under $15,000",40264.0,22in21id.xls,CG13,85,CG,13 +6079,2022_tab21_id_pit_count_nz_all,2022,tab21,id_pit,count,State income taxes — number of returns,nz,filers,all,5,"$15,000 under $20,000",56624.0,22in21id.xls,CG14,85,CG,14 +6080,2022_tab21_id_pit_count_nz_all,2022,tab21,id_pit,count,State income taxes — number of returns,nz,filers,all,6,"$20,000 under $25,000",78227.0,22in21id.xls,CG15,85,CG,15 +6081,2022_tab21_id_pit_count_nz_all,2022,tab21,id_pit,count,State income taxes — number of returns,nz,filers,all,7,"$25,000 under $30,000",112058.0,22in21id.xls,CG16,85,CG,16 +6082,2022_tab21_id_pit_count_nz_all,2022,tab21,id_pit,count,State income taxes — number of returns,nz,filers,all,8,"$30,000 under $35,000",102258.0,22in21id.xls,CG17,85,CG,17 +6083,2022_tab21_id_pit_count_nz_all,2022,tab21,id_pit,count,State income taxes — number of returns,nz,filers,all,9,"$35,000 under $40,000",146275.0,22in21id.xls,CG18,85,CG,18 +6084,2022_tab21_id_pit_count_nz_all,2022,tab21,id_pit,count,State income taxes — number of returns,nz,filers,all,10,"$40,000 under $45,000",143845.0,22in21id.xls,CG19,85,CG,19 +6085,2022_tab21_id_pit_count_nz_all,2022,tab21,id_pit,count,State income taxes — number of returns,nz,filers,all,11,"$45,000 under $50,000",175834.0,22in21id.xls,CG20,85,CG,20 +6086,2022_tab21_id_pit_count_nz_all,2022,tab21,id_pit,count,State income taxes — number of returns,nz,filers,all,12,"$50,000 under $55,000",223652.0,22in21id.xls,CG21,85,CG,21 +6087,2022_tab21_id_pit_count_nz_all,2022,tab21,id_pit,count,State income taxes — number of returns,nz,filers,all,13,"$55,000 under $60,000",244331.0,22in21id.xls,CG22,85,CG,22 +6088,2022_tab21_id_pit_count_nz_all,2022,tab21,id_pit,count,State income taxes — number of returns,nz,filers,all,14,"$60,000 under $75,000",785403.0,22in21id.xls,CG23,85,CG,23 +6089,2022_tab21_id_pit_count_nz_all,2022,tab21,id_pit,count,State income taxes — number of returns,nz,filers,all,15,"$75,000 under $100,000",1428810.0,22in21id.xls,CG24,85,CG,24 +6090,2022_tab21_id_pit_count_nz_all,2022,tab21,id_pit,count,State income taxes — number of returns,nz,filers,all,16,"$100,000 under $200,000",3673771.0,22in21id.xls,CG25,85,CG,25 +6091,2022_tab21_id_pit_count_nz_all,2022,tab21,id_pit,count,State income taxes — number of returns,nz,filers,all,17,"$200,000 under $500,000",2587766.0,22in21id.xls,CG26,85,CG,26 +6092,2022_tab21_id_pit_count_nz_all,2022,tab21,id_pit,count,State income taxes — number of returns,nz,filers,all,18,"$500,000 under $1,000,000",693906.0,22in21id.xls,CG27,85,CG,27 +6093,2022_tab21_id_pit_count_nz_all,2022,tab21,id_pit,count,State income taxes — number of returns,nz,filers,all,19,"$1,000,000 under $1,500,000",178881.0,22in21id.xls,CG28,85,CG,28 +6094,2022_tab21_id_pit_count_nz_all,2022,tab21,id_pit,count,State income taxes — number of returns,nz,filers,all,20,"$1,500,000 under $2,000,000",78538.0,22in21id.xls,CG29,85,CG,29 +6095,2022_tab21_id_pit_count_nz_all,2022,tab21,id_pit,count,State income taxes — number of returns,nz,filers,all,21,"$2,000,000 under $5,000,000",121487.0,22in21id.xls,CG30,85,CG,30 +6096,2022_tab21_id_pit_count_nz_all,2022,tab21,id_pit,count,State income taxes — number of returns,nz,filers,all,22,"$5,000,000 under $10,000,000",34565.0,22in21id.xls,CG31,85,CG,31 +6097,2022_tab21_id_pit_count_nz_all,2022,tab21,id_pit,count,State income taxes — number of returns,nz,filers,all,23,"$10,000,000 or more",24856.0,22in21id.xls,CG32,85,CG,32 +6098,2022_tab21_id_pitgst_amount_nz_all,2022,tab21,id_pitgst,amount,State income or sales taxes combined (2021+),nz,filers,all,1,"All returns, total",285855252000.0,22in21id.xls,CF10,84,CF,10 +6099,2022_tab21_id_pitgst_amount_nz_all,2022,tab21,id_pitgst,amount,State income or sales taxes combined (2021+),nz,filers,all,2,"Under $5,000",92845000.0,22in21id.xls,CF11,84,CF,11 +6100,2022_tab21_id_pitgst_amount_nz_all,2022,tab21,id_pitgst,amount,State income or sales taxes combined (2021+),nz,filers,all,3,"$5,000 under $10,000",158486000.0,22in21id.xls,CF12,84,CF,12 +6101,2022_tab21_id_pitgst_amount_nz_all,2022,tab21,id_pitgst,amount,State income or sales taxes combined (2021+),nz,filers,all,4,"$10,000 under $15,000",123940000.0,22in21id.xls,CF13,84,CF,13 +6102,2022_tab21_id_pitgst_amount_nz_all,2022,tab21,id_pitgst,amount,State income or sales taxes combined (2021+),nz,filers,all,5,"$15,000 under $20,000",223526000.0,22in21id.xls,CF14,84,CF,14 +6103,2022_tab21_id_pitgst_amount_nz_all,2022,tab21,id_pitgst,amount,State income or sales taxes combined (2021+),nz,filers,all,6,"$20,000 under $25,000",357961000.0,22in21id.xls,CF15,84,CF,15 +6104,2022_tab21_id_pitgst_amount_nz_all,2022,tab21,id_pitgst,amount,State income or sales taxes combined (2021+),nz,filers,all,7,"$25,000 under $30,000",400240000.0,22in21id.xls,CF16,84,CF,16 +6105,2022_tab21_id_pitgst_amount_nz_all,2022,tab21,id_pitgst,amount,State income or sales taxes combined (2021+),nz,filers,all,8,"$30,000 under $35,000",372081000.0,22in21id.xls,CF17,84,CF,17 +6106,2022_tab21_id_pitgst_amount_nz_all,2022,tab21,id_pitgst,amount,State income or sales taxes combined (2021+),nz,filers,all,9,"$35,000 under $40,000",696402000.0,22in21id.xls,CF18,84,CF,18 +6107,2022_tab21_id_pitgst_amount_nz_all,2022,tab21,id_pitgst,amount,State income or sales taxes combined (2021+),nz,filers,all,10,"$40,000 under $45,000",595422000.0,22in21id.xls,CF19,84,CF,19 +6108,2022_tab21_id_pitgst_amount_nz_all,2022,tab21,id_pitgst,amount,State income or sales taxes combined (2021+),nz,filers,all,11,"$45,000 under $50,000",634387000.0,22in21id.xls,CF20,84,CF,20 +6109,2022_tab21_id_pitgst_amount_nz_all,2022,tab21,id_pitgst,amount,State income or sales taxes combined (2021+),nz,filers,all,12,"$50,000 under $55,000",873257000.0,22in21id.xls,CF21,84,CF,21 +6110,2022_tab21_id_pitgst_amount_nz_all,2022,tab21,id_pitgst,amount,State income or sales taxes combined (2021+),nz,filers,all,13,"$55,000 under $60,000",877681000.0,22in21id.xls,CF22,84,CF,22 +6111,2022_tab21_id_pitgst_amount_nz_all,2022,tab21,id_pitgst,amount,State income or sales taxes combined (2021+),nz,filers,all,14,"$60,000 under $75,000",3755315000.0,22in21id.xls,CF23,84,CF,23 +6112,2022_tab21_id_pitgst_amount_nz_all,2022,tab21,id_pitgst,amount,State income or sales taxes combined (2021+),nz,filers,all,15,"$75,000 under $100,000",8028368000.0,22in21id.xls,CF24,84,CF,24 +6113,2022_tab21_id_pitgst_amount_nz_all,2022,tab21,id_pitgst,amount,State income or sales taxes combined (2021+),nz,filers,all,16,"$100,000 under $200,000",32318752000.0,22in21id.xls,CF25,84,CF,25 +6114,2022_tab21_id_pitgst_amount_nz_all,2022,tab21,id_pitgst,amount,State income or sales taxes combined (2021+),nz,filers,all,17,"$200,000 under $500,000",54965415000.0,22in21id.xls,CF26,84,CF,26 +6115,2022_tab21_id_pitgst_amount_nz_all,2022,tab21,id_pitgst,amount,State income or sales taxes combined (2021+),nz,filers,all,18,"$500,000 under $1,000,000",55655180000.0,22in21id.xls,CF27,84,CF,27 +6116,2022_tab21_id_pitgst_amount_nz_all,2022,tab21,id_pitgst,amount,State income or sales taxes combined (2021+),nz,filers,all,19,"$1,000,000 under $1,500,000",17567490000.0,22in21id.xls,CF28,84,CF,28 +6117,2022_tab21_id_pitgst_amount_nz_all,2022,tab21,id_pitgst,amount,State income or sales taxes combined (2021+),nz,filers,all,20,"$1,500,000 under $2,000,000",10926197000.0,22in21id.xls,CF29,84,CF,29 +6118,2022_tab21_id_pitgst_amount_nz_all,2022,tab21,id_pitgst,amount,State income or sales taxes combined (2021+),nz,filers,all,21,"$2,000,000 under $5,000,000",29410023000.0,22in21id.xls,CF30,84,CF,30 +6119,2022_tab21_id_pitgst_amount_nz_all,2022,tab21,id_pitgst,amount,State income or sales taxes combined (2021+),nz,filers,all,22,"$5,000,000 under $10,000,000",18121000000.0,22in21id.xls,CF31,84,CF,31 +6120,2022_tab21_id_pitgst_amount_nz_all,2022,tab21,id_pitgst,amount,State income or sales taxes combined (2021+),nz,filers,all,23,"$10,000,000 or more",49701285000.0,22in21id.xls,CF32,84,CF,32 +6121,2022_tab21_id_pitgst_count_nz_all,2022,tab21,id_pitgst,count,State income or sales taxes combined — number of returns (2021+),nz,filers,all,1,"All returns, total",14642239.0,22in21id.xls,CE10,83,CE,10 +6122,2022_tab21_id_pitgst_count_nz_all,2022,tab21,id_pitgst,count,State income or sales taxes combined — number of returns (2021+),nz,filers,all,2,"Under $5,000",74988.0,22in21id.xls,CE11,83,CE,11 +6123,2022_tab21_id_pitgst_count_nz_all,2022,tab21,id_pitgst,count,State income or sales taxes combined — number of returns (2021+),nz,filers,all,3,"$5,000 under $10,000",91913.0,22in21id.xls,CE12,83,CE,12 +6124,2022_tab21_id_pitgst_count_nz_all,2022,tab21,id_pitgst,count,State income or sales taxes combined — number of returns (2021+),nz,filers,all,4,"$10,000 under $15,000",102922.0,22in21id.xls,CE13,83,CE,13 +6125,2022_tab21_id_pitgst_count_nz_all,2022,tab21,id_pitgst,count,State income or sales taxes combined — number of returns (2021+),nz,filers,all,5,"$15,000 under $20,000",138381.0,22in21id.xls,CE14,83,CE,14 +6126,2022_tab21_id_pitgst_count_nz_all,2022,tab21,id_pitgst,count,State income or sales taxes combined — number of returns (2021+),nz,filers,all,6,"$20,000 under $25,000",159208.0,22in21id.xls,CE15,83,CE,15 +6127,2022_tab21_id_pitgst_count_nz_all,2022,tab21,id_pitgst,count,State income or sales taxes combined — number of returns (2021+),nz,filers,all,7,"$25,000 under $30,000",181096.0,22in21id.xls,CE16,83,CE,16 +6128,2022_tab21_id_pitgst_count_nz_all,2022,tab21,id_pitgst,count,State income or sales taxes combined — number of returns (2021+),nz,filers,all,8,"$30,000 under $35,000",193028.0,22in21id.xls,CE17,83,CE,17 +6129,2022_tab21_id_pitgst_count_nz_all,2022,tab21,id_pitgst,count,State income or sales taxes combined — number of returns (2021+),nz,filers,all,9,"$35,000 under $40,000",256193.0,22in21id.xls,CE18,83,CE,18 +6130,2022_tab21_id_pitgst_count_nz_all,2022,tab21,id_pitgst,count,State income or sales taxes combined — number of returns (2021+),nz,filers,all,10,"$40,000 under $45,000",232414.0,22in21id.xls,CE19,83,CE,19 +6131,2022_tab21_id_pitgst_count_nz_all,2022,tab21,id_pitgst,count,State income or sales taxes combined — number of returns (2021+),nz,filers,all,11,"$45,000 under $50,000",281486.0,22in21id.xls,CE20,83,CE,20 +6132,2022_tab21_id_pitgst_count_nz_all,2022,tab21,id_pitgst,count,State income or sales taxes combined — number of returns (2021+),nz,filers,all,12,"$50,000 under $55,000",332788.0,22in21id.xls,CE21,83,CE,21 +6133,2022_tab21_id_pitgst_count_nz_all,2022,tab21,id_pitgst,count,State income or sales taxes combined — number of returns (2021+),nz,filers,all,13,"$55,000 under $60,000",347161.0,22in21id.xls,CE22,83,CE,22 +6134,2022_tab21_id_pitgst_count_nz_all,2022,tab21,id_pitgst,count,State income or sales taxes combined — number of returns (2021+),nz,filers,all,14,"$60,000 under $75,000",1119510.0,22in21id.xls,CE23,83,CE,23 +6135,2022_tab21_id_pitgst_count_nz_all,2022,tab21,id_pitgst,count,State income or sales taxes combined — number of returns (2021+),nz,filers,all,15,"$75,000 under $100,000",1832471.0,22in21id.xls,CE24,83,CE,24 +6136,2022_tab21_id_pitgst_count_nz_all,2022,tab21,id_pitgst,count,State income or sales taxes combined — number of returns (2021+),nz,filers,all,16,"$100,000 under $200,000",4605804.0,22in21id.xls,CE25,83,CE,25 +6137,2022_tab21_id_pitgst_count_nz_all,2022,tab21,id_pitgst,count,State income or sales taxes combined — number of returns (2021+),nz,filers,all,17,"$200,000 under $500,000",3256907.0,22in21id.xls,CE26,83,CE,26 +6138,2022_tab21_id_pitgst_count_nz_all,2022,tab21,id_pitgst,count,State income or sales taxes combined — number of returns (2021+),nz,filers,all,18,"$500,000 under $1,000,000",885494.0,22in21id.xls,CE27,83,CE,27 +6139,2022_tab21_id_pitgst_count_nz_all,2022,tab21,id_pitgst,count,State income or sales taxes combined — number of returns (2021+),nz,filers,all,19,"$1,000,000 under $1,500,000",227065.0,22in21id.xls,CE28,83,CE,28 +6140,2022_tab21_id_pitgst_count_nz_all,2022,tab21,id_pitgst,count,State income or sales taxes combined — number of returns (2021+),nz,filers,all,20,"$1,500,000 under $2,000,000",100173.0,22in21id.xls,CE29,83,CE,29 +6141,2022_tab21_id_pitgst_count_nz_all,2022,tab21,id_pitgst,count,State income or sales taxes combined — number of returns (2021+),nz,filers,all,21,"$2,000,000 under $5,000,000",151311.0,22in21id.xls,CE30,83,CE,30 +6142,2022_tab21_id_pitgst_count_nz_all,2022,tab21,id_pitgst,count,State income or sales taxes combined — number of returns (2021+),nz,filers,all,22,"$5,000,000 under $10,000,000",42322.0,22in21id.xls,CE31,83,CE,31 +6143,2022_tab21_id_pitgst_count_nz_all,2022,tab21,id_pitgst,count,State income or sales taxes combined — number of returns (2021+),nz,filers,all,23,"$10,000,000 or more",29603.0,22in21id.xls,CE32,83,CE,32 +6144,2022_tab21_id_retax_amount_nz_all,2022,tab21,id_retax,amount,Real estate taxes,nz,filers,all,1,"All returns, total",106876443000.0,22in21id.xls,CL10,90,CL,10 +6145,2022_tab21_id_retax_amount_nz_all,2022,tab21,id_retax,amount,Real estate taxes,nz,filers,all,2,"Under $5,000",367851000.0,22in21id.xls,CL11,90,CL,11 +6146,2022_tab21_id_retax_amount_nz_all,2022,tab21,id_retax,amount,Real estate taxes,nz,filers,all,3,"$5,000 under $10,000",351819000.0,22in21id.xls,CL12,90,CL,12 +6147,2022_tab21_id_retax_amount_nz_all,2022,tab21,id_retax,amount,Real estate taxes,nz,filers,all,4,"$10,000 under $15,000",411469000.0,22in21id.xls,CL13,90,CL,13 +6148,2022_tab21_id_retax_amount_nz_all,2022,tab21,id_retax,amount,Real estate taxes,nz,filers,all,5,"$15,000 under $20,000",554905000.0,22in21id.xls,CL14,90,CL,14 +6149,2022_tab21_id_retax_amount_nz_all,2022,tab21,id_retax,amount,Real estate taxes,nz,filers,all,6,"$20,000 under $25,000",740767000.0,22in21id.xls,CL15,90,CL,15 +6150,2022_tab21_id_retax_amount_nz_all,2022,tab21,id_retax,amount,Real estate taxes,nz,filers,all,7,"$25,000 under $30,000",729232000.0,22in21id.xls,CL16,90,CL,16 +6151,2022_tab21_id_retax_amount_nz_all,2022,tab21,id_retax,amount,Real estate taxes,nz,filers,all,8,"$30,000 under $35,000",661642000.0,22in21id.xls,CL17,90,CL,17 +6152,2022_tab21_id_retax_amount_nz_all,2022,tab21,id_retax,amount,Real estate taxes,nz,filers,all,9,"$35,000 under $40,000",983136000.0,22in21id.xls,CL18,90,CL,18 +6153,2022_tab21_id_retax_amount_nz_all,2022,tab21,id_retax,amount,Real estate taxes,nz,filers,all,10,"$40,000 under $45,000",878695000.0,22in21id.xls,CL19,90,CL,19 +6154,2022_tab21_id_retax_amount_nz_all,2022,tab21,id_retax,amount,Real estate taxes,nz,filers,all,11,"$45,000 under $50,000",1171434000.0,22in21id.xls,CL20,90,CL,20 +6155,2022_tab21_id_retax_amount_nz_all,2022,tab21,id_retax,amount,Real estate taxes,nz,filers,all,12,"$50,000 under $55,000",1282934000.0,22in21id.xls,CL21,90,CL,21 +6156,2022_tab21_id_retax_amount_nz_all,2022,tab21,id_retax,amount,Real estate taxes,nz,filers,all,13,"$55,000 under $60,000",1354048000.0,22in21id.xls,CL22,90,CL,22 +6157,2022_tab21_id_retax_amount_nz_all,2022,tab21,id_retax,amount,Real estate taxes,nz,filers,all,14,"$60,000 under $75,000",4893705000.0,22in21id.xls,CL23,90,CL,23 +6158,2022_tab21_id_retax_amount_nz_all,2022,tab21,id_retax,amount,Real estate taxes,nz,filers,all,15,"$75,000 under $100,000",9182550000.0,22in21id.xls,CL24,90,CL,24 +6159,2022_tab21_id_retax_amount_nz_all,2022,tab21,id_retax,amount,Real estate taxes,nz,filers,all,16,"$100,000 under $200,000",26839414000.0,22in21id.xls,CL25,90,CL,25 +6160,2022_tab21_id_retax_amount_nz_all,2022,tab21,id_retax,amount,Real estate taxes,nz,filers,all,17,"$200,000 under $500,000",29283902000.0,22in21id.xls,CL26,90,CL,26 +6161,2022_tab21_id_retax_amount_nz_all,2022,tab21,id_retax,amount,Real estate taxes,nz,filers,all,18,"$500,000 under $1,000,000",12750661000.0,22in21id.xls,CL27,90,CL,27 +6162,2022_tab21_id_retax_amount_nz_all,2022,tab21,id_retax,amount,Real estate taxes,nz,filers,all,19,"$1,000,000 under $1,500,000",4208736000.0,22in21id.xls,CL28,90,CL,28 +6163,2022_tab21_id_retax_amount_nz_all,2022,tab21,id_retax,amount,Real estate taxes,nz,filers,all,20,"$1,500,000 under $2,000,000",2182570000.0,22in21id.xls,CL29,90,CL,29 +6164,2022_tab21_id_retax_amount_nz_all,2022,tab21,id_retax,amount,Real estate taxes,nz,filers,all,21,"$2,000,000 under $5,000,000",4206821000.0,22in21id.xls,CL30,90,CL,30 +6165,2022_tab21_id_retax_amount_nz_all,2022,tab21,id_retax,amount,Real estate taxes,nz,filers,all,22,"$5,000,000 under $10,000,000",1651157000.0,22in21id.xls,CL31,90,CL,31 +6166,2022_tab21_id_retax_amount_nz_all,2022,tab21,id_retax,amount,Real estate taxes,nz,filers,all,23,"$10,000,000 or more",2188994000.0,22in21id.xls,CL32,90,CL,32 +6167,2022_tab21_id_retax_count_nz_all,2022,tab21,id_retax,count,Real estate taxes — number of returns,nz,filers,all,1,"All returns, total",12922862.0,22in21id.xls,CK10,89,CK,10 +6168,2022_tab21_id_retax_count_nz_all,2022,tab21,id_retax,count,Real estate taxes — number of returns,nz,filers,all,2,"Under $5,000",58876.0,22in21id.xls,CK11,89,CK,11 +6169,2022_tab21_id_retax_count_nz_all,2022,tab21,id_retax,count,Real estate taxes — number of returns,nz,filers,all,3,"$5,000 under $10,000",63089.0,22in21id.xls,CK12,89,CK,12 +6170,2022_tab21_id_retax_count_nz_all,2022,tab21,id_retax,count,Real estate taxes — number of returns,nz,filers,all,4,"$10,000 under $15,000",75383.0,22in21id.xls,CK13,89,CK,13 +6171,2022_tab21_id_retax_count_nz_all,2022,tab21,id_retax,count,Real estate taxes — number of returns,nz,filers,all,5,"$15,000 under $20,000",94124.0,22in21id.xls,CK14,89,CK,14 +6172,2022_tab21_id_retax_count_nz_all,2022,tab21,id_retax,count,Real estate taxes — number of returns,nz,filers,all,6,"$20,000 under $25,000",118916.0,22in21id.xls,CK15,89,CK,15 +6173,2022_tab21_id_retax_count_nz_all,2022,tab21,id_retax,count,Real estate taxes — number of returns,nz,filers,all,7,"$25,000 under $30,000",123859.0,22in21id.xls,CK16,89,CK,16 +6174,2022_tab21_id_retax_count_nz_all,2022,tab21,id_retax,count,Real estate taxes — number of returns,nz,filers,all,8,"$30,000 under $35,000",135113.0,22in21id.xls,CK17,89,CK,17 +6175,2022_tab21_id_retax_count_nz_all,2022,tab21,id_retax,count,Real estate taxes — number of returns,nz,filers,all,9,"$35,000 under $40,000",181762.0,22in21id.xls,CK18,89,CK,18 +6176,2022_tab21_id_retax_count_nz_all,2022,tab21,id_retax,count,Real estate taxes — number of returns,nz,filers,all,10,"$40,000 under $45,000",171788.0,22in21id.xls,CK19,89,CK,19 +6177,2022_tab21_id_retax_count_nz_all,2022,tab21,id_retax,count,Real estate taxes — number of returns,nz,filers,all,11,"$45,000 under $50,000",220013.0,22in21id.xls,CK20,89,CK,20 +6178,2022_tab21_id_retax_count_nz_all,2022,tab21,id_retax,count,Real estate taxes — number of returns,nz,filers,all,12,"$50,000 under $55,000",244422.0,22in21id.xls,CK21,89,CK,21 +6179,2022_tab21_id_retax_count_nz_all,2022,tab21,id_retax,count,Real estate taxes — number of returns,nz,filers,all,13,"$55,000 under $60,000",266461.0,22in21id.xls,CK22,89,CK,22 +6180,2022_tab21_id_retax_count_nz_all,2022,tab21,id_retax,count,Real estate taxes — number of returns,nz,filers,all,14,"$60,000 under $75,000",958968.0,22in21id.xls,CK23,89,CK,23 +6181,2022_tab21_id_retax_count_nz_all,2022,tab21,id_retax,count,Real estate taxes — number of returns,nz,filers,all,15,"$75,000 under $100,000",1632361.0,22in21id.xls,CK24,89,CK,24 +6182,2022_tab21_id_retax_count_nz_all,2022,tab21,id_retax,count,Real estate taxes — number of returns,nz,filers,all,16,"$100,000 under $200,000",4208040.0,22in21id.xls,CK25,89,CK,25 +6183,2022_tab21_id_retax_count_nz_all,2022,tab21,id_retax,count,Real estate taxes — number of returns,nz,filers,all,17,"$200,000 under $500,000",3046358.0,22in21id.xls,CK26,89,CK,26 +6184,2022_tab21_id_retax_count_nz_all,2022,tab21,id_retax,count,Real estate taxes — number of returns,nz,filers,all,18,"$500,000 under $1,000,000",826870.0,22in21id.xls,CK27,89,CK,27 +6185,2022_tab21_id_retax_count_nz_all,2022,tab21,id_retax,count,Real estate taxes — number of returns,nz,filers,all,19,"$1,000,000 under $1,500,000",208376.0,22in21id.xls,CK28,89,CK,28 +6186,2022_tab21_id_retax_count_nz_all,2022,tab21,id_retax,count,Real estate taxes — number of returns,nz,filers,all,20,"$1,500,000 under $2,000,000",90531.0,22in21id.xls,CK29,89,CK,29 +6187,2022_tab21_id_retax_count_nz_all,2022,tab21,id_retax,count,Real estate taxes — number of returns,nz,filers,all,21,"$2,000,000 under $5,000,000",134974.0,22in21id.xls,CK30,89,CK,30 +6188,2022_tab21_id_retax_count_nz_all,2022,tab21,id_retax,count,Real estate taxes — number of returns,nz,filers,all,22,"$5,000,000 under $10,000,000",36961.0,22in21id.xls,CK31,89,CK,31 +6189,2022_tab21_id_retax_count_nz_all,2022,tab21,id_retax,count,Real estate taxes — number of returns,nz,filers,all,23,"$10,000,000 or more",25619.0,22in21id.xls,CK32,89,CK,32 +6190,2022_tab21_id_salt_amount_nz_all,2022,tab21,id_salt,amount,State and local taxes (SALT),nz,filers,all,1,"All returns, total",396877843000.0,22in21id.xls,CD10,82,CD,10 +6191,2022_tab21_id_salt_amount_nz_all,2022,tab21,id_salt,amount,State and local taxes (SALT),nz,filers,all,2,"Under $5,000",468533000.0,22in21id.xls,CD11,82,CD,11 +6192,2022_tab21_id_salt_amount_nz_all,2022,tab21,id_salt,amount,State and local taxes (SALT),nz,filers,all,3,"$5,000 under $10,000",516993000.0,22in21id.xls,CD12,82,CD,12 +6193,2022_tab21_id_salt_amount_nz_all,2022,tab21,id_salt,amount,State and local taxes (SALT),nz,filers,all,4,"$10,000 under $15,000",544457000.0,22in21id.xls,CD13,82,CD,13 +6194,2022_tab21_id_salt_amount_nz_all,2022,tab21,id_salt,amount,State and local taxes (SALT),nz,filers,all,5,"$15,000 under $20,000",812445000.0,22in21id.xls,CD14,82,CD,14 +6195,2022_tab21_id_salt_amount_nz_all,2022,tab21,id_salt,amount,State and local taxes (SALT),nz,filers,all,6,"$20,000 under $25,000",1145069000.0,22in21id.xls,CD15,82,CD,15 +6196,2022_tab21_id_salt_amount_nz_all,2022,tab21,id_salt,amount,State and local taxes (SALT),nz,filers,all,7,"$25,000 under $30,000",1179947000.0,22in21id.xls,CD16,82,CD,16 +6197,2022_tab21_id_salt_amount_nz_all,2022,tab21,id_salt,amount,State and local taxes (SALT),nz,filers,all,8,"$30,000 under $35,000",1094074000.0,22in21id.xls,CD17,82,CD,17 +6198,2022_tab21_id_salt_amount_nz_all,2022,tab21,id_salt,amount,State and local taxes (SALT),nz,filers,all,9,"$35,000 under $40,000",1762967000.0,22in21id.xls,CD18,82,CD,18 +6199,2022_tab21_id_salt_amount_nz_all,2022,tab21,id_salt,amount,State and local taxes (SALT),nz,filers,all,10,"$40,000 under $45,000",1557427000.0,22in21id.xls,CD19,82,CD,19 +6200,2022_tab21_id_salt_amount_nz_all,2022,tab21,id_salt,amount,State and local taxes (SALT),nz,filers,all,11,"$45,000 under $50,000",1897470000.0,22in21id.xls,CD20,82,CD,20 +6201,2022_tab21_id_salt_amount_nz_all,2022,tab21,id_salt,amount,State and local taxes (SALT),nz,filers,all,12,"$50,000 under $55,000",2273534000.0,22in21id.xls,CD21,82,CD,21 +6202,2022_tab21_id_salt_amount_nz_all,2022,tab21,id_salt,amount,State and local taxes (SALT),nz,filers,all,13,"$55,000 under $60,000",2391655000.0,22in21id.xls,CD22,82,CD,22 +6203,2022_tab21_id_salt_amount_nz_all,2022,tab21,id_salt,amount,State and local taxes (SALT),nz,filers,all,14,"$60,000 under $75,000",8964110000.0,22in21id.xls,CD23,82,CD,23 +6204,2022_tab21_id_salt_amount_nz_all,2022,tab21,id_salt,amount,State and local taxes (SALT),nz,filers,all,15,"$75,000 under $100,000",17717861000.0,22in21id.xls,CD24,82,CD,24 +6205,2022_tab21_id_salt_amount_nz_all,2022,tab21,id_salt,amount,State and local taxes (SALT),nz,filers,all,16,"$100,000 under $200,000",60242953000.0,22in21id.xls,CD25,82,CD,25 +6206,2022_tab21_id_salt_amount_nz_all,2022,tab21,id_salt,amount,State and local taxes (SALT),nz,filers,all,17,"$200,000 under $500,000",85223975000.0,22in21id.xls,CD26,82,CD,26 +6207,2022_tab21_id_salt_amount_nz_all,2022,tab21,id_salt,amount,State and local taxes (SALT),nz,filers,all,18,"$500,000 under $1,000,000",68703441000.0,22in21id.xls,CD27,82,CD,27 +6208,2022_tab21_id_salt_amount_nz_all,2022,tab21,id_salt,amount,State and local taxes (SALT),nz,filers,all,19,"$1,000,000 under $1,500,000",21851968000.0,22in21id.xls,CD28,82,CD,28 +6209,2022_tab21_id_salt_amount_nz_all,2022,tab21,id_salt,amount,State and local taxes (SALT),nz,filers,all,20,"$1,500,000 under $2,000,000",13145596000.0,22in21id.xls,CD29,82,CD,29 +6210,2022_tab21_id_salt_amount_nz_all,2022,tab21,id_salt,amount,State and local taxes (SALT),nz,filers,all,21,"$2,000,000 under $5,000,000",33682137000.0,22in21id.xls,CD30,82,CD,30 +6211,2022_tab21_id_salt_amount_nz_all,2022,tab21,id_salt,amount,State and local taxes (SALT),nz,filers,all,22,"$5,000,000 under $10,000,000",19793471000.0,22in21id.xls,CD31,82,CD,31 +6212,2022_tab21_id_salt_amount_nz_all,2022,tab21,id_salt,amount,State and local taxes (SALT),nz,filers,all,23,"$10,000,000 or more",51907760000.0,22in21id.xls,CD32,82,CD,32 +6213,2022_tab21_id_salt_count_nz_all,2022,tab21,id_salt,count,State and local taxes (SALT) — number of returns,nz,filers,all,1,"All returns, total",15033846.0,22in21id.xls,CC10,81,CC,10 +6214,2022_tab21_id_salt_count_nz_all,2022,tab21,id_salt,count,State and local taxes (SALT) — number of returns,nz,filers,all,2,"Under $5,000",92021.0,22in21id.xls,CC11,81,CC,11 +6215,2022_tab21_id_salt_count_nz_all,2022,tab21,id_salt,count,State and local taxes (SALT) — number of returns,nz,filers,all,3,"$5,000 under $10,000",98619.0,22in21id.xls,CC12,81,CC,12 +6216,2022_tab21_id_salt_count_nz_all,2022,tab21,id_salt,count,State and local taxes (SALT) — number of returns,nz,filers,all,4,"$10,000 under $15,000",110403.0,22in21id.xls,CC13,81,CC,13 +6217,2022_tab21_id_salt_count_nz_all,2022,tab21,id_salt,count,State and local taxes (SALT) — number of returns,nz,filers,all,5,"$15,000 under $20,000",148531.0,22in21id.xls,CC14,81,CC,14 +6218,2022_tab21_id_salt_count_nz_all,2022,tab21,id_salt,count,State and local taxes (SALT) — number of returns,nz,filers,all,6,"$20,000 under $25,000",176103.0,22in21id.xls,CC15,81,CC,15 +6219,2022_tab21_id_salt_count_nz_all,2022,tab21,id_salt,count,State and local taxes (SALT) — number of returns,nz,filers,all,7,"$25,000 under $30,000",191024.0,22in21id.xls,CC16,81,CC,16 +6220,2022_tab21_id_salt_count_nz_all,2022,tab21,id_salt,count,State and local taxes (SALT) — number of returns,nz,filers,all,8,"$30,000 under $35,000",202461.0,22in21id.xls,CC17,81,CC,17 +6221,2022_tab21_id_salt_count_nz_all,2022,tab21,id_salt,count,State and local taxes (SALT) — number of returns,nz,filers,all,9,"$35,000 under $40,000",262300.0,22in21id.xls,CC18,81,CC,18 +6222,2022_tab21_id_salt_count_nz_all,2022,tab21,id_salt,count,State and local taxes (SALT) — number of returns,nz,filers,all,10,"$40,000 under $45,000",248895.0,22in21id.xls,CC19,81,CC,19 +6223,2022_tab21_id_salt_count_nz_all,2022,tab21,id_salt,count,State and local taxes (SALT) — number of returns,nz,filers,all,11,"$45,000 under $50,000",299706.0,22in21id.xls,CC20,81,CC,20 +6224,2022_tab21_id_salt_count_nz_all,2022,tab21,id_salt,count,State and local taxes (SALT) — number of returns,nz,filers,all,12,"$50,000 under $55,000",337088.0,22in21id.xls,CC21,81,CC,21 +6225,2022_tab21_id_salt_count_nz_all,2022,tab21,id_salt,count,State and local taxes (SALT) — number of returns,nz,filers,all,13,"$55,000 under $60,000",352640.0,22in21id.xls,CC22,81,CC,22 +6226,2022_tab21_id_salt_count_nz_all,2022,tab21,id_salt,count,State and local taxes (SALT) — number of returns,nz,filers,all,14,"$60,000 under $75,000",1160243.0,22in21id.xls,CC23,81,CC,23 +6227,2022_tab21_id_salt_count_nz_all,2022,tab21,id_salt,count,State and local taxes (SALT) — number of returns,nz,filers,all,15,"$75,000 under $100,000",1891180.0,22in21id.xls,CC24,81,CC,24 +6228,2022_tab21_id_salt_count_nz_all,2022,tab21,id_salt,count,State and local taxes (SALT) — number of returns,nz,filers,all,16,"$100,000 under $200,000",4692845.0,22in21id.xls,CC25,81,CC,25 +6229,2022_tab21_id_salt_count_nz_all,2022,tab21,id_salt,count,State and local taxes (SALT) — number of returns,nz,filers,all,17,"$200,000 under $500,000",3314681.0,22in21id.xls,CC26,81,CC,26 +6230,2022_tab21_id_salt_count_nz_all,2022,tab21,id_salt,count,State and local taxes (SALT) — number of returns,nz,filers,all,18,"$500,000 under $1,000,000",898216.0,22in21id.xls,CC27,81,CC,27 +6231,2022_tab21_id_salt_count_nz_all,2022,tab21,id_salt,count,State and local taxes (SALT) — number of returns,nz,filers,all,19,"$1,000,000 under $1,500,000",229656.0,22in21id.xls,CC28,81,CC,28 +6232,2022_tab21_id_salt_count_nz_all,2022,tab21,id_salt,count,State and local taxes (SALT) — number of returns,nz,filers,all,20,"$1,500,000 under $2,000,000",101270.0,22in21id.xls,CC29,81,CC,29 +6233,2022_tab21_id_salt_count_nz_all,2022,tab21,id_salt,count,State and local taxes (SALT) — number of returns,nz,filers,all,21,"$2,000,000 under $5,000,000",153186.0,22in21id.xls,CC30,81,CC,30 +6234,2022_tab21_id_salt_count_nz_all,2022,tab21,id_salt,count,State and local taxes (SALT) — number of returns,nz,filers,all,22,"$5,000,000 under $10,000,000",42813.0,22in21id.xls,CC31,81,CC,31 +6235,2022_tab21_id_salt_count_nz_all,2022,tab21,id_salt,count,State and local taxes (SALT) — number of returns,nz,filers,all,23,"$10,000,000 or more",29965.0,22in21id.xls,CC32,81,CC,32 +6236,2022_tab21_id_taxpaid_amount_nz_all,2022,tab21,id_taxpaid,amount,Taxes paid deduction,nz,filers,all,1,"All returns, total",125205903000.0,22in21id.xls,CB10,80,CB,10 +6237,2022_tab21_id_taxpaid_amount_nz_all,2022,tab21,id_taxpaid,amount,Taxes paid deduction,nz,filers,all,2,"Under $5,000",409873000.0,22in21id.xls,CB11,80,CB,11 +6238,2022_tab21_id_taxpaid_amount_nz_all,2022,tab21,id_taxpaid,amount,Taxes paid deduction,nz,filers,all,3,"$5,000 under $10,000",424919000.0,22in21id.xls,CB12,80,CB,12 +6239,2022_tab21_id_taxpaid_amount_nz_all,2022,tab21,id_taxpaid,amount,Taxes paid deduction,nz,filers,all,4,"$10,000 under $15,000",507176000.0,22in21id.xls,CB13,80,CB,13 +6240,2022_tab21_id_taxpaid_amount_nz_all,2022,tab21,id_taxpaid,amount,Taxes paid deduction,nz,filers,all,5,"$15,000 under $20,000",693372000.0,22in21id.xls,CB14,80,CB,14 +6241,2022_tab21_id_taxpaid_amount_nz_all,2022,tab21,id_taxpaid,amount,Taxes paid deduction,nz,filers,all,6,"$20,000 under $25,000",905356000.0,22in21id.xls,CB15,80,CB,15 +6242,2022_tab21_id_taxpaid_amount_nz_all,2022,tab21,id_taxpaid,amount,Taxes paid deduction,nz,filers,all,7,"$25,000 under $30,000",993800000.0,22in21id.xls,CB16,80,CB,16 +6243,2022_tab21_id_taxpaid_amount_nz_all,2022,tab21,id_taxpaid,amount,Taxes paid deduction,nz,filers,all,8,"$30,000 under $35,000",1016026000.0,22in21id.xls,CB17,80,CB,17 +6244,2022_tab21_id_taxpaid_amount_nz_all,2022,tab21,id_taxpaid,amount,Taxes paid deduction,nz,filers,all,9,"$35,000 under $40,000",1566235000.0,22in21id.xls,CB18,80,CB,18 +6245,2022_tab21_id_taxpaid_amount_nz_all,2022,tab21,id_taxpaid,amount,Taxes paid deduction,nz,filers,all,10,"$40,000 under $45,000",1405499000.0,22in21id.xls,CB19,80,CB,19 +6246,2022_tab21_id_taxpaid_amount_nz_all,2022,tab21,id_taxpaid,amount,Taxes paid deduction,nz,filers,all,11,"$45,000 under $50,000",1746619000.0,22in21id.xls,CB20,80,CB,20 +6247,2022_tab21_id_taxpaid_amount_nz_all,2022,tab21,id_taxpaid,amount,Taxes paid deduction,nz,filers,all,12,"$50,000 under $55,000",2042133000.0,22in21id.xls,CB21,80,CB,21 +6248,2022_tab21_id_taxpaid_amount_nz_all,2022,tab21,id_taxpaid,amount,Taxes paid deduction,nz,filers,all,13,"$55,000 under $60,000",2221807000.0,22in21id.xls,CB22,80,CB,22 +6249,2022_tab21_id_taxpaid_amount_nz_all,2022,tab21,id_taxpaid,amount,Taxes paid deduction,nz,filers,all,14,"$60,000 under $75,000",7755846000.0,22in21id.xls,CB23,80,CB,23 +6250,2022_tab21_id_taxpaid_amount_nz_all,2022,tab21,id_taxpaid,amount,Taxes paid deduction,nz,filers,all,15,"$75,000 under $100,000",14632617000.0,22in21id.xls,CB24,80,CB,24 +6251,2022_tab21_id_taxpaid_amount_nz_all,2022,tab21,id_taxpaid,amount,Taxes paid deduction,nz,filers,all,16,"$100,000 under $200,000",41594496000.0,22in21id.xls,CB25,80,CB,25 +6252,2022_tab21_id_taxpaid_amount_nz_all,2022,tab21,id_taxpaid,amount,Taxes paid deduction,nz,filers,all,17,"$200,000 under $500,000",32118348000.0,22in21id.xls,CB26,80,CB,26 +6253,2022_tab21_id_taxpaid_amount_nz_all,2022,tab21,id_taxpaid,amount,Taxes paid deduction,nz,filers,all,18,"$500,000 under $1,000,000",8914959000.0,22in21id.xls,CB27,80,CB,27 +6254,2022_tab21_id_taxpaid_amount_nz_all,2022,tab21,id_taxpaid,amount,Taxes paid deduction,nz,filers,all,19,"$1,000,000 under $1,500,000",2308379000.0,22in21id.xls,CB28,80,CB,28 +6255,2022_tab21_id_taxpaid_amount_nz_all,2022,tab21,id_taxpaid,amount,Taxes paid deduction,nz,filers,all,20,"$1,500,000 under $2,000,000",1012061000.0,22in21id.xls,CB29,80,CB,29 +6256,2022_tab21_id_taxpaid_amount_nz_all,2022,tab21,id_taxpaid,amount,Taxes paid deduction,nz,filers,all,21,"$2,000,000 under $5,000,000",1580393000.0,22in21id.xls,CB30,80,CB,30 +6257,2022_tab21_id_taxpaid_amount_nz_all,2022,tab21,id_taxpaid,amount,Taxes paid deduction,nz,filers,all,22,"$5,000,000 under $10,000,000",478695000.0,22in21id.xls,CB31,80,CB,31 +6258,2022_tab21_id_taxpaid_amount_nz_all,2022,tab21,id_taxpaid,amount,Taxes paid deduction,nz,filers,all,23,"$10,000,000 or more",877295000.0,22in21id.xls,CB32,80,CB,32 +6259,2022_tab21_id_taxpaid_count_nz_all,2022,tab21,id_taxpaid,count,Taxes paid deduction — number of returns,nz,filers,all,1,"All returns, total",15079029.0,22in21id.xls,CA10,79,CA,10 +6260,2022_tab21_id_taxpaid_count_nz_all,2022,tab21,id_taxpaid,count,Taxes paid deduction — number of returns,nz,filers,all,2,"Under $5,000",93031.0,22in21id.xls,CA11,79,CA,11 +6261,2022_tab21_id_taxpaid_count_nz_all,2022,tab21,id_taxpaid,count,Taxes paid deduction — number of returns,nz,filers,all,3,"$5,000 under $10,000",99629.0,22in21id.xls,CA12,79,CA,12 +6262,2022_tab21_id_taxpaid_count_nz_all,2022,tab21,id_taxpaid,count,Taxes paid deduction — number of returns,nz,filers,all,4,"$10,000 under $15,000",111410.0,22in21id.xls,CA13,79,CA,13 +6263,2022_tab21_id_taxpaid_count_nz_all,2022,tab21,id_taxpaid,count,Taxes paid deduction — number of returns,nz,filers,all,5,"$15,000 under $20,000",148532.0,22in21id.xls,CA14,79,CA,14 +6264,2022_tab21_id_taxpaid_count_nz_all,2022,tab21,id_taxpaid,count,Taxes paid deduction — number of returns,nz,filers,all,6,"$20,000 under $25,000",177112.0,22in21id.xls,CA15,79,CA,15 +6265,2022_tab21_id_taxpaid_count_nz_all,2022,tab21,id_taxpaid,count,Taxes paid deduction — number of returns,nz,filers,all,7,"$25,000 under $30,000",193039.0,22in21id.xls,CA16,79,CA,16 +6266,2022_tab21_id_taxpaid_count_nz_all,2022,tab21,id_taxpaid,count,Taxes paid deduction — number of returns,nz,filers,all,8,"$30,000 under $35,000",204479.0,22in21id.xls,CA17,79,CA,17 +6267,2022_tab21_id_taxpaid_count_nz_all,2022,tab21,id_taxpaid,count,Taxes paid deduction — number of returns,nz,filers,all,9,"$35,000 under $40,000",265330.0,22in21id.xls,CA18,79,CA,18 +6268,2022_tab21_id_taxpaid_count_nz_all,2022,tab21,id_taxpaid,count,Taxes paid deduction — number of returns,nz,filers,all,10,"$40,000 under $45,000",249907.0,22in21id.xls,CA19,79,CA,19 +6269,2022_tab21_id_taxpaid_count_nz_all,2022,tab21,id_taxpaid,count,Taxes paid deduction — number of returns,nz,filers,all,11,"$45,000 under $50,000",301730.0,22in21id.xls,CA20,79,CA,20 +6270,2022_tab21_id_taxpaid_count_nz_all,2022,tab21,id_taxpaid,count,Taxes paid deduction — number of returns,nz,filers,all,12,"$50,000 under $55,000",339363.0,22in21id.xls,CA21,79,CA,21 +6271,2022_tab21_id_taxpaid_count_nz_all,2022,tab21,id_taxpaid,count,Taxes paid deduction — number of returns,nz,filers,all,13,"$55,000 under $60,000",352685.0,22in21id.xls,CA22,79,CA,22 +6272,2022_tab21_id_taxpaid_count_nz_all,2022,tab21,id_taxpaid,count,Taxes paid deduction — number of returns,nz,filers,all,14,"$60,000 under $75,000",1162475.0,22in21id.xls,CA23,79,CA,23 +6273,2022_tab21_id_taxpaid_count_nz_all,2022,tab21,id_taxpaid,count,Taxes paid deduction — number of returns,nz,filers,all,15,"$75,000 under $100,000",1896368.0,22in21id.xls,CA24,79,CA,24 +6274,2022_tab21_id_taxpaid_count_nz_all,2022,tab21,id_taxpaid,count,Taxes paid deduction — number of returns,nz,filers,all,16,"$100,000 under $200,000",4707248.0,22in21id.xls,CA25,79,CA,25 +6275,2022_tab21_id_taxpaid_count_nz_all,2022,tab21,id_taxpaid,count,Taxes paid deduction — number of returns,nz,filers,all,17,"$200,000 under $500,000",3321050.0,22in21id.xls,CA26,79,CA,26 +6276,2022_tab21_id_taxpaid_count_nz_all,2022,tab21,id_taxpaid,count,Taxes paid deduction — number of returns,nz,filers,all,18,"$500,000 under $1,000,000",898621.0,22in21id.xls,CA27,79,CA,27 +6277,2022_tab21_id_taxpaid_count_nz_all,2022,tab21,id_taxpaid,count,Taxes paid deduction — number of returns,nz,filers,all,19,"$1,000,000 under $1,500,000",229745.0,22in21id.xls,CA28,79,CA,28 +6278,2022_tab21_id_taxpaid_count_nz_all,2022,tab21,id_taxpaid,count,Taxes paid deduction — number of returns,nz,filers,all,20,"$1,500,000 under $2,000,000",101270.0,22in21id.xls,CA29,79,CA,29 +6279,2022_tab21_id_taxpaid_count_nz_all,2022,tab21,id_taxpaid,count,Taxes paid deduction — number of returns,nz,filers,all,21,"$2,000,000 under $5,000,000",153198.0,22in21id.xls,CA30,79,CA,30 +6280,2022_tab21_id_taxpaid_count_nz_all,2022,tab21,id_taxpaid,count,Taxes paid deduction — number of returns,nz,filers,all,22,"$5,000,000 under $10,000,000",42827.0,22in21id.xls,CA31,79,CA,31 +6281,2022_tab21_id_taxpaid_count_nz_all,2022,tab21,id_taxpaid,count,Taxes paid deduction — number of returns,nz,filers,all,23,"$10,000,000 or more",29981.0,22in21id.xls,CA32,79,CA,32 diff --git a/tmd/national_targets/data/pufirs_fullmap.json b/tmd/national_targets/data/pufirs_fullmap.json deleted file mode 100644 index 140ce63b..00000000 --- a/tmd/national_targets/data/pufirs_fullmap.json +++ /dev/null @@ -1 +0,0 @@ -{"nret_all": "nret_all", "mars1": "nret_single", "mars2": "nret_mfjss", "mars3": "nret_mfs", "mars4": "nret_hoh", "c00100": "agi", "e00200": "wages", "e00200_nnz": "nret_wages", "e00300": "taxint", "e00300_nnz": "nret_taxint", "e00600": "orddiv", "e00600_nnz": "nret_orddiv", "c01000": "cgnet", "c01000_nnz": "nret_cgnet", "c01000pos": "cggross", "c01000pos_nnz": "nret_cggross", "c01000neg": "cgloss", "c01000neg_nnz": "nret_cgloss", "e01500": "pensions", "e01500_nnz": "nret_pensions", "e02400": "socsectot", "e02400_nnz": "nret_socsectot", "c02500": "socsectaxable", "c02500_nnz": "nret_socsectaxable", "e00900": "busprofnet", "e00900_nnz": "nret_busprofnet", "e00900pos": "busprofnetinc", "e00900pos_nnz": "nret_busprofnetinc", "e00900neg": "busprofnetloss", "e00900neg_nnz": "nret_busprofnetloss", "e02000": "e02000", "e02000_nnz": "nret_e02000", "e02000pos": "e02000inc", "e02000pos_nnz": "nret_e02000inc", "e02000neg": "e02000loss", "e02000neg_nnz": "nret_e02000loss", "e26270": "partnerscorp", "e26270_nnz": "nret_partnerscorp", "e26270pos": "partnerscorpinc", "e26270pos_nnz": "nret_partnerscorpinc", "e26270neg": "partnerscorploss", "e26270neg_nnz": "nret_partnerscorploss", "c17000": "id_medical_capped", "c17000_nnz": "nret_id_medical_capped", "c18300": "id_taxpaid", "c18300_nnz": "nret_id_taxpaid", "c19200": "id_intpaid", "c19200_nnz": "nret_id_intpaid", "c19700": "id_contributions", "c19700_nnz": "nret_id_contributions", "c04800": "ti", "c04800_nnz": "nret_ti", "c05800": "taxbc", "c05800_nnz": "nret_taxbc", "taxac_irs": "taxac", "taxac_irs_nnz": "nret_taxac"} \ No newline at end of file diff --git a/tmd/national_targets/data/qbid analysis.xlsx b/tmd/national_targets/data/qbid analysis.xlsx deleted file mode 100644 index 1675859a..00000000 Binary files a/tmd/national_targets/data/qbid analysis.xlsx and /dev/null differ diff --git a/tmd/national_targets/data/target_recipes.xlsx b/tmd/national_targets/data/target_recipes.xlsx deleted file mode 100644 index e7e9ee2c..00000000 Binary files a/tmd/national_targets/data/target_recipes.xlsx and /dev/null differ diff --git a/tmd/national_targets/data/target_recipes_v2.xlsx b/tmd/national_targets/data/target_recipes_v2.xlsx deleted file mode 100644 index 2cadd841..00000000 Binary files a/tmd/national_targets/data/target_recipes_v2.xlsx and /dev/null differ diff --git a/tmd/national_targets/data/targeted_variables_summary.md b/tmd/national_targets/data/targeted_variables_summary.md deleted file mode 100644 index 541e76cf..00000000 --- a/tmd/national_targets/data/targeted_variables_summary.md +++ /dev/null @@ -1,114 +0,0 @@ -# National Reweighting: Targeted Variables Summary - -*Generated from `reweight.py` and `soi.csv` analysis.* - -## Overview - -The national reweighting optimizer targets **550 SOI statistics** (for 2021). -These come from 20 targeted variables divided into two groups. - -## AGI-Level Variables (11 variables, 532 targets) - -These variables are targeted **by AGI income bin** (19 bins per variable). -Each bin has both an amount target and a count target. - -| Variable | Filing statuses | Targets | -|----------|----------------|---------| -| `adjusted_gross_income` | All, Single, MFJ/SS, MFS, HoH | 19 x 5 = 95 | -| `count` | All, Single, MFJ/SS, MFS, HoH | 19 x 5 = 95 | -| `employment_income` | All only | 19 x 2 = 38 | -| `business_net_profits` | All only | 19 x 2 = 38 | -| `capital_gains_gross` | All only | 19 x 2 = 38 | -| `ordinary_dividends` | All only | 19 x 2 = 38 | -| `partnership_and_s_corp_income` | All only | 19 x 2 = 38 | -| `qualified_dividends` | All only | 19 x 2 = 38 | -| `taxable_interest_income` | All only | 19 x 2 = 38 | -| `total_pension_income` | All only | 19 x 2 = 38 | -| `total_social_security` | All only | 19 x 2 = 38 | - -**Subtotal: 532 targets** - -Notes: -- `adjusted_gross_income` and `count` get all 5 filing statuses (from Table 1.2) -- The other 9 variables get only "All" filing status (from Table 1.4) -- Each variable gets 2 rows per bin: one amount, one count (nonzero returns) -- 19 AGI bins from Table 1.4: (-inf,0), (1,5k), (5k,10k), ..., (10M,inf) - -## Aggregate-Level Variables (9 variables, 18 targets) - -These variables are targeted at **full-population level only** (no AGI binning). -Each has an amount target and a count target. - -| Variable | Targets | -|----------|---------| -| `business_net_losses` | 2 (amount + count) | -| `capital_gains_distributions` | 2 | -| `capital_gains_losses` | 2 | -| `exempt_interest` | 2 | -| `ira_distributions` | 2 | -| `partnership_and_s_corp_losses` | 2 | -| `taxable_pension_income` | 2 | -| `taxable_social_security` | 2 | -| `unemployment_compensation` | 2 | - -**Subtotal: 18 targets** - -## Not Targeted (in soi.csv but not used by reweight.py) - -These variables are present in `soi.csv` but are **commented out** in `reweight.py` -because Tax-Calculator does not model them (all values are zero in `tc_to_soi()`): - -- `estate_income` -- not in Tax-Calculator -- `estate_losses` -- not in Tax-Calculator -- `rent_and_royalty_net_income` -- not in Tax-Calculator -- `rent_and_royalty_net_losses` -- not in Tax-Calculator - -Additionally, the `_drop_impossible_targets()` function removes any targets where -all data values are zero, providing a safety net even if these were uncommented. - -## Target Count by Year - -| Year | soi.csv rows | Targeted by optimizer | Notes | -|------|-------------|----------------------|-------| -| 2015 | 1,864 | 550* | Same variable structure | -| 2021 | 1,986 | 550 | Current default year | -| 2022 | 1,830 | ~542** | Excludes rentroyalty/estateincome | - -\* Approximate; 2015 has some different AGI bin breakdowns. -\** 2022 has fewer soi.csv rows because rentroyalty/estateincome excluded -(PUF variables don't align with IRS definitions due to passive activity -limitation differences). The optimizer will target the same 9 aggregate -variables that have data. - -## AGI Income Bins (19 bins) - -From `INCOME_RANGES` in `reweight.py`: - -| Bin | Lower bound | Upper bound | -|-----|------------|-------------| -| 1 | -inf | $1 | -| 2 | $1 | $5,000 | -| 3 | $5,000 | $10,000 | -| 4 | $10,000 | $15,000 | -| 5 | $15,000 | $20,000 | -| 6 | $20,000 | $25,000 | -| 7 | $25,000 | $30,000 | -| 8 | $30,000 | $40,000 | -| 9 | $40,000 | $50,000 | -| 10 | $50,000 | $75,000 | -| 11 | $75,000 | $100,000 | -| 12 | $100,000 | $200,000 | -| 13 | $200,000 | $500,000 | -| 14 | $500,000 | $1,000,000 | -| 15 | $1,000,000 | $1,500,000 | -| 16 | $1,500,000 | $2,000,000 | -| 17 | $2,000,000 | $5,000,000 | -| 18 | $5,000,000 | $10,000,000 | -| 19 | $10,000,000 | inf | - -## Key Source Files - -- Target definitions: `tmd/utils/reweight.py` (lines 73-100) -- Target data: `tmd/storage/input/soi.csv` -- Converter: `tmd/national_targets/potential_targets_to_soi.py` -- IRS-to-PUF-to-TMD mapping: `tmd/national_targets/data/irs_to_puf_map.json` diff --git a/tmd/national_targets/docs/adding_a_new_year.md b/tmd/national_targets/docs/adding_a_new_year.md new file mode 100644 index 00000000..e6eec712 --- /dev/null +++ b/tmd/national_targets/docs/adding_a_new_year.md @@ -0,0 +1,195 @@ +# Adding a New Year of IRS Data + +This document describes how to extend the national targets pipeline to a new +tax year (e.g., 2023) when IRS SOI data become available. It covers the +discovery process — figuring out which Excel column holds each variable in the +new year's files — and how to encode that into the pipeline. + +## Overview of the pipeline + +``` +IRS Excel files (.xls) + ↓ extract_irs_to_csv.py [one-time per year] +data/extracted/{year}/{table}.csv + ↓ build_targets.py +data/irs_aggregate_values.csv [all years, all tables, not deduplicated] + ↓ potential_targets_to_soi.py +tmd/storage/input/soi.csv [deduplicated, ready for reweight.py] +``` + +The single source of truth for IRS file layouts is +`tmd/national_targets/config/table_layouts.py`. Adding a new year means +updating that file and re-running the pipeline. + +--- + +## Step 1 — Download the IRS Excel files + +The four tables needed are from IRS Statistics of Income, Individual Returns: + +| Table | File pattern | Content | +|-------|-------------|---------| +| tab11 | `{yy}in11si.xls` | All returns — AGI by income size | +| tab12 | `{yy}in12ms.xls` | All returns — Marital status | +| tab14 | `{yy}in14ar.xls` | All returns — Sources of income | +| tab21 | `{yy}in21id.xls` | Returns with itemized deductions | + +Place the files in `tmd/national_targets/data/{year}/`. + +--- + +## Step 2 — Discovery: find the column letters + +IRS regularly adds, removes, or reorders columns between years. You cannot +assume the same column letter as the prior year without verifying. + +**The recommended approach is to work interactively with Claude.** + +Start a session with something like: + +> "I need to map column letters for the 2023 IRS SOI tables. The files are +> in `tmd/national_targets/data/2023/`. Please help me verify each variable +> by reading the Excel headers and spot-checking values against published +> IRS totals." + +Claude can: +- Read the `.xls` files with `xlrd` and print the hierarchical column headers +- Cross-check candidate columns against IRS published totals (usually in the + accompanying PDF documentation, e.g., `p1304(2023).pdf`) +- Compare with the prior year's layout to flag shifts + +### What to watch for + +**Common IRS changes between years:** +- New columns inserted (e.g., IRS added tips and overtime in 2022 for tab14, + shifting all subsequent columns) +- New variables added (e.g., `qbid` was added in 2021 post-TCJA; `id_pitgst` + added in 2021 for tab21) +- Variables removed or merged (e.g., `partnerscorpincome` was split into + `partnerincome` + `scorpincome` in 2021) +- Data row range changes (first/last row shifts if IRS adds or removes + income brackets) + +**Verification steps for each variable:** +1. Print the IRS column header text (the `irs_col_header` field in the + extracted CSV) — it should match the variable description +2. Check the "All returns" row (incsort=1) against the published total in + the IRS PDF or online table +3. For variables with income/loss splits (gt0/lt0), verify that income + + loss totals are plausible + +### Spot-check script + +After a trial extraction, run: + +```python +import pandas as pd +df = pd.read_csv("tmd/national_targets/data/extracted/2023/tab14.csv") + +# Print all column headers for inspection +for _, row in df[df.incsort == 1].iterrows(): + print(f"{row.xlcolumn:4s} {row.var_name:25s} {row.var_type:8s} " + f"{row.raw_value:20,.0f} {row.irs_col_header}") +``` + +Compare the printed values against the IRS PDF table for the "All returns" +row. + +--- + +## Step 3 — Update `table_layouts.py` + +In `tmd/national_targets/config/table_layouts.py`: + +1. Add the new year to `YEARS`: + ```python + YEARS = (2015, 2021, 2022, 2023) + ``` + +2. Add entries to `FILE_NAMES`: + ```python + ("tab11", 2023): "23in11si.xls", + # etc. + ``` + +3. Add entries to `DATA_ROWS` (check first/last data rows in the spreadsheet): + ```python + ("tab11", 2023): (10, 29), + # etc. + ``` + +4. For each column spec in the four `TAB*_COLUMNS` lists, add the new year's + column letter to the `cols` dict: + ```python + { + "var_name": "wages", + ... + "cols": {2015: "G", 2021: "G", 2022: "G", 2023: "G"}, # add 2023 + } + ``` + If a variable does not exist in the new year, omit it from `cols`. + If a new variable appears in the new year, add a new spec entry. + +5. Add a comment explaining any shifts: + ```python + # 2023: IRS inserted new column X before wages, shifting subsequent cols + ``` + +--- + +## Step 4 — Run the pipeline + +```bash +# Extract the new year (existing years are skipped unless --overwrite) +python tmd/national_targets/extract_irs_to_csv.py --years 2023 + +# Rebuild irs_aggregate_values.csv (includes all years) +python tmd/national_targets/build_targets.py + +# Rebuild soi.csv +python tmd/national_targets/potential_targets_to_soi.py +``` + +--- + +## Step 5 — Verify + +Run the test suite: + +```bash +python -m pytest tests/test_national_targets.py -v +``` + +The tests check row counts, known aggregate totals, and structural integrity. +For a new year you will need to add spot-check entries to +`TestExtractedCSVs::test_all_returns_spot_check` with known IRS published +totals (wages, AGI, return count from the IRS PDF). + +Also update the row count assertions in `TestPotentialTargets` and +`TestSoi` to reflect the new year's data. + +--- + +## Prior discovery work (2015, 2021, 2022) + +The column mappings in `table_layouts.py` for 2015, 2021, and 2022 were +verified through an extensive interactive session: + +- Every column letter was cross-checked against the IRS column header text + (captured in the `irs_col_header` field of the extracted CSVs) +- "All returns" totals were verified against IRS published figures for key + variables (wages, AGI, return count) +- The marital status decomposition was verified: sum of + single + mfjss + mfs + hoh return counts equals the "All" total +- Cross-table consistency was checked: where the same variable appears in + multiple tables (e.g., agi count in tab11/tab12/tab14), values were + compared and documented +- Year-specific structural differences were documented in comments: + TCJA effects (exemptions removed 2018+, qbid added), IRS column + insertions (tips/overtime in 2022 tab14), and the + partnerscorpincome split (combined in 2015, split in 2021+) + +The `irs_col_header` column in the extracted CSVs is the primary +audit trail: it records the exact IRS header text above each column, +making it possible to independently verify any column mapping by +inspection. diff --git a/tmd/national_targets/examine.qmd b/tmd/national_targets/examine.qmd deleted file mode 100644 index 47fb638e..00000000 --- a/tmd/national_targets/examine.qmd +++ /dev/null @@ -1,348 +0,0 @@ ---- -output: html_document -editor_options: - chunk_output_type: console ---- - -# Examine preliminary IRS targets to verify technical correctness - -This chapter reads and examines previously created data. - -## Setup - -```{r} -#| label: setup - -# source(here::here("tmd", "national_targets", "setup.R")) -QROOT <- local({ - root <- tryCatch(quarto::get_running_project_root(), error = function(e) NULL) # non-NULL only during render - if (!is.null(root)) { - normalizePath(root, winslash = "/") # use Quarto’s actual project root - } else { - normalizePath(file.path(getwd(), "tmd", "national_targets"), winslash = "/") # interactive default - } -}) -source(fs::path(QROOT, "setup.R")) - -``` - -```{r} -#| label: showtab-function - -show_tab <- function(tab, year, datatype = c("filers", "taxable")) { - # Build wide data and show it in a datatable - df <- ptargets |> - dplyr::filter( - table == tab, - year == {{ year }}, - datatype %in% {{ datatype }} - ) |> - dplyr::select(table, datatype, vname, ptarget, xlcolumn, xlrownum) |> - dplyr::mutate(nxlcolumn = xlcol_to_num(xlcolumn)) |> - dplyr::arrange(nxlcolumn, xlrownum) |> - dplyr::select(-nxlcolumn) |> - tidyr::pivot_wider( - names_from = c(xlcolumn, vname, datatype), - values_from = ptarget - ) - - # Targets: R cols 3..last => JS zero-based 2..(n-1) - right_align_js_targets <- if (ncol(df) >= 3) 2:(ncol(df) - 1) else integer(0) - cols_to_fmt <- if (ncol(df) >= 3) 3:ncol(df) else integer(0) - - # Build DT widget (no 'nowrap'; auto width; adjust on init; collapse scroll when short) - tbl <- DT::datatable( - df, - class = "display stripe cell-border", - rownames = FALSE, - options = list( - scrollX = TRUE, - scrollY = "400px", - scrollCollapse = TRUE, # <-- collapses extra vertical whitespace - pageLength = 30, - autoWidth = TRUE, - deferRender = TRUE, - columnDefs = list( - list(targets = right_align_js_targets, className = "dt-right") - ), - initComplete = htmlwidgets::JS( - "function(settings, json) { - var api = this.api(); - // Let the header stretch and wrap; then sync widths - $(api.table().container()).find('.dataTables_scrollHeadInner, .dataTables_scrollHead table') - .css({'width':'100%'}); - // Make sure widths are recalculated after styles apply - setTimeout(function(){ api.columns.adjust(); }, 0); - $(api.table().container()).css({'font-size': '9px'}); - }" - ) - ), - filter = "top" - ) - - if (length(cols_to_fmt)) { - tbl <- tbl |> - DT::formatCurrency( - columns = cols_to_fmt, - currency = "", - interval = 3, - mark = ",", - digits = 0 - ) - } - - # Return TABLE + CSS together (this was missing) - htmltools::tagList( - tbl, - htmltools::tags$style( - htmltools::HTML( - " - /* Header wrapping for long labels */ - .dataTables_wrapper .dataTables_scrollHead th, - table.dataTable thead th { - white-space: normal !important; - overflow-wrap: anywhere; - word-break: normal; - line-height: 1.2; - vertical-align: bottom; - } - - /* Alignments */ - th.dt-right { text-align: center !important; } - td.dt-right { text-align: right !important; } - .dataTables_filter input { text-align: right !important; } - - /* Reduce row height (body + header) */ - table.dataTable tbody td, - table.dataTable thead th { - padding-top: 2px !important; - padding-bottom: 2px !important; - line-height: 1.1 !important; - } - - /* Smaller filter inputs (top filter row) */ - table.dataTable thead input { - padding: 2px 4px !important; - font-size: 9px !important; - line-height: 1.1 !important; - height: auto !important; - box-sizing: border-box; - } - " - ) - ) - ) -} - -``` - -## Get previously prepared data - -```{r} -#| label: get-data - -ptargets <- readRDS(fs::path( - QROOT, - "data", - "potential_targets_preliminary.rds" -)) - -``` - -## Examine 2022 values - -Because selecting values from several different IRS spreadsheets, from multiple locations in those spreadsheets, could lead to accidentally selecting values that are different from those intended, it's important to compare the resulting data to the intended data. I don't have an automated way to do it, but the tables below make it relatively easy to spot check values. - -The sections below show: - -- A filterable datatable showing the data that was read from IRS spreadsheets, followed by -- One or more screenshots of intended values, from IRS spreadsheets - -Visually spot-check datatable vs. screenshots of totals. - -To keep the task manageable, we focus only on 2022 as it is the most important year. This should be updated or extended when new years are added. - -Some IRS spreadsheets require multiple screenshots to show all of the columns that are included in the data. - -### Table 1.1. All Returns: Selected Income and Tax Items, by Size and Accumulated Size of Adjusted Gross Income -- Filers only - -```{r} -#| column: page - -show_tab("tab11", 2022) - -``` - -::: column-page -![](images/paste-5.png) -::: - -### Table 1.2. All Returns: Adjusted Gross Income, Deductions, and Tax Items, by Size of Adjusted Gross Income and by Marital Status - -#### Filers - -```{r} -#| column: page - -show_tab("tab12", 2022, "filers") - -``` - -::: column-page -![](images/paste-11.png) -::: - -### Taxable returns - -```{r} -#| column: page - -show_tab("tab12", 2022, "taxable") - -``` - -::: column-page -![](images/paste-12.png) -::: - -## Table 1.4. All Returns: Sources of Income, Adjustments, and Tax Items, by Size of Adjusted Gross Income - -Many columns of data were ingested. The IRS spreadsheet is shown by groups of columns. They should be compared to the data read in. - -### Filers – data as read-in - -```{r} -#| column: page - -show_tab("tab14", 2022, "filers") - -``` - -### Filers screenshots - -#### Columns A-AI - Filers - -::: column-page -![](images/paste-13.png) -::: - -#### Columns AJ-BO - Filers - -::: column-page -![](images/paste-14.png) -::: - -#### Columns BP-CK - Filers - -::: column-page -![](images/paste-15.png) -::: - -#### Columns EF-ES - Filers - -::: column-page -![](images/paste-16.png) -::: - -### Taxable returns – data as read-in - -```{r} -#| column: page - -show_tab("tab14", 2022, "taxable") - -``` - -### Taxable returns screenshots - -#### Columns A-AI - Taxable returns - -::: column-page -![](images/paste-17.png) -::: - -#### Columns AJ-BO - Taxable returns - -::: column-page -![](images/paste-18.png) -::: - -#### Columns BP-CK - Taxable returns - -::: column-page -![](images/paste-19.png) -::: - -#### Columns EF-ES - Taxable returns - -::: column-page -![](images/paste-20.png) -::: - -## Table 2.1. Returns with Itemized Deductions: Sources of Income, Adjustments, Itemized Deductions by Type, Exemptions, and Tax Items, by Size of Adjusted Gross Income -- 2022 - -For Table 2.1 we show the data for filers followed by the data for taxable returns, in 2 separate datatables. Then we show screenshots. - -### Filers and taxable returns -- data as read in - -```{r} -#| column: page - -show_tab("tab21", 2022, "filers") -show_tab("tab21", 2022, "taxable") - -``` - -### Filers and taxable returns -- screenshots - -```{=html} - -``` - -#### A-CJ - -::: column-page -![](images/paste-23.png) -::: - -#### CK-DH - -::: column-page -![](images/paste-24.png) -::: - -```{r stop_here, echo=FALSE} -knitr::knit_exit() -``` - -## Compare totals and sums of details - -```{r} - -ptargets |> - mutate(inctype = ifelse(incsort == 1, "total", "detail")) |> - summarise( - n = n(), - ptarget = sum(ptarget), - .by = c(table, datatype, year, vname, inctype) - ) |> - pivot_wider(names_from = inctype, values_from = c(n, ptarget)) |> - mutate( - ptarget_diff = ptarget_total - ptarget_detail, - pdiff = ptarget_diff / ptarget_total - ) |> - arrange(desc(abs(pdiff))) - -``` - - \ No newline at end of file diff --git a/tmd/national_targets/extract_irs_to_csv.py b/tmd/national_targets/extract_irs_to_csv.py new file mode 100644 index 00000000..c1d1925e --- /dev/null +++ b/tmd/national_targets/extract_irs_to_csv.py @@ -0,0 +1,284 @@ +"""Extract IRS SOI Excel files to long-format CSV files. + +This is a one-time (or per-update) step that reads the raw IRS .xls files +and writes clean CSV files to data/extracted/{year}/{table}.csv. + +Why extract to CSV first? + - Separates xlrd (old .xls parser) from the main pipeline + - CSV files are human-readable, git-diffable, and fast to read + - If an IRS file is ever corrupted, the CSV is an independent backup + - Downstream build_targets.py needs no Excel library dependency + +When to re-run this script: + - First-time setup + - A new year of IRS data is downloaded + - An extraction error is discovered and corrected + +The IRS Excel files remain the ground truth; extracted CSVs are derived. + +Units: IRS amount columns are stored in thousands of dollars. + This script converts amounts to dollars (multiplies by 1000). + Count and number columns are written as-is (already full units). +""" + +import sys +from pathlib import Path + +import pandas as pd +import xlrd + +sys.path.insert(0, str(Path(__file__).resolve().parents[2])) + +from tmd.national_targets.config.table_layouts import ( # noqa: E402 + COLUMNS, + DATA_ROWS, + FILE_NAMES, + YEARS, +) + +DATA_DIR = Path(__file__).parent / "data" +EXTRACTED_DIR = DATA_DIR / "extracted" +TABLES = ("tab11", "tab12", "tab14", "tab21") + + +def col_letter_to_idx(col: str) -> int: + """Convert an Excel column letter to a 0-based column index. + + Examples: 'A' → 0, 'B' → 1, 'Z' → 25, 'AA' → 26, 'EI' → 138. + """ + idx = 0 + for char in col.upper(): + idx = idx * 26 + (ord(char) - ord("A") + 1) + return idx - 1 + + +def read_irs_table(table: str, year: int) -> pd.DataFrame: + """Read one IRS Excel file and return a long-format DataFrame. + + Output columns: + table, year, fname, + var_name, var_type, value_filter, marstat, description, + irs_col_header, ← raw text IRS printed as the column heading + xlcolumn, xl_colnumber, incsort, incrange, xlrownum, + raw_value + + irs_col_header is the concatenation of all non-empty header cell values + above the data (rows 1 through first_row-1) for that column, joined by + " | ". This allows independent verification that a column letter maps + to the intended IRS variable. + + raw_value is in dollars (amounts already multiplied by 1000). + Returns an empty DataFrame if the file is not found. + """ + key = (table, year) + if key not in FILE_NAMES: + return pd.DataFrame() + + fname = FILE_NAMES[key] + fpath = DATA_DIR / str(year) / fname + + if not fpath.exists(): + print(f" WARNING: {fpath} not found — skipping") + return pd.DataFrame() + + first_row, last_row = DATA_ROWS[key] + wb = xlrd.open_workbook(str(fpath), formatting_info=True) + ws = wb.sheet_by_index(0) + + # Income range labels are always in column A (index 0). + # xlrd uses 0-based row indexing; spreadsheet rows are 1-based. + incrange_labels = [ + str(ws.cell_value(r - 1, 0)).strip() + for r in range(first_row, last_row + 1) + ] + + # Build merge map: expand merged-cell values to every covered cell. + # Without this, only the top-left cell of a spanner carries the value; + # all other cells in the span read as empty. + merge_map: dict = {} + for row_lo, row_hi, col_lo, col_hi in ws.merged_cells: + val = ws.cell_value(row_lo, col_lo) + for r in range(row_lo, row_hi): + for c in range(col_lo, col_hi): + merge_map[(r, c)] = val + + def cell_text(row_0: int, col_0: int) -> str: + """Return cell value, falling back to merged-region value if blank.""" + v = ws.cell_value(row_0, col_0) + if v == "" or v is None: + v = merge_map.get((row_0, col_0), "") + return str(v).strip().replace("\n", " ").replace(" ", " ") + + def get_col_header(col_idx: int) -> str: + """Build a clean hierarchical header string for one column. + + Skips: + row 1 — table title (boilerplate, same for every column) + row 2 — "All figures are estimates..." (boilerplate) + row first_row-1 — IRS column-number row (numeric labels 1.0, 2.0…) + + Expands merged/spanner cells so that every column gets the full + parent header text, not just the first column in the span. + + Deduplicates consecutive identical tokens (artefact of multi-row + merges where the same text is stored in both covered rows). + """ + skip_rows_0based = { + 0, # row 1: table title + 1, # row 2: "All figures..." note + first_row - 2, # last header row: IRS column numbers + } + raw_parts = [] + for r in range(first_row - 1): # 0-based rows before first data row + if r in skip_rows_0based: + continue + v = cell_text(r, col_idx) + if v: + raw_parts.append(v) + + # Deduplicate consecutive identical values produced by multi-row merges + deduped = [] + for part in raw_parts: + if not deduped or part != deduped[-1]: + deduped.append(part) + + return " | ".join(deduped) + + rows = [] + for spec in COLUMNS[table]: + col_letter = spec["cols"].get(year) + if col_letter is None: + continue # This variable is not in this year's file + + col_idx = col_letter_to_idx(col_letter) + xl_colnumber = col_idx + 1 # 1-based, matches IRS column numbering + var_type = spec["var_type"] + irs_header = get_col_header(col_idx) + + for i, excel_row in enumerate(range(first_row, last_row + 1)): + cell = ws.cell(excel_row - 1, col_idx) + raw = cell.value + + # IRS uses "[1]", "[2]", etc. as footnote markers for suppressed + # or unavailable data. Treat these as missing. + if not isinstance(raw, (int, float)): + raw = None + elif var_type == "amount": + raw = raw * 1000 # thousands → dollars + + rows.append( + { + "table": table, + "year": year, + "fname": fname, + "var_name": spec["var_name"], + "var_type": var_type, + "value_filter": spec["value_filter"], + "marstat": spec["marstat"], + "description": spec.get("description", ""), + "irs_col_header": irs_header, + "xlcolumn": col_letter, + "xl_colnumber": xl_colnumber, + "incsort": i + 1, + "incrange": incrange_labels[i], + "xlrownum": excel_row, + "raw_value": raw, + } + ) + + return pd.DataFrame(rows) + + +def extract_all( + years=YEARS, + tables=TABLES, + output_dir=EXTRACTED_DIR, + overwrite=False, +): + """Extract all IRS tables to CSV files. + + Writes: data/extracted/{year}/{table}.csv + + Args: + years: Iterable of years to extract. + tables: Iterable of table keys to extract. + output_dir: Root directory for extracted CSVs. + overwrite: If False (default), skip files that already exist. + """ + output_dir = Path(output_dir) + count = 0 + + for year in years: + year_dir = output_dir / str(year) + year_dir.mkdir(parents=True, exist_ok=True) + + for table in tables: + if (table, year) not in FILE_NAMES: + continue + + out_path = year_dir / f"{table}.csv" + if out_path.exists() and not overwrite: + print(f" Skipping {year}/{table}.csv (already exists)") + continue + + print(f" Extracting {year} {table} ...", end=" ", flush=True) + df = read_irs_table(table, year) + + if df.empty: + print("no data") + continue + + df.to_csv(out_path, index=False) + rel = out_path.relative_to(Path.cwd()) + print(f"{len(df)} rows → {rel}") + count += 1 + + return count + + +if __name__ == "__main__": + import argparse + + parser = argparse.ArgumentParser( + description="Extract IRS SOI Excel files to CSV." + ) + parser.add_argument( + "--years", + nargs="+", + type=int, + default=list(YEARS), + help="Years to extract (default: all configured years)", + ) + parser.add_argument( + "--tables", + nargs="+", + default=list(TABLES), + help="Tables to extract (default: tab11 tab12 tab14 tab21)", + ) + parser.add_argument( + "--overwrite", + action="store_true", + help="Overwrite existing CSV files", + ) + args = parser.parse_args() + + print("Extracting IRS Excel files to CSV...") + print(f" Years: {args.years}") + print(f" Tables: {args.tables}") + print() + n_written = extract_all( + years=args.years, + tables=args.tables, + overwrite=args.overwrite, + ) + print() + if n_written: + print( + f"Done. {n_written} CSVs written to " + f"{EXTRACTED_DIR.relative_to(Path.cwd())}/" + ) + else: + print( + "Done. All CSVs already up to date " + "(use --overwrite to re-extract)." + ) diff --git a/tmd/national_targets/images/archive/paste-1.png b/tmd/national_targets/images/archive/paste-1.png deleted file mode 100644 index afc068f1..00000000 Binary files a/tmd/national_targets/images/archive/paste-1.png and /dev/null differ diff --git a/tmd/national_targets/images/archive/paste-2.png b/tmd/national_targets/images/archive/paste-2.png deleted file mode 100644 index eaef496f..00000000 Binary files a/tmd/national_targets/images/archive/paste-2.png and /dev/null differ diff --git a/tmd/national_targets/images/archive/paste-3.png b/tmd/national_targets/images/archive/paste-3.png deleted file mode 100644 index fe8c2e08..00000000 Binary files a/tmd/national_targets/images/archive/paste-3.png and /dev/null differ diff --git a/tmd/national_targets/images/archive/paste-4.png b/tmd/national_targets/images/archive/paste-4.png deleted file mode 100644 index df1a3146..00000000 Binary files a/tmd/national_targets/images/archive/paste-4.png and /dev/null differ diff --git a/tmd/national_targets/images/clipboard-1681514924.png b/tmd/national_targets/images/clipboard-1681514924.png deleted file mode 100644 index 6998d534..00000000 Binary files a/tmd/national_targets/images/clipboard-1681514924.png and /dev/null differ diff --git a/tmd/national_targets/images/clipboard-1877344609.png b/tmd/national_targets/images/clipboard-1877344609.png deleted file mode 100644 index e1456540..00000000 Binary files a/tmd/national_targets/images/clipboard-1877344609.png and /dev/null differ diff --git a/tmd/national_targets/images/clipboard-2883034879.png b/tmd/national_targets/images/clipboard-2883034879.png deleted file mode 100644 index e1cbbb86..00000000 Binary files a/tmd/national_targets/images/clipboard-2883034879.png and /dev/null differ diff --git a/tmd/national_targets/images/paste-10.png b/tmd/national_targets/images/paste-10.png deleted file mode 100644 index 7eb94b9c..00000000 Binary files a/tmd/national_targets/images/paste-10.png and /dev/null differ diff --git a/tmd/national_targets/images/paste-11.png b/tmd/national_targets/images/paste-11.png deleted file mode 100644 index bdf28367..00000000 Binary files a/tmd/national_targets/images/paste-11.png and /dev/null differ diff --git a/tmd/national_targets/images/paste-12.png b/tmd/national_targets/images/paste-12.png deleted file mode 100644 index 55ee263b..00000000 Binary files a/tmd/national_targets/images/paste-12.png and /dev/null differ diff --git a/tmd/national_targets/images/paste-13.png b/tmd/national_targets/images/paste-13.png deleted file mode 100644 index 375703ef..00000000 Binary files a/tmd/national_targets/images/paste-13.png and /dev/null differ diff --git a/tmd/national_targets/images/paste-14.png b/tmd/national_targets/images/paste-14.png deleted file mode 100644 index f7ab7bee..00000000 Binary files a/tmd/national_targets/images/paste-14.png and /dev/null differ diff --git a/tmd/national_targets/images/paste-15.png b/tmd/national_targets/images/paste-15.png deleted file mode 100644 index 88013bfd..00000000 Binary files a/tmd/national_targets/images/paste-15.png and /dev/null differ diff --git a/tmd/national_targets/images/paste-16.png b/tmd/national_targets/images/paste-16.png deleted file mode 100644 index 1b903a9f..00000000 Binary files a/tmd/national_targets/images/paste-16.png and /dev/null differ diff --git a/tmd/national_targets/images/paste-17.png b/tmd/national_targets/images/paste-17.png deleted file mode 100644 index e49af839..00000000 Binary files a/tmd/national_targets/images/paste-17.png and /dev/null differ diff --git a/tmd/national_targets/images/paste-18.png b/tmd/national_targets/images/paste-18.png deleted file mode 100644 index 0bc89647..00000000 Binary files a/tmd/national_targets/images/paste-18.png and /dev/null differ diff --git a/tmd/national_targets/images/paste-19.png b/tmd/national_targets/images/paste-19.png deleted file mode 100644 index 317232ba..00000000 Binary files a/tmd/national_targets/images/paste-19.png and /dev/null differ diff --git a/tmd/national_targets/images/paste-20.png b/tmd/national_targets/images/paste-20.png deleted file mode 100644 index 556f7488..00000000 Binary files a/tmd/national_targets/images/paste-20.png and /dev/null differ diff --git a/tmd/national_targets/images/paste-21.png b/tmd/national_targets/images/paste-21.png deleted file mode 100644 index 5865adca..00000000 Binary files a/tmd/national_targets/images/paste-21.png and /dev/null differ diff --git a/tmd/national_targets/images/paste-22.png b/tmd/national_targets/images/paste-22.png deleted file mode 100644 index f9ffb766..00000000 Binary files a/tmd/national_targets/images/paste-22.png and /dev/null differ diff --git a/tmd/national_targets/images/paste-23.png b/tmd/national_targets/images/paste-23.png deleted file mode 100644 index 9bdc6443..00000000 Binary files a/tmd/national_targets/images/paste-23.png and /dev/null differ diff --git a/tmd/national_targets/images/paste-24.png b/tmd/national_targets/images/paste-24.png deleted file mode 100644 index e8f59239..00000000 Binary files a/tmd/national_targets/images/paste-24.png and /dev/null differ diff --git a/tmd/national_targets/images/paste-5.png b/tmd/national_targets/images/paste-5.png deleted file mode 100644 index 3d9ab525..00000000 Binary files a/tmd/national_targets/images/paste-5.png and /dev/null differ diff --git a/tmd/national_targets/images/paste-6.png b/tmd/national_targets/images/paste-6.png deleted file mode 100644 index b73d6ce9..00000000 Binary files a/tmd/national_targets/images/paste-6.png and /dev/null differ diff --git a/tmd/national_targets/images/paste-7.png b/tmd/national_targets/images/paste-7.png deleted file mode 100644 index 892f6522..00000000 Binary files a/tmd/national_targets/images/paste-7.png and /dev/null differ diff --git a/tmd/national_targets/images/paste-8.png b/tmd/national_targets/images/paste-8.png deleted file mode 100644 index bfa73a12..00000000 Binary files a/tmd/national_targets/images/paste-8.png and /dev/null differ diff --git a/tmd/national_targets/images/paste-9.png b/tmd/national_targets/images/paste-9.png deleted file mode 100644 index a38315fe..00000000 Binary files a/tmd/national_targets/images/paste-9.png and /dev/null differ diff --git a/tmd/national_targets/index.qmd b/tmd/national_targets/index.qmd deleted file mode 100644 index 588ad468..00000000 --- a/tmd/national_targets/index.qmd +++ /dev/null @@ -1,85 +0,0 @@ -# Introduction - -This target-getting project implements, in R, a way to get summary data on tax return items for historical years from IRS spreadsheets. These data, sometimes with adjustment, may be used to construct aggregate and distributional potential targets for PUF variables. The project creates a csv file with a large number of potential targets. I do not expect that we will target all of these items, but rather will choose a subset to target. - -The project produces a [web page](https://boyd-irs-targets.netlify.app/) with a useful datatable in @sec-show-targets that displays the potential targets and allows filtering and sorting to explore the targets. - -The project also produces a csv file that is in the [data folder](https://github.com/donboyd5/irs_targets/tree/main/data) of the GitHub repo for this [irs_targets project](https://github.com/donboyd5/irs_targets/tree/main). - -The code that creates the csv file and the associated website is in the main folder of the GitHub repo. - -At present, the project focuses on four important IRS tables that have a superset of most if not all of the targets we will want. The tables, with the IRS spreadsheet name for 2021 in parentheses, are: - -- **Table 1.1.** All Returns: Selected Income and Tax Items, by Size and Accumulated Size of Adjusted Gross Income (21in11si.xls) - -- **Table 1.2**. All Returns: Adjusted Gross Income, Deductions, and Tax Items, by Size of Adjusted Gross Income and by **Marital Status** (21in12ms.xls) - -- **Table 1.4.** All Returns: **Sources of Income**, Adjustments, and Tax Items, by Size of Adjusted Gross Income (21in14ar.xls) - -- **Table 2.1.** Returns with **Itemized Deductions**: Sources of Income, Adjustments, Itemized Deductions by Type, Exemptions, and Tax Items, by Size of Adjusted Gross Income (21in21id.xls) - -Note that the filename gives information on the file content: the first two characters give the year (e.g., 21=2021), the next two characters tell the tax type (in=individual income tax), the next two tell the table number (11=Table 1.1, ... 21=Table 2.1), and the last two give more details on the content (ar=all returns, id=itemized deductions, ms=marital status, si=sources of income). - -At present, this project focuses on two key IRS years: 2015, which is the year for which we have the PUF, and 2021, the latest available year. We may add 2017, the last year before the Tax Cuts and Jobs Act (TCJA). The TCJA changed the individual income tax dramatically and changed available data as well, for example significantly reducing the number of returns that claimed itemized deductions. We might also add 2018, the first year under the new tax system. - -## General approach - -The idea is to make it as easy and minimally error prone as possible to define how to get targets from IRS spreadsheets and convert them into a data frame that then is saved as a csv file. - -The approach is to create a "recipes" spreadsheet by hand that provides names and web locations of all relevant IRS tables and, for each IRS table, has a mapping tab that defines locations (Excel rows and columns) for data of interest. - -A computer program reads the recipes spreadsheet, downloads the IRS spreadsheet files, reads selected information from each IRS spreadsheet file as defined in the corresponding mapping tab, rearranges data as needed to create a usable data frame, and saves the data frame as a csv file. - -The goal is to make this easily extensible with minimal risk of error, allowing us to add additional years of data when the IRS releases new data, or to add additional tables, or additional columns within IRS tables. - -## The mapping workbook: target_recipes.xlsx - -- *Manually* create an Excel file, **target_recipes.xlsx**, and include it in the data folder of this project. It has the following tabs: - - - **irs_downloads**: Defines the IRS spreadsheets to download and provides certain information about these files: - - - `table` - variable name for table, used in R programs (for example `tab11` corresponds to IRS Table 1.1) - - - `table_description` - IRS table description - - - `key_concepts` - key targeting concepts included in the spreadsheet - - - `taxyears` - tax years for which the spreadsheet is available - - - `baseurl` - url for IRS folder that contains the file - - - `fname_base` - base filename before giving the year of the file - - - `fname_example` - example file name for a specific year. - - - `notes` - additional information about the table - -Here is a screenshot of this tab: - -![](images/clipboard-2883034879.png) - -- **Several "mapping" tabs**, each of which corresponds to an IRS table (e.g., `tab11_map` corresponds to IRS Table 1.1). Each such tab maps key information in the spreadsheet so that it can be read in an automated fashion. Each mapping tab has two sections: (1) a section at top that tells, for each year of interest, the starting row and ending row for key information in the IRS table, and (2) below that, a section that says where key columns of interest are located, giving: - - - `colname` - R variable name to be used for the column - - - `description` - description of the column - - - `units` - units for the data - - - `pufvar` corresponding PUF variable name, if known - - - `column_{year}` - a set of columns, each of which gives the Excel letter for the IRS spreadsheet column for a year of interest - -- The screenshot below shows information in the mapping tab `tab11_map`, which provides information on IRS Table 1.1: - -![](images/clipboard-1877344609.png) - -The mapping tab also includes selected screenshots from corresponding IRS spreadsheet files that show what the IRS file looks like. - -## Read the mapping workbook and follow the recipes - -An R program reads the mapping information for a particular table and uses it to read a corresponding IRS Excel spreadsheet. The program pulls columns of interest from the IRS spreadsheet and creates a dataframe with column names shown in the colname column of the mapping tab. - -Here is an excerpt from Table 1.1 for 2021 (21in11si.xls). It shows that the data start in row 10 of the spreadsheet and that column A has the AGI range, B has the number of returns, D has AGI, and G has number of returns with taxable income, consistent with the mapping tab above: - -![](images/clipboard-1681514924.png) diff --git a/tmd/national_targets/mapping.qmd b/tmd/national_targets/mapping.qmd deleted file mode 100644 index 95e68b39..00000000 --- a/tmd/national_targets/mapping.qmd +++ /dev/null @@ -1,9 +0,0 @@ -# Mapping table - -| Col1 | Col2 | Col3 | -|------|------|------| -| | | | -| | | | -| | | | - -: Mapping variables \ No newline at end of file diff --git a/tmd/national_targets/potential_targets_to_soi.py b/tmd/national_targets/potential_targets_to_soi.py index f1b6aaa6..b2e23a7d 100644 --- a/tmd/national_targets/potential_targets_to_soi.py +++ b/tmd/national_targets/potential_targets_to_soi.py @@ -1,11 +1,11 @@ """ -Convert potential_targets_preliminary.csv → soi.csv format. +Convert irs_aggregate_values.csv → soi.csv format. This replaces the old pipeline: agi_targets.csv → soi_targets.py → soi.csv New pipeline: - potential_targets_preliminary.csv → this script → soi.csv + irs_aggregate_values.csv → this script → soi.csv Key differences from old pipeline: - potential_targets has ptarget in dollars (not thousands) @@ -128,7 +128,7 @@ def get_tmd_variable_name(mapping, var_name, var_type, value_filter): def convert_potential_targets_to_soi(years=None, year_exclude_vars=None): - """Convert potential_targets_preliminary.csv → soi.csv DataFrame. + """Convert irs_aggregate_values.csv → soi.csv DataFrame. Args: years: List of years to include, or None for all available. @@ -139,7 +139,7 @@ def convert_potential_targets_to_soi(years=None, year_exclude_vars=None): Returns: DataFrame in soi.csv format. """ - pt = pd.read_csv(DATA_DIR / "potential_targets_preliminary.csv") + pt = pd.read_csv(DATA_DIR / "irs_aggregate_values.csv") mapping = load_mapping() if years: @@ -223,8 +223,15 @@ def convert_potential_targets_to_soi(years=None, year_exclude_vars=None): for sv in sorted(skipped_vars): print(f" {sv}") - # De-duplicate: when multiple tables provide the same variable for the - # same AGI bin, keep first occurrence (matches old pipeline behavior) + # De-duplicate: irs_aggregate_values.csv intentionally preserves + # all cross-table data including redundancy and minor integer differences + # between tables (that file is the full audit trail). soi.csv must have + # exactly one row per (Year, Variable, Filing status, AGI bounds, Count) + # key for the optimizer. Resolution rule: lowest table number wins + # (tab11 > tab12 > tab14 > tab21), which is the most comprehensive source. + # Value is excluded from the dedup key so that minor cross-table integer + # differences (e.g. tab11 reads 10134704, tab12 reads 10134703 for the + # same cell) don't bypass deduplication. dedup_cols = [ "Year", "Variable", @@ -233,10 +240,14 @@ def convert_potential_targets_to_soi(years=None, year_exclude_vars=None): "AGI upper bound", "Count", "Taxable only", - "Value", ] before = len(df) - df = df.groupby(dedup_cols).first().reset_index() + df = ( + df.sort_values(["Year", "SOI table", "XLSX row"]) + .groupby(dedup_cols, sort=False) + .first() + .reset_index() + ) after = len(df) if before != after: print( @@ -409,7 +420,7 @@ def compare_with_existing_soi(new_df, existing_soi_path, year=2021): if __name__ == "__main__": from tmd.storage import STORAGE_FOLDER - print("Converting potential_targets_preliminary.csv → soi.csv format...") + print("Converting irs_aggregate_values.csv → soi.csv format...") print() # Exclude rentroyalty and estateincome for 2022 (PUF variables diff --git a/tmd/national_targets/prepare.qmd b/tmd/national_targets/prepare.qmd deleted file mode 100644 index bfe5f624..00000000 --- a/tmd/national_targets/prepare.qmd +++ /dev/null @@ -1,197 +0,0 @@ ---- -output: html_document -editor_options: - chunk_output_type: console ---- - -# Read "recipes", read IRS files, and save preliminary version of target data - -This chapter reads the manually created "target recipes" xlsx file and reads the IRS xls* files identifed within. - -It then saves them as potential_targets_preliminary.rds, to be used for further investigation and testing to be sure they seem correct. - -## Setup - -```{r} -#| label: setup - -# QROOT <- normalizePath( -# file.path(getwd(), "tmd", "national_targets"), -# winslash = "/" -# ) - -QROOT <- local({ - root <- tryCatch(quarto::get_running_project_root(), error = function(e) NULL) # non-NULL only during render - if (!is.null(root)) { - normalizePath(root, winslash = "/") # use Quarto’s actual project root - } else { - normalizePath(file.path(getwd(), "tmd", "national_targets"), winslash = "/") # interactive default - } -}) - -source(fs::path(QROOT, "setup.R")) - -# note - will load the functions that help with reading excel files -# also loads QROOT, DATADIR, and targfn - -``` - -## Read the target_recipes tab that defines IRS table spreadsheets to download - -```{r} -#| label: get-recipes -#| output: false - -df1 <- read_excel(fs::path(DATADIR, targfn), sheet = "irs_downloads") - -# tabmeta has information about each Excel file we want to download -tabmeta <- expand_grid( - year = c(2015, 2021:2022) |> - as.integer(), - df1 -) |> - mutate( - fname = paste0(str_sub(year, 3, 4), fname_base), - upath = paste0(baseurl, fname) - ) - -glimpse(tabmeta) -tabmeta |> - select(1:3) - -``` - - -## Read IRS spreadsheets and save data frame of targets as csv file - -```{r} -#| label: read-irs-spreadsheets -#| output: false - -# tabs <- c("tab11", "tab12") -# tabs <- c("tab11", "tab12", "tab14") -tabs <- c("tab11", "tab12", "tab14", "tab21") - -# get start and end rows for each file of interest -tabrows <- tabs |> - purrr::map(\(tab) get_rowmap(tab, DATADIR, targfn)) |> - list_rbind() |> - pivot_wider(names_from = rowtype, values_from = xlrownum) -tabrows - -tabcols <- tabs |> - purrr::map(\(tab) get_colmap(tab, DATADIR, targfn)) |> - list_rbind() -tabcols - -tabcols_nested <- tabcols |> - summarise( - maxcol = max(xl_colnumber), - column_letters = list(xlcolumn), - vnames = list(vname), - .by = c(table, datatype, year) - ) -tabcols_nested - -# tabcols_nested |> -# unnest(cols=column_letters) - -# define the tables to get -tabget <- tabmeta |> - filter(table %in% tabs) |> - select(table, year, fname, table_description) |> - left_join(tabrows, by = join_by(table, year)) |> - left_join(tabcols_nested, by = join_by(table, datatype, year)) - -# fname <- "15in11si.xls" -# startrow <- 10; endrow <- 29; maxcol <- 7; column_letters <- list(c("A", "B", "D", "G")); colnames <- list(c("x1", "x2", "x3", "x4")) - -get_irsdata <- function( - fname, - year, - startrow, - endrow, - maxcol, - column_letters, - vnames -) { - # a single file, a single year, a single datatype (filers or taxable) - # print(fname); print(datatype) - fpath <- fs::path(DATADIR, year, fname) - - # read relevant rows, but all columns from the first column through the last in columns - # we cannot read just the desired columns, due to limitations of read_excel - - df1 <- read_excel( - fpath, - sheet = 1, - range = cellranger::cell_limits(c(startrow, 1), c(endrow, maxcol)), - col_names = xlnum_to_col(1:maxcol), - col_types = "text" - ) - - # keep desired columns, substitute the passed-in column names for letters, and pivot - df2 <- df1 |> - select(all_of(unlist(column_letters))) |> - setNames(unlist(vnames)) |> - mutate(xlrownum = startrow:endrow, incsort = row_number()) |> - pivot_longer( - cols = -c(incsort, xlrownum, incrange), - names_to = "vname", - values_to = "ptarget" - ) |> - mutate(ptarget = as.numeric(ptarget)) |> # every column had better be a number stored as text! - relocate(incsort, xlrownum) - df2 -} - -# TODO: code below expects 2015 AND 2021 files to be in the same folder but they aren't. ---- -ptargets_nested <- tabget |> - # filter(row_number() == 4) |> - mutate( - targets = get_irsdata( - fname, - year, - startrow, - endrow, - maxcol, - column_letters, - vnames - ) |> - list(), - .by = c(fname, datatype) - ) -ptargets_nested -ptargets_nested |> unnest(col = c(targets)) -ptargets_nested |> - filter(table == "tab21", datatype == "taxable") |> - unnest(col = c(targets)) - -ptargets <- ptargets_nested |> - select(table, datatype, year, fname, targets, table_description) |> - unnest(col = targets) |> - left_join( - tabcols |> select(table, datatype, year, xlcolumn, vname), - by = join_by(table, datatype, year, vname) - ) |> - relocate(xlcolumn, xlrownum, .after = fname) |> - arrange(table, year, vname, incsort) - -# check for identical -# sha256sum potential_targets_original.csv potential_targets.csv - -``` - - -## Save preliminary target data - -```{r} -#| label: save-raw-irs-data -#| output: false - -saveRDS(ptargets, fs::path(QROOT, "data", "potential_targets_preliminary.rds")) - -ptargets |> - write_csv(fs::path(QROOT, "data", "potential_targets_preliminary.csv")) - -``` diff --git a/tmd/national_targets/setup.R b/tmd/national_targets/setup.R deleted file mode 100644 index c1a516ad..00000000 --- a/tmd/national_targets/setup.R +++ /dev/null @@ -1,7 +0,0 @@ -# QROOT <- here::here("tmd", "national_targets") -DATADIR <- fs::path(QROOT, "data") -targfn <- "target_recipes_v2.xlsx" - -source(fs::path(QROOT, "R", "libraries.R")) -source(fs::path(QROOT, "R", "functions_helpers.R")) -source(fs::path(QROOT, "R", "functions_excel.R")) diff --git a/tmd/storage/input/soi.csv b/tmd/storage/input/soi.csv index 2f9c2746..869434b4 100644 --- a/tmd/storage/input/soi.csv +++ b/tmd/storage/input/soi.csv @@ -1,5681 +1,5673 @@ Year,SOI table,XLSX column,XLSX row,Variable,Filing status,AGI lower bound,AGI upper bound,Count,Taxable only,Full population,Value -2015,Table 1.1,D,11,adjusted_gross_income,All,-inf,0.0,False,False,False,-203775058000 -2015,Table 1.1,D,10,adjusted_gross_income,All,-inf,inf,False,False,True,10210310102000 -2015,Table 1.2,C,11,adjusted_gross_income,All,1.0,5000.0,False,False,False,26240797000 -2015,Table 1.1,D,12,adjusted_gross_income,All,1.0,5000.0,False,False,False,26240798000 -2015,Table 1.1,D,13,adjusted_gross_income,All,5000.0,10000.0,False,False,False,86411986000 -2015,Table 1.1,D,14,adjusted_gross_income,All,10000.0,15000.0,False,False,False,152752468000 -2015,Table 1.1,D,15,adjusted_gross_income,All,15000.0,20000.0,False,False,False,195857688000 -2015,Table 1.1,D,16,adjusted_gross_income,All,20000.0,25000.0,False,False,False,224230854000 -2015,Table 1.1,D,17,adjusted_gross_income,All,25000.0,30000.0,False,False,False,242572775000 -2015,Table 1.1,D,18,adjusted_gross_income,All,30000.0,40000.0,False,False,False,519525813000 -2015,Table 1.1,D,19,adjusted_gross_income,All,40000.0,50000.0,False,False,False,520845982000 -2015,Table 1.1,D,20,adjusted_gross_income,All,50000.0,75000.0,False,False,False,1228299087000 -2015,Table 1.1,D,21,adjusted_gross_income,All,75000.0,100000.0,False,False,False,1111174843000 -2015,Table 1.1,D,22,adjusted_gross_income,All,100000.0,200000.0,False,False,False,2506497828000 -2015,Table 1.1,D,23,adjusted_gross_income,All,200000.0,500000.0,False,False,False,1546515483000 -2015,Table 1.1,D,24,adjusted_gross_income,All,500000.0,1000000.0,False,False,False,597676645000 -2015,Table 1.1,D,25,adjusted_gross_income,All,1000000.0,1500000.0,False,False,False,236499605000 -2015,Table 1.1,D,26,adjusted_gross_income,All,1500000.0,2000000.0,False,False,False,137686352000 -2015,Table 1.1,D,27,adjusted_gross_income,All,2000000.0,5000000.0,False,False,False,346864436000 -2015,Table 1.1,D,28,adjusted_gross_income,All,5000000.0,10000000.0,False,False,False,195661353000 -2015,Table 1.2,C,28,adjusted_gross_income,All,10000000.0,inf,False,False,False,538771166000 -2015,Table 1.1,D,29,adjusted_gross_income,All,10000000.0,inf,False,False,False,538771167000 -2015,Table 1.2,AP,10,adjusted_gross_income,Head of Household,-inf,0.0,False,False,False,-6112273000 -2015,Table 1.2,AP,9,adjusted_gross_income,Head of Household,-inf,inf,False,False,False,823331580000 -2015,Table 1.2,AP,11,adjusted_gross_income,Head of Household,1.0,5000.0,False,False,False,1575074000 -2015,Table 1.2,AP,12,adjusted_gross_income,Head of Household,5000.0,10000.0,False,False,False,12792368000 -2015,Table 1.2,AP,13,adjusted_gross_income,Head of Household,10000.0,15000.0,False,False,False,38156366000 -2015,Table 1.2,AP,14,adjusted_gross_income,Head of Household,15000.0,20000.0,False,False,False,50267348000 -2015,Table 1.2,AP,15,adjusted_gross_income,Head of Household,20000.0,25000.0,False,False,False,54911539000 -2015,Table 1.2,AP,16,adjusted_gross_income,Head of Household,25000.0,30000.0,False,False,False,57018894000 -2015,Table 1.2,AP,17,adjusted_gross_income,Head of Household,30000.0,40000.0,False,False,False,111505100000 -2015,Table 1.2,AP,18,adjusted_gross_income,Head of Household,40000.0,50000.0,False,False,False,87765923000 -2015,Table 1.2,AP,19,adjusted_gross_income,Head of Household,50000.0,75000.0,False,False,False,149872637000 -2015,Table 1.2,AP,20,adjusted_gross_income,Head of Household,75000.0,100000.0,False,False,False,83627737000 -2015,Table 1.2,AP,21,adjusted_gross_income,Head of Household,100000.0,200000.0,False,False,False,95168655000 -2015,Table 1.2,AP,22,adjusted_gross_income,Head of Household,200000.0,500000.0,False,False,False,38411664000 -2015,Table 1.2,AP,23,adjusted_gross_income,Head of Household,500000.0,1000000.0,False,False,False,14214904000 -2015,Table 1.2,AP,24,adjusted_gross_income,Head of Household,1000000.0,1500000.0,False,False,False,5808236000 -2015,Table 1.2,AP,25,adjusted_gross_income,Head of Household,1500000.0,2000000.0,False,False,False,3590648000 -2015,Table 1.2,AP,26,adjusted_gross_income,Head of Household,2000000.0,5000000.0,False,False,False,8909085000 -2015,Table 1.2,AP,27,adjusted_gross_income,Head of Household,5000000.0,10000000.0,False,False,False,4737921000 -2015,Table 1.2,AP,28,adjusted_gross_income,Head of Household,10000000.0,inf,False,False,False,11109754000 -2015,Table 1.2,P,10,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,-inf,0.0,False,False,False,-126340287000 -2015,Table 1.2,P,9,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,-inf,inf,False,False,False,6627921521000 -2015,Table 1.2,P,11,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,1.0,5000.0,False,False,False,1722543000 -2015,Table 1.2,P,12,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,5000.0,10000.0,False,False,False,7565279000 -2015,Table 1.2,P,13,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,10000.0,15000.0,False,False,False,18485113000 -2015,Table 1.2,P,14,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,15000.0,20000.0,False,False,False,30393578000 -2015,Table 1.2,P,15,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,20000.0,25000.0,False,False,False,41271852000 -2015,Table 1.2,P,16,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,25000.0,30000.0,False,False,False,50362264000 -2015,Table 1.2,P,17,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,30000.0,40000.0,False,False,False,129496107000 -2015,Table 1.2,P,18,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,40000.0,50000.0,False,False,False,163840994000 -2015,Table 1.2,P,19,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,50000.0,75000.0,False,False,False,558395634000 -2015,Table 1.2,P,20,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,75000.0,100000.0,False,False,False,726506192000 -2015,Table 1.2,P,21,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,100000.0,200000.0,False,False,False,2010365290000 -2015,Table 1.2,P,22,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,200000.0,500000.0,False,False,False,1322258013000 -2015,Table 1.2,P,23,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,500000.0,1000000.0,False,False,False,512355084000 -2015,Table 1.2,P,24,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,1000000.0,1500000.0,False,False,False,199994480000 -2015,Table 1.2,P,25,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,1500000.0,2000000.0,False,False,False,115599264000 -2015,Table 1.2,P,26,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,2000000.0,5000000.0,False,False,False,287553194000 -2015,Table 1.2,P,27,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,5000000.0,10000000.0,False,False,False,161324719000 -2015,Table 1.2,P,28,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,10000000.0,inf,False,False,False,416772208000 -2015,Table 1.2,AC,10,adjusted_gross_income,Married Filing Separately,-inf,0.0,False,False,False,-13605308000 -2015,Table 1.2,AC,9,adjusted_gross_income,Married Filing Separately,-inf,inf,False,False,False,190688552000 -2015,Table 1.2,AC,11,adjusted_gross_income,Married Filing Separately,1.0,5000.0,False,False,False,291398000 -2015,Table 1.2,AC,12,adjusted_gross_income,Married Filing Separately,5000.0,10000.0,False,False,False,1031674000 -2015,Table 1.2,AC,13,adjusted_gross_income,Married Filing Separately,10000.0,15000.0,False,False,False,1957818000 -2015,Table 1.2,AC,14,adjusted_gross_income,Married Filing Separately,15000.0,20000.0,False,False,False,3161912000 -2015,Table 1.2,AC,15,adjusted_gross_income,Married Filing Separately,20000.0,25000.0,False,False,False,4940024000 -2015,Table 1.2,AC,16,adjusted_gross_income,Married Filing Separately,25000.0,30000.0,False,False,False,6252129000 -2015,Table 1.2,AC,17,adjusted_gross_income,Married Filing Separately,30000.0,40000.0,False,False,False,14102338000 -2015,Table 1.2,AC,18,adjusted_gross_income,Married Filing Separately,40000.0,50000.0,False,False,False,16245296000 -2015,Table 1.2,AC,19,adjusted_gross_income,Married Filing Separately,50000.0,75000.0,False,False,False,33923498000 -2015,Table 1.2,AC,20,adjusted_gross_income,Married Filing Separately,75000.0,100000.0,False,False,False,20909768000 -2015,Table 1.2,AC,21,adjusted_gross_income,Married Filing Separately,100000.0,200000.0,False,False,False,25864087000 -2015,Table 1.2,AC,22,adjusted_gross_income,Married Filing Separately,200000.0,500000.0,False,False,False,12954865000 -2015,Table 1.2,AC,23,adjusted_gross_income,Married Filing Separately,500000.0,1000000.0,False,False,False,7551360000 -2015,Table 1.2,AC,24,adjusted_gross_income,Married Filing Separately,1000000.0,1500000.0,False,False,False,3762883000 -2015,Table 1.2,AC,25,adjusted_gross_income,Married Filing Separately,1500000.0,2000000.0,False,False,False,2741360000 -2015,Table 1.2,AC,26,adjusted_gross_income,Married Filing Separately,2000000.0,5000000.0,False,False,False,8073951000 -2015,Table 1.2,AC,27,adjusted_gross_income,Married Filing Separately,5000000.0,10000000.0,False,False,False,5621137000 -2015,Table 1.2,AC,28,adjusted_gross_income,Married Filing Separately,10000000.0,inf,False,False,False,34908361000 -2015,Table 1.2,BC,10,adjusted_gross_income,Single,-inf,0.0,False,False,False,-57717191000 -2015,Table 1.2,BC,9,adjusted_gross_income,Single,-inf,inf,False,False,False,2568368449000 -2015,Table 1.2,BC,11,adjusted_gross_income,Single,1.0,5000.0,False,False,False,22651783000 -2015,Table 1.2,BC,12,adjusted_gross_income,Single,5000.0,10000.0,False,False,False,65022665000 -2015,Table 1.2,BC,13,adjusted_gross_income,Single,10000.0,15000.0,False,False,False,94153171000 -2015,Table 1.2,BC,14,adjusted_gross_income,Single,15000.0,20000.0,False,False,False,112034850000 -2015,Table 1.2,BC,15,adjusted_gross_income,Single,20000.0,25000.0,False,False,False,123107439000 -2015,Table 1.2,BC,16,adjusted_gross_income,Single,25000.0,30000.0,False,False,False,128939489000 -2015,Table 1.2,BC,17,adjusted_gross_income,Single,30000.0,40000.0,False,False,False,264422268000 -2015,Table 1.2,BC,18,adjusted_gross_income,Single,40000.0,50000.0,False,False,False,252993769000 -2015,Table 1.2,BC,19,adjusted_gross_income,Single,50000.0,75000.0,False,False,False,486107317000 -2015,Table 1.2,BC,20,adjusted_gross_income,Single,75000.0,100000.0,False,False,False,280131146000 -2015,Table 1.2,BC,21,adjusted_gross_income,Single,100000.0,200000.0,False,False,False,375099797000 -2015,Table 1.2,BC,22,adjusted_gross_income,Single,200000.0,500000.0,False,False,False,172890940000 -2015,Table 1.2,BC,23,adjusted_gross_income,Single,500000.0,1000000.0,False,False,False,63555296000 -2015,Table 1.2,BC,24,adjusted_gross_income,Single,1000000.0,1500000.0,False,False,False,26934006000 -2015,Table 1.2,BC,25,adjusted_gross_income,Single,1500000.0,2000000.0,False,False,False,15755080000 -2015,Table 1.2,BC,26,adjusted_gross_income,Single,2000000.0,5000000.0,False,False,False,42328206000 -2015,Table 1.2,BC,27,adjusted_gross_income,Single,5000000.0,10000000.0,False,False,False,23977575000 -2015,Table 1.2,BC,28,adjusted_gross_income,Single,10000000.0,inf,False,False,False,75980843000 -2015,Table 1.4,EE,10,alternative_minimum_tax,All,-inf,0.0,False,False,False,263639000 -2015,Table 1.4,ED,10,alternative_minimum_tax,All,-inf,0.0,True,False,False,7177 -2015,Table 1.4,EE,9,alternative_minimum_tax,All,-inf,inf,False,False,True,31165616000 -2015,Table 1.4,ED,9,alternative_minimum_tax,All,-inf,inf,True,False,True,4467806 -2015,Table 1.4,EE,11,alternative_minimum_tax,All,1.0,5000.0,False,False,False,3065000 -2015,Table 1.4,ED,11,alternative_minimum_tax,All,1.0,5000.0,True,False,False,1142 -2015,Table 1.4,EE,12,alternative_minimum_tax,All,5000.0,10000.0,False,False,False,7028000 -2015,Table 1.4,ED,12,alternative_minimum_tax,All,5000.0,10000.0,True,False,False,1036 -2015,Table 1.4,EE,13,alternative_minimum_tax,All,10000.0,15000.0,False,False,False,372000 -2015,Table 1.4,ED,13,alternative_minimum_tax,All,10000.0,15000.0,True,False,False,1011 -2015,Table 1.4,EE,14,alternative_minimum_tax,All,15000.0,20000.0,False,False,False,1900000 -2015,Table 1.4,ED,14,alternative_minimum_tax,All,15000.0,20000.0,True,False,False,1037 -2015,Table 1.4,EE,15,alternative_minimum_tax,All,20000.0,25000.0,False,False,False,1816000 -2015,Table 1.4,ED,15,alternative_minimum_tax,All,20000.0,25000.0,True,False,False,2070 -2015,Table 1.4,EE,16,alternative_minimum_tax,All,25000.0,30000.0,False,False,False,11832000 -2015,Table 1.4,ED,16,alternative_minimum_tax,All,25000.0,30000.0,True,False,False,1614 -2015,Table 1.4,EE,17,alternative_minimum_tax,All,30000.0,40000.0,False,False,False,9877000 -2015,Table 1.4,ED,17,alternative_minimum_tax,All,30000.0,40000.0,True,False,False,3577 -2015,Table 1.4,EE,18,alternative_minimum_tax,All,40000.0,50000.0,False,False,False,10880000 -2015,Table 1.4,ED,18,alternative_minimum_tax,All,40000.0,50000.0,True,False,False,2279 -2015,Table 1.4,EE,19,alternative_minimum_tax,All,50000.0,75000.0,False,False,False,51299000 -2015,Table 1.4,ED,19,alternative_minimum_tax,All,50000.0,75000.0,True,False,False,33879 -2015,Table 1.4,EE,20,alternative_minimum_tax,All,75000.0,100000.0,False,False,False,115377000 -2015,Table 1.4,ED,20,alternative_minimum_tax,All,75000.0,100000.0,True,False,False,83418 -2015,Table 1.4,EE,21,alternative_minimum_tax,All,100000.0,200000.0,False,False,False,1490373000 -2015,Table 1.4,ED,21,alternative_minimum_tax,All,100000.0,200000.0,True,False,False,617682 -2015,Table 1.4,EE,22,alternative_minimum_tax,All,200000.0,500000.0,False,False,False,16510191000 -2015,Table 1.4,ED,22,alternative_minimum_tax,All,200000.0,500000.0,True,False,False,3220348 -2015,Table 1.4,EE,23,alternative_minimum_tax,All,500000.0,1000000.0,False,False,False,5414951000 -2015,Table 1.4,ED,23,alternative_minimum_tax,All,500000.0,1000000.0,True,False,False,407046 -2015,Table 1.4,EE,24,alternative_minimum_tax,All,1000000.0,1500000.0,False,False,False,1207369000 -2015,Table 1.4,ED,24,alternative_minimum_tax,All,1000000.0,1500000.0,True,False,False,37864 -2015,Table 1.4,EE,25,alternative_minimum_tax,All,1500000.0,2000000.0,False,False,False,680282000 -2015,Table 1.4,ED,25,alternative_minimum_tax,All,1500000.0,2000000.0,True,False,False,14534 -2015,Table 1.4,EE,26,alternative_minimum_tax,All,2000000.0,5000000.0,False,False,False,1599151000 -2015,Table 1.4,ED,26,alternative_minimum_tax,All,2000000.0,5000000.0,True,False,False,21597 -2015,Table 1.4,EE,27,alternative_minimum_tax,All,5000000.0,10000000.0,False,False,False,898704000 -2015,Table 1.4,ED,27,alternative_minimum_tax,All,5000000.0,10000000.0,True,False,False,5906 -2015,Table 1.4,EE,28,alternative_minimum_tax,All,10000000.0,inf,False,False,False,2887510000 -2015,Table 1.4,ED,28,alternative_minimum_tax,All,10000000.0,inf,True,False,False,4587 -2015,Table 1.4,W,10,business_net_losses,All,-inf,0.0,False,False,False,12157756000 -2015,Table 1.4,V,10,business_net_losses,All,-inf,0.0,True,False,False,426034 -2015,Table 1.4,W,9,business_net_losses,All,-inf,inf,False,False,True,60161435000 -2015,Table 1.4,V,9,business_net_losses,All,-inf,inf,True,False,True,5935725 -2015,Table 1.4,W,11,business_net_losses,All,1.0,5000.0,False,False,False,865618000 -2015,Table 1.4,V,11,business_net_losses,All,1.0,5000.0,True,False,False,138269 -2015,Table 1.4,W,12,business_net_losses,All,5000.0,10000.0,False,False,False,1460706000 -2015,Table 1.4,V,12,business_net_losses,All,5000.0,10000.0,True,False,False,185654 -2015,Table 1.4,W,13,business_net_losses,All,10000.0,15000.0,False,False,False,2411493000 -2015,Table 1.4,V,13,business_net_losses,All,10000.0,15000.0,True,False,False,270797 -2015,Table 1.4,W,14,business_net_losses,All,15000.0,20000.0,False,False,False,3467702000 -2015,Table 1.4,V,14,business_net_losses,All,15000.0,20000.0,True,False,False,344286 -2015,Table 1.4,W,15,business_net_losses,All,20000.0,25000.0,False,False,False,3067186000 -2015,Table 1.4,V,15,business_net_losses,All,20000.0,25000.0,True,False,False,351371 -2015,Table 1.4,W,16,business_net_losses,All,25000.0,30000.0,False,False,False,2973206000 -2015,Table 1.4,V,16,business_net_losses,All,25000.0,30000.0,True,False,False,316757 -2015,Table 1.4,W,17,business_net_losses,All,30000.0,40000.0,False,False,False,3929244000 -2015,Table 1.4,V,17,business_net_losses,All,30000.0,40000.0,True,False,False,532987 -2015,Table 1.4,W,18,business_net_losses,All,40000.0,50000.0,False,False,False,3386681000 -2015,Table 1.4,V,18,business_net_losses,All,40000.0,50000.0,True,False,False,469339 -2015,Table 1.4,W,19,business_net_losses,All,50000.0,75000.0,False,False,False,5767819000 -2015,Table 1.4,V,19,business_net_losses,All,50000.0,75000.0,True,False,False,833699 -2015,Table 1.4,W,20,business_net_losses,All,75000.0,100000.0,False,False,False,4253862000 -2015,Table 1.4,V,20,business_net_losses,All,75000.0,100000.0,True,False,False,626398 -2015,Table 1.4,W,21,business_net_losses,All,100000.0,200000.0,False,False,False,7646665000 -2015,Table 1.4,V,21,business_net_losses,All,100000.0,200000.0,True,False,False,1047891 -2015,Table 1.4,W,22,business_net_losses,All,200000.0,500000.0,False,False,False,3726278000 -2015,Table 1.4,V,22,business_net_losses,All,200000.0,500000.0,True,False,False,312389 -2015,Table 1.4,W,23,business_net_losses,All,500000.0,1000000.0,False,False,False,1320995000 -2015,Table 1.4,V,23,business_net_losses,All,500000.0,1000000.0,True,False,False,50356 -2015,Table 1.4,W,24,business_net_losses,All,1000000.0,1500000.0,False,False,False,593080000 -2015,Table 1.4,V,24,business_net_losses,All,1000000.0,1500000.0,True,False,False,11619 -2015,Table 1.4,W,25,business_net_losses,All,1500000.0,2000000.0,False,False,False,392245000 -2015,Table 1.4,V,25,business_net_losses,All,1500000.0,2000000.0,True,False,False,5327 -2015,Table 1.4,W,26,business_net_losses,All,2000000.0,5000000.0,False,False,False,959470000 -2015,Table 1.4,V,26,business_net_losses,All,2000000.0,5000000.0,True,False,False,8405 -2015,Table 1.4,W,27,business_net_losses,All,5000000.0,10000000.0,False,False,False,481125000 -2015,Table 1.4,V,27,business_net_losses,All,5000000.0,10000000.0,True,False,False,2306 -2015,Table 1.4,W,28,business_net_losses,All,10000000.0,inf,False,False,False,1300305000 -2015,Table 1.4,V,28,business_net_losses,All,10000000.0,inf,True,False,False,1843 -2015,Table 1.4,U,10,business_net_profits,All,-inf,0.0,False,False,False,4057263000 -2015,Table 1.4,T,10,business_net_profits,All,-inf,0.0,True,False,False,237120 -2015,Table 1.4,U,9,business_net_profits,All,-inf,inf,False,False,True,391975736000 -2015,Table 1.4,T,9,business_net_profits,All,-inf,inf,True,False,True,18791200 -2015,Table 1.4,U,11,business_net_profits,All,1.0,5000.0,False,False,False,3620847000 -2015,Table 1.4,T,11,business_net_profits,All,1.0,5000.0,True,False,False,1275335 -2015,Table 1.4,U,12,business_net_profits,All,5000.0,10000.0,False,False,False,12895688000 -2015,Table 1.4,T,12,business_net_profits,All,5000.0,10000.0,True,False,False,1847196 -2015,Table 1.4,U,13,business_net_profits,All,10000.0,15000.0,False,False,False,24401379000 -2015,Table 1.4,T,13,business_net_profits,All,10000.0,15000.0,True,False,False,2430904 -2015,Table 1.4,U,14,business_net_profits,All,15000.0,20000.0,False,False,False,18943319000 -2015,Table 1.4,T,14,business_net_profits,All,15000.0,20000.0,True,False,False,1551550 -2015,Table 1.4,U,15,business_net_profits,All,20000.0,25000.0,False,False,False,13222482000 -2015,Table 1.4,T,15,business_net_profits,All,20000.0,25000.0,True,False,False,940440 -2015,Table 1.4,U,16,business_net_profits,All,25000.0,30000.0,False,False,False,11435760000 -2015,Table 1.4,T,16,business_net_profits,All,25000.0,30000.0,True,False,False,746527 -2015,Table 1.4,U,17,business_net_profits,All,30000.0,40000.0,False,False,False,21209538000 -2015,Table 1.4,T,17,business_net_profits,All,30000.0,40000.0,True,False,False,1369005 -2015,Table 1.4,U,18,business_net_profits,All,40000.0,50000.0,False,False,False,16756939000 -2015,Table 1.4,T,18,business_net_profits,All,40000.0,50000.0,True,False,False,1028493 -2015,Table 1.4,U,19,business_net_profits,All,50000.0,75000.0,False,False,False,34762519000 -2015,Table 1.4,T,19,business_net_profits,All,50000.0,75000.0,True,False,False,2076929 -2015,Table 1.4,U,20,business_net_profits,All,75000.0,100000.0,False,False,False,30010398000 -2015,Table 1.4,T,20,business_net_profits,All,75000.0,100000.0,True,False,False,1521248 -2015,Table 1.4,U,21,business_net_profits,All,100000.0,200000.0,False,False,False,75753230000 -2015,Table 1.4,T,21,business_net_profits,All,100000.0,200000.0,True,False,False,2546650 -2015,Table 1.4,U,22,business_net_profits,All,200000.0,500000.0,False,False,False,70271445000 -2015,Table 1.4,T,22,business_net_profits,All,200000.0,500000.0,True,False,False,960730 -2015,Table 1.4,U,23,business_net_profits,All,500000.0,1000000.0,False,False,False,25065426000 -2015,Table 1.4,T,23,business_net_profits,All,500000.0,1000000.0,True,False,False,177361 -2015,Table 1.4,U,24,business_net_profits,All,1000000.0,1500000.0,False,False,False,8889443000 -2015,Table 1.4,T,24,business_net_profits,All,1000000.0,1500000.0,True,False,False,38755 -2015,Table 1.4,U,25,business_net_profits,All,1500000.0,2000000.0,False,False,False,4087303000 -2015,Table 1.4,T,25,business_net_profits,All,1500000.0,2000000.0,True,False,False,14068 -2015,Table 1.4,U,26,business_net_profits,All,2000000.0,5000000.0,False,False,False,8304335000 -2015,Table 1.4,T,26,business_net_profits,All,2000000.0,5000000.0,True,False,False,20890 -2015,Table 1.4,U,27,business_net_profits,All,5000000.0,10000000.0,False,False,False,3422426000 -2015,Table 1.4,T,27,business_net_profits,All,5000000.0,10000000.0,True,False,False,4887 -2015,Table 1.4,U,28,business_net_profits,All,10000000.0,inf,False,False,False,4865995000 -2015,Table 1.4,T,28,business_net_profits,All,10000000.0,inf,True,False,False,3114 -2015,Table 1.4,Y,10,capital_gains_distributions,All,-inf,0.0,False,False,False,46969000 -2015,Table 1.4,X,10,capital_gains_distributions,All,-inf,0.0,True,False,False,29097 -2015,Table 1.4,Y,9,capital_gains_distributions,All,-inf,inf,False,False,True,11563203000 -2015,Table 1.4,X,9,capital_gains_distributions,All,-inf,inf,True,False,True,4323250 -2015,Table 1.4,Y,11,capital_gains_distributions,All,1.0,5000.0,False,False,False,195181000 -2015,Table 1.4,X,11,capital_gains_distributions,All,1.0,5000.0,True,False,False,222771 -2015,Table 1.4,Y,12,capital_gains_distributions,All,5000.0,10000.0,False,False,False,224309000 -2015,Table 1.4,X,12,capital_gains_distributions,All,5000.0,10000.0,True,False,False,179305 -2015,Table 1.4,Y,13,capital_gains_distributions,All,10000.0,15000.0,False,False,False,234373000 -2015,Table 1.4,X,13,capital_gains_distributions,All,10000.0,15000.0,True,False,False,159924 -2015,Table 1.4,Y,14,capital_gains_distributions,All,15000.0,20000.0,False,False,False,251117000 -2015,Table 1.4,X,14,capital_gains_distributions,All,15000.0,20000.0,True,False,False,169070 -2015,Table 1.4,Y,15,capital_gains_distributions,All,20000.0,25000.0,False,False,False,259026000 -2015,Table 1.4,X,15,capital_gains_distributions,All,20000.0,25000.0,True,False,False,147995 -2015,Table 1.4,Y,16,capital_gains_distributions,All,25000.0,30000.0,False,False,False,245274000 -2015,Table 1.4,X,16,capital_gains_distributions,All,25000.0,30000.0,True,False,False,128487 -2015,Table 1.4,Y,17,capital_gains_distributions,All,30000.0,40000.0,False,False,False,462119000 -2015,Table 1.4,X,17,capital_gains_distributions,All,30000.0,40000.0,True,False,False,287469 -2015,Table 1.4,Y,18,capital_gains_distributions,All,40000.0,50000.0,False,False,False,479156000 -2015,Table 1.4,X,18,capital_gains_distributions,All,40000.0,50000.0,True,False,False,274422 -2015,Table 1.4,Y,19,capital_gains_distributions,All,50000.0,75000.0,False,False,False,1542572000 -2015,Table 1.4,X,19,capital_gains_distributions,All,50000.0,75000.0,True,False,False,662186 -2015,Table 1.4,Y,20,capital_gains_distributions,All,75000.0,100000.0,False,False,False,1370439000 -2015,Table 1.4,X,20,capital_gains_distributions,All,75000.0,100000.0,True,False,False,564896 -2015,Table 1.4,Y,21,capital_gains_distributions,All,100000.0,200000.0,False,False,False,3639073000 -2015,Table 1.4,X,21,capital_gains_distributions,All,100000.0,200000.0,True,False,False,1078572 -2015,Table 1.4,Y,22,capital_gains_distributions,All,200000.0,500000.0,False,False,False,1989633000 -2015,Table 1.4,X,22,capital_gains_distributions,All,200000.0,500000.0,True,False,False,369651 -2015,Table 1.4,Y,23,capital_gains_distributions,All,500000.0,1000000.0,False,False,False,397268000 -2015,Table 1.4,X,23,capital_gains_distributions,All,500000.0,1000000.0,True,False,False,39917 -2015,Table 1.4,Y,24,capital_gains_distributions,All,1000000.0,1500000.0,False,False,False,82981000 -2015,Table 1.4,X,24,capital_gains_distributions,All,1000000.0,1500000.0,True,False,False,5619 -2015,Table 1.4,Y,25,capital_gains_distributions,All,1500000.0,2000000.0,False,False,False,35912000 -2015,Table 1.4,X,25,capital_gains_distributions,All,1500000.0,2000000.0,True,False,False,1759 -2015,Table 1.4,Y,26,capital_gains_distributions,All,2000000.0,5000000.0,False,False,False,90952000 -2015,Table 1.4,X,26,capital_gains_distributions,All,2000000.0,5000000.0,True,False,False,1846 -2015,Table 1.4,Y,27,capital_gains_distributions,All,5000000.0,10000000.0,False,False,False,10409000 -2015,Table 1.4,X,27,capital_gains_distributions,All,5000000.0,10000000.0,True,False,False,206 -2015,Table 1.4,Y,28,capital_gains_distributions,All,10000000.0,inf,False,False,False,6438000 -2015,Table 1.4,X,28,capital_gains_distributions,All,10000000.0,inf,True,False,False,58 -2015,Table 1.4,AA,10,capital_gains_gross,All,-inf,0.0,False,False,False,17092947000 -2015,Table 1.4,Z,10,capital_gains_gross,All,-inf,0.0,True,False,False,167966 -2015,Table 1.4,AA,9,capital_gains_gross,All,-inf,inf,False,False,True,713598090000 -2015,Table 1.4,Z,9,capital_gains_gross,All,-inf,inf,True,False,True,11674771 -2015,Table 1.4,AA,11,capital_gains_gross,All,1.0,5000.0,False,False,False,512882000 -2015,Table 1.4,Z,11,capital_gains_gross,All,1.0,5000.0,True,False,False,260178 -2015,Table 1.4,AA,12,capital_gains_gross,All,5000.0,10000.0,False,False,False,927640000 -2015,Table 1.4,Z,12,capital_gains_gross,All,5000.0,10000.0,True,False,False,302754 -2015,Table 1.4,AA,13,capital_gains_gross,All,10000.0,15000.0,False,False,False,1230847000 -2015,Table 1.4,Z,13,capital_gains_gross,All,10000.0,15000.0,True,False,False,290743 -2015,Table 1.4,AA,14,capital_gains_gross,All,15000.0,20000.0,False,False,False,1550202000 -2015,Table 1.4,Z,14,capital_gains_gross,All,15000.0,20000.0,True,False,False,295391 -2015,Table 1.4,AA,15,capital_gains_gross,All,20000.0,25000.0,False,False,False,1917490000 -2015,Table 1.4,Z,15,capital_gains_gross,All,20000.0,25000.0,True,False,False,301961 -2015,Table 1.4,AA,16,capital_gains_gross,All,25000.0,30000.0,False,False,False,1686136000 -2015,Table 1.4,Z,16,capital_gains_gross,All,25000.0,30000.0,True,False,False,269216 -2015,Table 1.4,AA,17,capital_gains_gross,All,30000.0,40000.0,False,False,False,3565980000 -2015,Table 1.4,Z,17,capital_gains_gross,All,30000.0,40000.0,True,False,False,564977 -2015,Table 1.4,AA,18,capital_gains_gross,All,40000.0,50000.0,False,False,False,4180676000 -2015,Table 1.4,Z,18,capital_gains_gross,All,40000.0,50000.0,True,False,False,583462 -2015,Table 1.4,AA,19,capital_gains_gross,All,50000.0,75000.0,False,False,False,12531337000 -2015,Table 1.4,Z,19,capital_gains_gross,All,50000.0,75000.0,True,False,False,1499292 -2015,Table 1.4,AA,20,capital_gains_gross,All,75000.0,100000.0,False,False,False,15108775000 -2015,Table 1.4,Z,20,capital_gains_gross,All,75000.0,100000.0,True,False,False,1417852 -2015,Table 1.4,AA,21,capital_gains_gross,All,100000.0,200000.0,False,False,False,55975478000 -2015,Table 1.4,Z,21,capital_gains_gross,All,100000.0,200000.0,True,False,False,3160989 -2015,Table 1.4,AA,22,capital_gains_gross,All,200000.0,500000.0,False,False,False,84003935000 -2015,Table 1.4,Z,22,capital_gains_gross,All,200000.0,500000.0,True,False,False,1841053 -2015,Table 1.4,AA,23,capital_gains_gross,All,500000.0,1000000.0,False,False,False,61321058000 -2015,Table 1.4,Z,23,capital_gains_gross,All,500000.0,1000000.0,True,False,False,442833 -2015,Table 1.4,AA,24,capital_gains_gross,All,1000000.0,1500000.0,False,False,False,34034315000 -2015,Table 1.4,Z,24,capital_gains_gross,All,1000000.0,1500000.0,True,False,False,114426 -2015,Table 1.4,AA,25,capital_gains_gross,All,1500000.0,2000000.0,False,False,False,24162327000 -2015,Table 1.4,Z,25,capital_gains_gross,All,1500000.0,2000000.0,True,False,False,49072 -2015,Table 1.4,AA,26,capital_gains_gross,All,2000000.0,5000000.0,False,False,False,78275758000 -2015,Table 1.4,Z,26,capital_gains_gross,All,2000000.0,5000000.0,True,False,False,77340 -2015,Table 1.4,AA,27,capital_gains_gross,All,5000000.0,10000000.0,False,False,False,60482444000 -2015,Table 1.4,Z,27,capital_gains_gross,All,5000000.0,10000000.0,True,False,False,20900 -2015,Table 1.4,AA,28,capital_gains_gross,All,10000000.0,inf,False,False,False,255037864000 -2015,Table 1.4,Z,28,capital_gains_gross,All,10000000.0,inf,True,False,False,14366 -2015,Table 1.4,AC,10,capital_gains_losses,All,-inf,0.0,False,False,False,1159884000 -2015,Table 1.4,AB,10,capital_gains_losses,All,-inf,0.0,True,False,False,448994 -2015,Table 1.4,AC,9,capital_gains_losses,All,-inf,inf,False,False,True,18646316000 -2015,Table 1.4,AB,9,capital_gains_losses,All,-inf,inf,True,False,True,8279783 -2015,Table 1.4,AC,11,capital_gains_losses,All,1.0,5000.0,False,False,False,599286000 -2015,Table 1.4,AB,11,capital_gains_losses,All,1.0,5000.0,True,False,False,309683 -2015,Table 1.4,AC,12,capital_gains_losses,All,5000.0,10000.0,False,False,False,664177000 -2015,Table 1.4,AB,12,capital_gains_losses,All,5000.0,10000.0,True,False,False,297621 -2015,Table 1.4,AC,13,capital_gains_losses,All,10000.0,15000.0,False,False,False,646526000 -2015,Table 1.4,AB,13,capital_gains_losses,All,10000.0,15000.0,True,False,False,288721 -2015,Table 1.4,AC,14,capital_gains_losses,All,15000.0,20000.0,False,False,False,513433000 -2015,Table 1.4,AB,14,capital_gains_losses,All,15000.0,20000.0,True,False,False,232409 -2015,Table 1.4,AC,15,capital_gains_losses,All,20000.0,25000.0,False,False,False,493407000 -2015,Table 1.4,AB,15,capital_gains_losses,All,20000.0,25000.0,True,False,False,227031 -2015,Table 1.4,AC,16,capital_gains_losses,All,25000.0,30000.0,False,False,False,568206000 -2015,Table 1.4,AB,16,capital_gains_losses,All,25000.0,30000.0,True,False,False,256667 -2015,Table 1.4,AC,17,capital_gains_losses,All,30000.0,40000.0,False,False,False,941534000 -2015,Table 1.4,AB,17,capital_gains_losses,All,30000.0,40000.0,True,False,False,456707 -2015,Table 1.4,AC,18,capital_gains_losses,All,40000.0,50000.0,False,False,False,837906000 -2015,Table 1.4,AB,18,capital_gains_losses,All,40000.0,50000.0,True,False,False,383768 -2015,Table 1.4,AC,19,capital_gains_losses,All,50000.0,75000.0,False,False,False,2371829000 -2015,Table 1.4,AB,19,capital_gains_losses,All,50000.0,75000.0,True,False,False,1058241 -2015,Table 1.4,AC,20,capital_gains_losses,All,75000.0,100000.0,False,False,False,2047954000 -2015,Table 1.4,AB,20,capital_gains_losses,All,75000.0,100000.0,True,False,False,933896 -2015,Table 1.4,AC,21,capital_gains_losses,All,100000.0,200000.0,False,False,False,4308359000 -2015,Table 1.4,AB,21,capital_gains_losses,All,100000.0,200000.0,True,False,False,1959116 -2015,Table 1.4,AC,22,capital_gains_losses,All,200000.0,500000.0,False,False,False,2548526000 -2015,Table 1.4,AB,22,capital_gains_losses,All,200000.0,500000.0,True,False,False,1070458 -2015,Table 1.4,AC,23,capital_gains_losses,All,500000.0,1000000.0,False,False,False,620944000 -2015,Table 1.4,AB,23,capital_gains_losses,All,500000.0,1000000.0,True,False,False,240175 -2015,Table 1.4,AC,24,capital_gains_losses,All,1000000.0,1500000.0,False,False,False,149959000 -2015,Table 1.4,AB,24,capital_gains_losses,All,1000000.0,1500000.0,True,False,False,54398 -2015,Table 1.4,AC,25,capital_gains_losses,All,1500000.0,2000000.0,False,False,False,61278000 -2015,Table 1.4,AB,25,capital_gains_losses,All,1500000.0,2000000.0,True,False,False,22018 -2015,Table 1.4,AC,26,capital_gains_losses,All,2000000.0,5000000.0,False,False,False,85195000 -2015,Table 1.4,AB,26,capital_gains_losses,All,2000000.0,5000000.0,True,False,False,30162 -2015,Table 1.4,AC,27,capital_gains_losses,All,5000000.0,10000000.0,False,False,False,18456000 -2015,Table 1.4,AB,27,capital_gains_losses,All,5000000.0,10000000.0,True,False,False,6441 -2015,Table 1.4,AC,28,capital_gains_losses,All,10000000.0,inf,False,False,False,9459000 -2015,Table 1.4,AB,28,capital_gains_losses,All,10000000.0,inf,True,False,False,3276 -2015,Table 2.1,CT,10,charitable_contributions_deductions,All,-inf,inf,False,False,True,221850264000 -2015,Table 2.1,CS,10,charitable_contributions_deductions,All,-inf,inf,True,False,True,36623657 -2015,Table 2.1,CT,11,charitable_contributions_deductions,All,0.0,5000.0,False,False,False,138539000 -2015,Table 2.1,CS,11,charitable_contributions_deductions,All,0.0,5000.0,True,False,False,186787 -2015,Table 2.1,CT,12,charitable_contributions_deductions,All,5000.0,10000.0,False,False,False,316739000 -2015,Table 2.1,CS,12,charitable_contributions_deductions,All,5000.0,10000.0,True,False,False,225979 -2015,Table 2.1,CT,13,charitable_contributions_deductions,All,10000.0,15000.0,False,False,False,802263000 -2015,Table 2.1,CS,13,charitable_contributions_deductions,All,10000.0,15000.0,True,False,False,423728 -2015,Table 2.1,CT,14,charitable_contributions_deductions,All,15000.0,20000.0,False,False,False,1239419000 -2015,Table 2.1,CS,14,charitable_contributions_deductions,All,15000.0,20000.0,True,False,False,566996 -2015,Table 2.1,CT,15,charitable_contributions_deductions,All,20000.0,25000.0,False,False,False,1595153000 -2015,Table 2.1,CS,15,charitable_contributions_deductions,All,20000.0,25000.0,True,False,False,645356 -2015,Table 2.1,CT,16,charitable_contributions_deductions,All,25000.0,30000.0,False,False,False,2077193000 -2015,Table 2.1,CS,16,charitable_contributions_deductions,All,25000.0,30000.0,True,False,False,782028 -2015,Table 2.1,CT,17,charitable_contributions_deductions,All,30000.0,35000.0,False,False,False,2231311000 -2015,Table 2.1,CS,17,charitable_contributions_deductions,All,30000.0,35000.0,True,False,False,845049 -2015,Table 2.1,CT,18,charitable_contributions_deductions,All,35000.0,40000.0,False,False,False,2750188000 -2015,Table 2.1,CS,18,charitable_contributions_deductions,All,35000.0,40000.0,True,False,False,982127 -2015,Table 2.1,CT,19,charitable_contributions_deductions,All,40000.0,45000.0,False,False,False,3230088000 -2015,Table 2.1,CS,19,charitable_contributions_deductions,All,40000.0,45000.0,True,False,False,1073843 -2015,Table 2.1,CT,20,charitable_contributions_deductions,All,45000.0,50000.0,False,False,False,3163725000 -2015,Table 2.1,CS,20,charitable_contributions_deductions,All,45000.0,50000.0,True,False,False,1130376 -2015,Table 2.1,CT,21,charitable_contributions_deductions,All,50000.0,55000.0,False,False,False,3413481000 -2015,Table 2.1,CS,21,charitable_contributions_deductions,All,50000.0,55000.0,True,False,False,1184881 -2015,Table 2.1,CT,22,charitable_contributions_deductions,All,55000.0,60000.0,False,False,False,3461286000 -2015,Table 2.1,CS,22,charitable_contributions_deductions,All,55000.0,60000.0,True,False,False,1223037 -2015,Table 2.1,CT,23,charitable_contributions_deductions,All,60000.0,75000.0,False,False,False,10907307000 -2015,Table 2.1,CS,23,charitable_contributions_deductions,All,60000.0,75000.0,True,False,False,3490689 -2015,Table 2.1,CT,24,charitable_contributions_deductions,All,75000.0,100000.0,False,False,False,20349620000 -2015,Table 2.1,CS,24,charitable_contributions_deductions,All,75000.0,100000.0,True,False,False,5768411 -2015,Table 2.1,CT,25,charitable_contributions_deductions,All,100000.0,200000.0,False,False,False,51469427000 -2015,Table 2.1,CS,25,charitable_contributions_deductions,All,100000.0,200000.0,True,False,False,12289353 -2015,Table 2.1,CT,26,charitable_contributions_deductions,All,200000.0,500000.0,False,False,False,34721825000 -2015,Table 2.1,CS,26,charitable_contributions_deductions,All,200000.0,500000.0,True,False,False,4648589 -2015,Table 2.1,CT,27,charitable_contributions_deductions,All,500000.0,1000000.0,False,False,False,13976256000 -2015,Table 2.1,CS,27,charitable_contributions_deductions,All,500000.0,1000000.0,True,False,False,772491 -2015,Table 2.1,CT,28,charitable_contributions_deductions,All,1000000.0,1500000.0,False,False,False,6534530000 -2015,Table 2.1,CS,28,charitable_contributions_deductions,All,1000000.0,1500000.0,True,False,False,168980 -2015,Table 2.1,CT,29,charitable_contributions_deductions,All,1500000.0,2000000.0,False,False,False,3856554000 -2015,Table 2.1,CS,29,charitable_contributions_deductions,All,1500000.0,2000000.0,True,False,False,68548 -2015,Table 2.1,CT,30,charitable_contributions_deductions,All,2000000.0,5000000.0,False,False,False,11066495000 -2015,Table 2.1,CS,30,charitable_contributions_deductions,All,2000000.0,5000000.0,True,False,False,102964 -2015,Table 2.1,CT,31,charitable_contributions_deductions,All,5000000.0,10000000.0,False,False,False,7610740000 -2015,Table 2.1,CS,31,charitable_contributions_deductions,All,5000000.0,10000000.0,True,False,False,26315 -2015,Table 2.1,CT,32,charitable_contributions_deductions,All,10000000.0,inf,False,False,False,36938122000 -2015,Table 2.1,CS,32,charitable_contributions_deductions,All,10000000.0,inf,True,False,False,17133 -2015,Table 1.1,B,11,count,All,-inf,0.0,True,False,False,2072066 -2015,Table 1.1,B,10,count,All,-inf,inf,True,False,True,150493263 -2015,Table 1.2,B,11,count,All,1.0,5000.0,True,False,False,10134703 -2015,Table 1.1,B,12,count,All,1.0,5000.0,True,False,False,10134704 -2015,Table 1.1,B,13,count,All,5000.0,10000.0,True,False,False,11398595 -2015,Table 1.1,B,14,count,All,10000.0,15000.0,True,False,False,12219480 -2015,Table 1.2,B,13,count,All,10000.0,15000.0,True,False,False,12219481 -2015,Table 1.1,B,15,count,All,15000.0,20000.0,True,False,False,11228447 -2015,Table 1.1,B,16,count,All,20000.0,25000.0,True,False,False,9981450 -2015,Table 1.1,B,17,count,All,25000.0,30000.0,True,False,False,8832875 -2015,Table 1.1,B,18,count,All,30000.0,40000.0,True,False,False,14913880 -2015,Table 1.1,B,19,count,All,40000.0,50000.0,True,False,False,11625418 -2015,Table 1.1,B,20,count,All,50000.0,75000.0,True,False,False,19980117 -2015,Table 1.1,B,21,count,All,75000.0,100000.0,True,False,False,12821791 -2015,Table 1.1,B,22,count,All,100000.0,200000.0,True,False,False,18532593 -2015,Table 1.1,B,23,count,All,200000.0,500000.0,True,False,False,5428176 -2015,Table 1.1,B,24,count,All,500000.0,1000000.0,True,False,False,884335 -2015,Table 1.1,B,25,count,All,1000000.0,1500000.0,True,False,False,195905 -2015,Table 1.1,B,26,count,All,1500000.0,2000000.0,True,False,False,79971 -2015,Table 1.1,B,27,count,All,2000000.0,5000000.0,True,False,False,116718 -2015,Table 1.1,B,28,count,All,5000000.0,10000000.0,True,False,False,28680 -2015,Table 1.1,B,29,count,All,10000000.0,inf,True,False,False,18061 -2015,Table 1.2,AO,10,count,Head of Household,-inf,0.0,True,False,False,94006 -2015,Table 1.2,AO,9,count,Head of Household,-inf,inf,True,False,False,22134303 -2015,Table 1.2,AO,11,count,Head of Household,1.0,5000.0,True,False,False,522095 -2015,Table 1.2,AO,12,count,Head of Household,5000.0,10000.0,True,False,False,1579866 -2015,Table 1.2,AO,13,count,Head of Household,10000.0,15000.0,True,False,False,2997105 -2015,Table 1.2,AO,14,count,Head of Household,15000.0,20000.0,True,False,False,2885867 -2015,Table 1.2,AO,15,count,Head of Household,20000.0,25000.0,True,False,False,2444577 -2015,Table 1.2,AO,16,count,Head of Household,25000.0,30000.0,True,False,False,2074644 -2015,Table 1.2,AO,17,count,Head of Household,30000.0,40000.0,True,False,False,3213969 -2015,Table 1.2,AO,18,count,Head of Household,40000.0,50000.0,True,False,False,1966315 -2015,Table 1.2,AO,19,count,Head of Household,50000.0,75000.0,True,False,False,2477603 -2015,Table 1.2,AO,20,count,Head of Household,75000.0,100000.0,True,False,False,981338 -2015,Table 1.2,AO,21,count,Head of Household,100000.0,200000.0,True,False,False,729595 -2015,Table 1.2,AO,22,count,Head of Household,200000.0,500000.0,True,False,False,135203 -2015,Table 1.2,AO,23,count,Head of Household,500000.0,1000000.0,True,False,False,21033 -2015,Table 1.2,AO,24,count,Head of Household,1000000.0,1500000.0,True,False,False,4826 -2015,Table 1.2,AO,25,count,Head of Household,1500000.0,2000000.0,True,False,False,2091 -2015,Table 1.2,AO,26,count,Head of Household,2000000.0,5000000.0,True,False,False,3043 -2015,Table 1.2,AO,27,count,Head of Household,5000000.0,10000000.0,True,False,False,703 -2015,Table 1.2,AO,28,count,Head of Household,10000000.0,inf,True,False,False,424 -2015,Table 1.2,O,10,count,Married Filing Jointly/Surviving Spouse,-inf,0.0,True,False,False,631850 -2015,Table 1.2,O,9,count,Married Filing Jointly/Surviving Spouse,-inf,inf,True,False,False,54294820 -2015,Table 1.2,O,11,count,Married Filing Jointly/Surviving Spouse,1.0,5000.0,True,False,False,721218 -2015,Table 1.2,O,12,count,Married Filing Jointly/Surviving Spouse,5000.0,10000.0,True,False,False,983536 -2015,Table 1.2,O,13,count,Married Filing Jointly/Surviving Spouse,10000.0,15000.0,True,False,False,1464654 -2015,Table 1.2,O,14,count,Married Filing Jointly/Surviving Spouse,15000.0,20000.0,True,False,False,1739384 -2015,Table 1.2,O,15,count,Married Filing Jointly/Surviving Spouse,20000.0,25000.0,True,False,False,1829227 -2015,Table 1.2,O,16,count,Married Filing Jointly/Surviving Spouse,25000.0,30000.0,True,False,False,1833147 -2015,Table 1.2,O,17,count,Married Filing Jointly/Surviving Spouse,30000.0,40000.0,True,False,False,3693642 -2015,Table 1.2,O,18,count,Married Filing Jointly/Surviving Spouse,40000.0,50000.0,True,False,False,3643135 -2015,Table 1.2,O,19,count,Married Filing Jointly/Surviving Spouse,50000.0,75000.0,True,False,False,8915819 -2015,Table 1.2,O,20,count,Married Filing Jointly/Surviving Spouse,75000.0,100000.0,True,False,False,8333406 -2015,Table 1.2,O,21,count,Married Filing Jointly/Surviving Spouse,100000.0,200000.0,True,False,False,14734839 -2015,Table 1.2,O,22,count,Married Filing Jointly/Surviving Spouse,200000.0,500000.0,True,False,False,4644659 -2015,Table 1.2,O,23,count,Married Filing Jointly/Surviving Spouse,500000.0,1000000.0,True,False,False,758569 -2015,Table 1.2,O,24,count,Married Filing Jointly/Surviving Spouse,1000000.0,1500000.0,True,False,False,165678 -2015,Table 1.2,O,25,count,Married Filing Jointly/Surviving Spouse,1500000.0,2000000.0,True,False,False,67141 -2015,Table 1.2,O,26,count,Married Filing Jointly/Surviving Spouse,2000000.0,5000000.0,True,False,False,96769 -2015,Table 1.2,O,27,count,Married Filing Jointly/Surviving Spouse,5000000.0,10000000.0,True,False,False,23661 -2015,Table 1.2,O,28,count,Married Filing Jointly/Surviving Spouse,10000000.0,inf,True,False,False,14485 -2015,Table 1.2,AB,10,count,Married Filing Separately,-inf,0.0,True,False,False,82706 -2015,Table 1.2,AB,9,count,Married Filing Separately,-inf,inf,True,False,False,2977192 -2015,Table 1.2,AB,11,count,Married Filing Separately,1.0,5000.0,True,False,False,136980 -2015,Table 1.2,AB,12,count,Married Filing Separately,5000.0,10000.0,True,False,False,137000 -2015,Table 1.2,AB,13,count,Married Filing Separately,10000.0,15000.0,True,False,False,158225 -2015,Table 1.2,AB,14,count,Married Filing Separately,15000.0,20000.0,True,False,False,178490 -2015,Table 1.2,AB,15,count,Married Filing Separately,20000.0,25000.0,True,False,False,219122 -2015,Table 1.2,AB,16,count,Married Filing Separately,25000.0,30000.0,True,False,False,227923 -2015,Table 1.2,AB,17,count,Married Filing Separately,30000.0,40000.0,True,False,False,404882 -2015,Table 1.2,AB,18,count,Married Filing Separately,40000.0,50000.0,True,False,False,362595 -2015,Table 1.2,AB,19,count,Married Filing Separately,50000.0,75000.0,True,False,False,561196 -2015,Table 1.2,AB,20,count,Married Filing Separately,75000.0,100000.0,True,False,False,240402 -2015,Table 1.2,AB,21,count,Married Filing Separately,100000.0,200000.0,True,False,False,202292 -2015,Table 1.2,AB,22,count,Married Filing Separately,200000.0,500000.0,True,False,False,45272 -2015,Table 1.2,AB,23,count,Married Filing Separately,500000.0,1000000.0,True,False,False,11170 -2015,Table 1.2,AB,24,count,Married Filing Separately,1000000.0,1500000.0,True,False,False,3056 -2015,Table 1.2,AB,25,count,Married Filing Separately,1500000.0,2000000.0,True,False,False,1587 -2015,Table 1.2,AB,26,count,Married Filing Separately,2000000.0,5000000.0,True,False,False,2656 -2015,Table 1.2,AB,27,count,Married Filing Separately,5000000.0,10000000.0,True,False,False,800 -2015,Table 1.2,AB,28,count,Married Filing Separately,10000000.0,inf,True,False,False,835 -2015,Table 1.2,BB,10,count,Single,-inf,0.0,True,False,False,1263503 -2015,Table 1.2,BB,9,count,Single,-inf,inf,True,False,False,71086947 -2015,Table 1.2,BB,11,count,Single,1.0,5000.0,True,False,False,8754410 -2015,Table 1.2,BB,12,count,Single,5000.0,10000.0,True,False,False,8698192 -2015,Table 1.2,BB,13,count,Single,10000.0,15000.0,True,False,False,7599496 -2015,Table 1.2,BB,14,count,Single,15000.0,20000.0,True,False,False,6424705 -2015,Table 1.2,BB,15,count,Single,20000.0,25000.0,True,False,False,5488525 -2015,Table 1.2,BB,16,count,Single,25000.0,30000.0,True,False,False,4697161 -2015,Table 1.2,BB,17,count,Single,30000.0,40000.0,True,False,False,7601388 -2015,Table 1.2,BB,18,count,Single,40000.0,50000.0,True,False,False,5653373 -2015,Table 1.2,BB,19,count,Single,50000.0,75000.0,True,False,False,8025499 -2015,Table 1.2,BB,20,count,Single,75000.0,100000.0,True,False,False,3266645 -2015,Table 1.2,BB,21,count,Single,100000.0,200000.0,True,False,False,2865867 -2015,Table 1.2,BB,22,count,Single,200000.0,500000.0,True,False,False,603042 -2015,Table 1.2,BB,23,count,Single,500000.0,1000000.0,True,False,False,93563 -2015,Table 1.2,BB,24,count,Single,1000000.0,1500000.0,True,False,False,22345 -2015,Table 1.2,BB,25,count,Single,1500000.0,2000000.0,True,False,False,9152 -2015,Table 1.2,BB,26,count,Single,2000000.0,5000000.0,True,False,False,14249 -2015,Table 1.2,BB,27,count,Single,5000000.0,10000000.0,True,False,False,3516 -2015,Table 1.2,BB,28,count,Single,10000000.0,inf,True,False,False,2317 -2015,Table 1.4,DX,10,count_of_exemptions,All,-inf,0.0,False,False,False,3117150 -2015,Table 1.4,DX,9,count_of_exemptions,All,-inf,inf,False,False,True,291938777 -2015,Table 1.4,DX,11,count_of_exemptions,All,1.0,5000.0,False,False,False,7781604 -2015,Table 1.4,DX,12,count_of_exemptions,All,5000.0,10000.0,False,False,False,13087264 -2015,Table 1.4,DX,13,count_of_exemptions,All,10000.0,15000.0,False,False,False,19593638 -2015,Table 1.4,DX,14,count_of_exemptions,All,15000.0,20000.0,False,False,False,20051079 -2015,Table 1.4,DX,15,count_of_exemptions,All,20000.0,25000.0,False,False,False,18120763 -2015,Table 1.4,DX,16,count_of_exemptions,All,25000.0,30000.0,False,False,False,16579665 -2015,Table 1.4,DX,17,count_of_exemptions,All,30000.0,40000.0,False,False,False,28873650 -2015,Table 1.4,DX,18,count_of_exemptions,All,40000.0,50000.0,False,False,False,22819923 -2015,Table 1.4,DX,19,count_of_exemptions,All,50000.0,75000.0,False,False,False,42326102 -2015,Table 1.4,DX,20,count_of_exemptions,All,75000.0,100000.0,False,False,False,30669581 -2015,Table 1.4,DX,21,count_of_exemptions,All,100000.0,200000.0,False,False,False,49572105 -2015,Table 1.4,DX,22,count_of_exemptions,All,200000.0,500000.0,False,False,False,15480744 -2015,Table 1.4,DX,23,count_of_exemptions,All,500000.0,1000000.0,False,False,False,2597527 -2015,Table 1.4,DX,24,count_of_exemptions,All,1000000.0,1500000.0,False,False,False,568476 -2015,Table 1.4,DX,25,count_of_exemptions,All,1500000.0,2000000.0,False,False,False,231052 -2015,Table 1.4,DX,26,count_of_exemptions,All,2000000.0,5000000.0,False,False,False,335819 -2015,Table 1.4,DX,27,count_of_exemptions,All,5000000.0,10000000.0,False,False,False,81601 -2015,Table 1.4,DX,28,count_of_exemptions,All,10000000.0,inf,False,False,False,51036 -2015,Table 1.4,G,10,employment_income,All,-inf,0.0,False,False,False,20111022000 -2015,Table 1.4,F,10,employment_income,All,-inf,0.0,True,False,False,565122 -2015,Table 1.4,G,9,employment_income,All,-inf,inf,False,False,True,7112222959000 -2015,Table 1.4,F,9,employment_income,All,-inf,inf,True,False,True,124591428 -2015,Table 1.4,G,11,employment_income,All,1.0,5000.0,False,False,False,26379758000 -2015,Table 1.4,F,11,employment_income,All,1.0,5000.0,True,False,False,7267723 -2015,Table 1.4,G,12,employment_income,All,5000.0,10000.0,False,False,False,65527117000 -2015,Table 1.4,F,12,employment_income,All,5000.0,10000.0,True,False,False,8804222 -2015,Table 1.4,G,13,employment_income,All,10000.0,15000.0,False,False,False,108945675000 -2015,Table 1.4,F,13,employment_income,All,10000.0,15000.0,True,False,False,9192735 -2015,Table 1.4,G,14,employment_income,All,15000.0,20000.0,False,False,False,152713467000 -2015,Table 1.4,F,14,employment_income,All,15000.0,20000.0,True,False,False,9033568 -2015,Table 1.4,G,15,employment_income,All,20000.0,25000.0,False,False,False,182841964000 -2015,Table 1.4,F,15,employment_income,All,20000.0,25000.0,True,False,False,8423553 -2015,Table 1.4,G,16,employment_income,All,25000.0,30000.0,False,False,False,200342638000 -2015,Table 1.4,F,16,employment_income,All,25000.0,30000.0,True,False,False,7585499 -2015,Table 1.4,G,17,employment_income,All,30000.0,40000.0,False,False,False,428313928000 -2015,Table 1.4,F,17,employment_income,All,30000.0,40000.0,True,False,False,12978605 -2015,Table 1.4,G,18,employment_income,All,40000.0,50000.0,False,False,False,424369612000 -2015,Table 1.4,F,18,employment_income,All,40000.0,50000.0,True,False,False,10142723 -2015,Table 1.4,G,19,employment_income,All,50000.0,75000.0,False,False,False,952347137000 -2015,Table 1.4,F,19,employment_income,All,50000.0,75000.0,True,False,False,17158839 -2015,Table 1.4,G,20,employment_income,All,75000.0,100000.0,False,False,False,835434509000 -2015,Table 1.4,F,20,employment_income,All,75000.0,100000.0,True,False,False,11083392 -2015,Table 1.4,G,21,employment_income,All,100000.0,200000.0,False,False,False,1876094165000 -2015,Table 1.4,F,21,employment_income,All,100000.0,200000.0,True,False,False,16409095 -2015,Table 1.4,G,22,employment_income,All,200000.0,500000.0,False,False,False,1055689937000 -2015,Table 1.4,F,22,employment_income,All,200000.0,500000.0,True,False,False,4812720 -2015,Table 1.4,G,23,employment_income,All,500000.0,1000000.0,False,False,False,337666673000 -2015,Table 1.4,F,23,employment_income,All,500000.0,1000000.0,True,False,False,767954 -2015,Table 1.4,G,24,employment_income,All,1000000.0,1500000.0,False,False,False,109129351000 -2015,Table 1.4,F,24,employment_income,All,1000000.0,1500000.0,True,False,False,164367 -2015,Table 1.4,G,25,employment_income,All,1500000.0,2000000.0,False,False,False,56400553000 -2015,Table 1.4,F,25,employment_income,All,1500000.0,2000000.0,True,False,False,66384 -2015,Table 1.4,G,26,employment_income,All,2000000.0,5000000.0,False,False,False,124291852000 -2015,Table 1.4,F,26,employment_income,All,2000000.0,5000000.0,True,False,False,96609 -2015,Table 1.4,G,27,employment_income,All,5000000.0,10000000.0,False,False,False,59258643000 -2015,Table 1.4,F,27,employment_income,All,5000000.0,10000000.0,True,False,False,23626 -2015,Table 1.4,G,28,employment_income,All,10000000.0,inf,False,False,False,96364957000 -2015,Table 1.4,F,28,employment_income,All,10000000.0,inf,True,False,False,14691 -2015,Table 1.4,BI,10,estate_income,All,-inf,0.0,False,False,False,555349000 -2015,Table 1.4,BH,10,estate_income,All,-inf,0.0,True,False,False,13700 -2015,Table 1.4,BI,9,estate_income,All,-inf,inf,False,False,True,32453002000 -2015,Table 1.4,BH,9,estate_income,All,-inf,inf,True,False,True,630256 -2015,Table 1.4,BI,11,estate_income,All,1.0,5000.0,False,False,False,84768000 -2015,Table 1.4,BH,11,estate_income,All,1.0,5000.0,True,False,False,20997 -2015,Table 1.4,BI,12,estate_income,All,5000.0,10000.0,False,False,False,0 -2015,Table 1.4,BH,12,estate_income,All,5000.0,10000.0,True,False,False,0 -2015,Table 1.4,BI,13,estate_income,All,10000.0,15000.0,False,False,False,190506000 -2015,Table 1.4,BH,13,estate_income,All,10000.0,15000.0,True,False,False,35192 -2015,Table 1.4,BI,14,estate_income,All,15000.0,20000.0,False,False,False,0 -2015,Table 1.4,BH,14,estate_income,All,15000.0,20000.0,True,False,False,0 -2015,Table 1.4,BI,15,estate_income,All,20000.0,25000.0,False,False,False,157934000 -2015,Table 1.4,BH,15,estate_income,All,20000.0,25000.0,True,False,False,17715 -2015,Table 1.4,BI,16,estate_income,All,25000.0,30000.0,False,False,False,70147000 -2015,Table 1.4,BH,16,estate_income,All,25000.0,30000.0,True,False,False,10077 -2015,Table 1.4,BI,17,estate_income,All,30000.0,40000.0,False,False,False,212077000 -2015,Table 1.4,BH,17,estate_income,All,30000.0,40000.0,True,False,False,23005 -2015,Table 1.4,BI,18,estate_income,All,40000.0,50000.0,False,False,False,323856000 -2015,Table 1.4,BH,18,estate_income,All,40000.0,50000.0,True,False,False,23142 -2015,Table 1.4,BI,19,estate_income,All,50000.0,75000.0,False,False,False,1005042000 -2015,Table 1.4,BH,19,estate_income,All,50000.0,75000.0,True,False,False,83233 -2015,Table 1.4,BI,20,estate_income,All,75000.0,100000.0,False,False,False,1208291000 -2015,Table 1.4,BH,20,estate_income,All,75000.0,100000.0,True,False,False,82692 -2015,Table 1.4,BI,21,estate_income,All,100000.0,200000.0,False,False,False,3738120000 -2015,Table 1.4,BH,21,estate_income,All,100000.0,200000.0,True,False,False,167481 -2015,Table 1.4,BI,22,estate_income,All,200000.0,500000.0,False,False,False,5145144000 -2015,Table 1.4,BH,22,estate_income,All,200000.0,500000.0,True,False,False,98024 -2015,Table 1.4,BI,23,estate_income,All,500000.0,1000000.0,False,False,False,3109812000 -2015,Table 1.4,BH,23,estate_income,All,500000.0,1000000.0,True,False,False,27807 -2015,Table 1.4,BI,24,estate_income,All,1000000.0,1500000.0,False,False,False,2035739000 -2015,Table 1.4,BH,24,estate_income,All,1000000.0,1500000.0,True,False,False,9417 -2015,Table 1.4,BI,25,estate_income,All,1500000.0,2000000.0,False,False,False,1379830000 -2015,Table 1.4,BH,25,estate_income,All,1500000.0,2000000.0,True,False,False,4786 -2015,Table 1.4,BI,26,estate_income,All,2000000.0,5000000.0,False,False,False,3609729000 -2015,Table 1.4,BH,26,estate_income,All,2000000.0,5000000.0,True,False,False,8203 -2015,Table 1.4,BI,27,estate_income,All,5000000.0,10000000.0,False,False,False,2796763000 -2015,Table 1.4,BH,27,estate_income,All,5000000.0,10000000.0,True,False,False,2705 -2015,Table 1.4,BI,28,estate_income,All,10000000.0,inf,False,False,False,6829895000 -2015,Table 1.4,BH,28,estate_income,All,10000000.0,inf,True,False,False,2077 -2015,Table 1.4,BK,10,estate_losses,All,-inf,0.0,False,False,False,1039656000 -2015,Table 1.4,BJ,10,estate_losses,All,-inf,0.0,True,False,False,4797 -2015,Table 1.4,BK,9,estate_losses,All,-inf,inf,False,False,True,5033199000 -2015,Table 1.4,BJ,9,estate_losses,All,-inf,inf,True,False,True,57802 -2015,Table 1.4,BK,11,estate_losses,All,1.0,5000.0,False,False,False,15155000 -2015,Table 1.4,BJ,11,estate_losses,All,1.0,5000.0,True,False,False,1034 -2015,Table 1.4,BK,12,estate_losses,All,5000.0,10000.0,False,False,False,0 -2015,Table 1.4,BJ,12,estate_losses,All,5000.0,10000.0,True,False,False,0 -2015,Table 1.4,BK,13,estate_losses,All,10000.0,15000.0,False,False,False,14646000 -2015,Table 1.4,BJ,13,estate_losses,All,10000.0,15000.0,True,False,False,3116 -2015,Table 1.4,BK,14,estate_losses,All,15000.0,20000.0,False,False,False,0 -2015,Table 1.4,BJ,14,estate_losses,All,15000.0,20000.0,True,False,False,0 -2015,Table 1.4,BK,15,estate_losses,All,20000.0,25000.0,False,False,False,40026000 -2015,Table 1.4,BJ,15,estate_losses,All,20000.0,25000.0,True,False,False,1040 -2015,Table 1.4,BK,16,estate_losses,All,25000.0,30000.0,False,False,False,852000 -2015,Table 1.4,BJ,16,estate_losses,All,25000.0,30000.0,True,False,False,8 -2015,Table 1.4,BK,17,estate_losses,All,30000.0,40000.0,False,False,False,2635000 -2015,Table 1.4,BJ,17,estate_losses,All,30000.0,40000.0,True,False,False,1218 -2015,Table 1.4,BK,18,estate_losses,All,40000.0,50000.0,False,False,False,4481000 -2015,Table 1.4,BJ,18,estate_losses,All,40000.0,50000.0,True,False,False,1428 -2015,Table 1.4,BK,19,estate_losses,All,50000.0,75000.0,False,False,False,42194000 -2015,Table 1.4,BJ,19,estate_losses,All,50000.0,75000.0,True,False,False,3066 -2015,Table 1.4,BK,20,estate_losses,All,75000.0,100000.0,False,False,False,110657000 -2015,Table 1.4,BJ,20,estate_losses,All,75000.0,100000.0,True,False,False,5895 -2015,Table 1.4,BK,21,estate_losses,All,100000.0,200000.0,False,False,False,85897000 -2015,Table 1.4,BJ,21,estate_losses,All,100000.0,200000.0,True,False,False,15632 -2015,Table 1.4,BK,22,estate_losses,All,200000.0,500000.0,False,False,False,269765000 -2015,Table 1.4,BJ,22,estate_losses,All,200000.0,500000.0,True,False,False,9856 -2015,Table 1.4,BK,23,estate_losses,All,500000.0,1000000.0,False,False,False,115685000 -2015,Table 1.4,BJ,23,estate_losses,All,500000.0,1000000.0,True,False,False,4063 -2015,Table 1.4,BK,24,estate_losses,All,1000000.0,1500000.0,False,False,False,108963000 -2015,Table 1.4,BJ,24,estate_losses,All,1000000.0,1500000.0,True,False,False,1615 -2015,Table 1.4,BK,25,estate_losses,All,1500000.0,2000000.0,False,False,False,80746000 -2015,Table 1.4,BJ,25,estate_losses,All,1500000.0,2000000.0,True,False,False,935 -2015,Table 1.4,BK,26,estate_losses,All,2000000.0,5000000.0,False,False,False,286232000 -2015,Table 1.4,BJ,26,estate_losses,All,2000000.0,5000000.0,True,False,False,2021 -2015,Table 1.4,BK,27,estate_losses,All,5000000.0,10000000.0,False,False,False,178364000 -2015,Table 1.4,BJ,27,estate_losses,All,5000000.0,10000000.0,True,False,False,998 -2015,Table 1.4,BK,28,estate_losses,All,10000000.0,inf,False,False,False,2637246000 -2015,Table 1.4,BJ,28,estate_losses,All,10000000.0,inf,True,False,False,1080 -2015,Table 1.4,K,10,exempt_interest,All,-inf,0.0,False,False,False,2127267000 -2015,Table 1.4,J,10,exempt_interest,All,-inf,0.0,True,False,False,99447 -2015,Table 1.4,K,9,exempt_interest,All,-inf,inf,False,False,True,61871455000 -2015,Table 1.4,J,9,exempt_interest,All,-inf,inf,True,False,True,5827038 -2015,Table 1.4,K,11,exempt_interest,All,1.0,5000.0,False,False,False,222610000 -2015,Table 1.4,J,11,exempt_interest,All,1.0,5000.0,True,False,False,90663 -2015,Table 1.4,K,12,exempt_interest,All,5000.0,10000.0,False,False,False,285516000 -2015,Table 1.4,J,12,exempt_interest,All,5000.0,10000.0,True,False,False,107702 -2015,Table 1.4,K,13,exempt_interest,All,10000.0,15000.0,False,False,False,438006000 -2015,Table 1.4,J,13,exempt_interest,All,10000.0,15000.0,True,False,False,124166 -2015,Table 1.4,K,14,exempt_interest,All,15000.0,20000.0,False,False,False,322515000 -2015,Table 1.4,J,14,exempt_interest,All,15000.0,20000.0,True,False,False,119598 -2015,Table 1.4,K,15,exempt_interest,All,20000.0,25000.0,False,False,False,689080000 -2015,Table 1.4,J,15,exempt_interest,All,20000.0,25000.0,True,False,False,115165 -2015,Table 1.4,K,16,exempt_interest,All,25000.0,30000.0,False,False,False,720058000 -2015,Table 1.4,J,16,exempt_interest,All,25000.0,30000.0,True,False,False,122363 -2015,Table 1.4,K,17,exempt_interest,All,30000.0,40000.0,False,False,False,1483145000 -2015,Table 1.4,J,17,exempt_interest,All,30000.0,40000.0,True,False,False,261909 -2015,Table 1.4,K,18,exempt_interest,All,40000.0,50000.0,False,False,False,1177454000 -2015,Table 1.4,J,18,exempt_interest,All,40000.0,50000.0,True,False,False,239360 -2015,Table 1.4,K,19,exempt_interest,All,50000.0,75000.0,False,False,False,3326378000 -2015,Table 1.4,J,19,exempt_interest,All,50000.0,75000.0,True,False,False,704167 -2015,Table 1.4,K,20,exempt_interest,All,75000.0,100000.0,False,False,False,3510870000 -2015,Table 1.4,J,20,exempt_interest,All,75000.0,100000.0,True,False,False,668070 -2015,Table 1.4,K,21,exempt_interest,All,100000.0,200000.0,False,False,False,11019779000 -2015,Table 1.4,J,21,exempt_interest,All,100000.0,200000.0,True,False,False,1581470 -2015,Table 1.4,K,22,exempt_interest,All,200000.0,500000.0,False,False,False,12958810000 -2015,Table 1.4,J,22,exempt_interest,All,200000.0,500000.0,True,False,False,1030721 -2015,Table 1.4,K,23,exempt_interest,All,500000.0,1000000.0,False,False,False,6889926000 -2015,Table 1.4,J,23,exempt_interest,All,500000.0,1000000.0,True,False,False,323378 -2015,Table 1.4,K,24,exempt_interest,All,1000000.0,1500000.0,False,False,False,3113401000 -2015,Table 1.4,J,24,exempt_interest,All,1000000.0,1500000.0,True,False,False,93059 -2015,Table 1.4,K,25,exempt_interest,All,1500000.0,2000000.0,False,False,False,1942691000 -2015,Table 1.4,J,25,exempt_interest,All,1500000.0,2000000.0,True,False,False,42319 -2015,Table 1.4,K,26,exempt_interest,All,2000000.0,5000000.0,False,False,False,4872127000 -2015,Table 1.4,J,26,exempt_interest,All,2000000.0,5000000.0,True,False,False,69777 -2015,Table 1.4,K,27,exempt_interest,All,5000000.0,10000000.0,False,False,False,2457559000 -2015,Table 1.4,J,27,exempt_interest,All,5000000.0,10000000.0,True,False,False,19636 -2015,Table 1.4,K,28,exempt_interest,All,10000000.0,inf,False,False,False,4314263000 -2015,Table 1.4,J,28,exempt_interest,All,10000000.0,inf,True,False,False,14069 -2015,Table 1.2,D,10,exemptions,All,-inf,0.0,False,False,False,12446491000 -2015,Table 1.2,D,9,exemptions,All,-inf,inf,False,False,True,1140740415000 -2015,Table 1.2,D,11,exemptions,All,1.0,5000.0,False,False,False,31087459000 -2015,Table 1.2,D,12,exemptions,All,5000.0,10000.0,False,False,False,52312323000 -2015,Table 1.2,D,13,exemptions,All,10000.0,15000.0,False,False,False,78326220000 -2015,Table 1.2,D,14,exemptions,All,15000.0,20000.0,False,False,False,80165929000 -2015,Table 1.2,D,15,exemptions,All,20000.0,25000.0,False,False,False,72448913000 -2015,Table 1.2,D,16,exemptions,All,25000.0,30000.0,False,False,False,66284851000 -2015,Table 1.2,D,17,exemptions,All,30000.0,40000.0,False,False,False,115442883000 -2015,Table 1.2,D,18,exemptions,All,40000.0,50000.0,False,False,False,91236099000 -2015,Table 1.2,D,19,exemptions,All,50000.0,75000.0,False,False,False,169228826000 -2015,Table 1.2,D,20,exemptions,All,75000.0,100000.0,False,False,False,122634902000 -2015,Table 1.2,D,21,exemptions,All,100000.0,200000.0,False,False,False,198173870000 -2015,Table 1.2,D,22,exemptions,All,200000.0,500000.0,False,False,False,50951651000 -2015,Table 1.2,D,23,exemptions,All,500000.0,1000000.0,False,False,False,0 -2015,Table 1.2,D,24,exemptions,All,1000000.0,1500000.0,False,False,False,0 -2015,Table 1.2,D,25,exemptions,All,1500000.0,2000000.0,False,False,False,0 -2015,Table 1.2,D,26,exemptions,All,2000000.0,5000000.0,False,False,False,0 -2015,Table 1.2,D,27,exemptions,All,5000000.0,10000000.0,False,False,False,0 -2015,Table 1.2,D,28,exemptions,All,10000000.0,inf,False,False,False,0 -2015,Table 1.2,L,10,income_tax_after_credits,All,-inf,0.0,False,False,False,241975000 -2015,Table 1.2,K,10,income_tax_after_credits,All,-inf,0.0,True,False,False,6628 -2015,Table 1.2,L,9,income_tax_after_credits,All,-inf,inf,False,False,True,1435848586000 -2015,Table 1.2,K,9,income_tax_after_credits,All,-inf,inf,True,False,True,99021502 -2015,Table 1.2,L,11,income_tax_after_credits,All,1.0,5000.0,False,False,False,40941000 -2015,Table 1.2,K,11,income_tax_after_credits,All,1.0,5000.0,True,False,False,199682 -2015,Table 1.2,L,12,income_tax_after_credits,All,5000.0,10000.0,False,False,False,368015000 -2015,Table 1.2,K,12,income_tax_after_credits,All,5000.0,10000.0,True,False,False,1926254 -2015,Table 1.2,L,13,income_tax_after_credits,All,10000.0,15000.0,False,False,False,1381283000 -2015,Table 1.2,K,13,income_tax_after_credits,All,10000.0,15000.0,True,False,False,4333058 -2015,Table 1.2,L,14,income_tax_after_credits,All,15000.0,20000.0,False,False,False,3523850000 -2015,Table 1.2,K,14,income_tax_after_credits,All,15000.0,20000.0,True,False,False,5195436 -2015,Table 1.2,L,15,income_tax_after_credits,All,20000.0,25000.0,False,False,False,6191130000 -2015,Table 1.2,K,15,income_tax_after_credits,All,20000.0,25000.0,True,False,False,5404801 -2015,Table 1.2,L,16,income_tax_after_credits,All,25000.0,30000.0,False,False,False,8752577000 -2015,Table 1.2,K,16,income_tax_after_credits,All,25000.0,30000.0,True,False,False,5319345 -2015,Table 1.2,L,17,income_tax_after_credits,All,30000.0,40000.0,False,False,False,25167659000 -2015,Table 1.2,K,17,income_tax_after_credits,All,30000.0,40000.0,True,False,False,10561750 -2015,Table 1.2,L,18,income_tax_after_credits,All,40000.0,50000.0,False,False,False,32530107000 -2015,Table 1.2,K,18,income_tax_after_credits,All,40000.0,50000.0,True,False,False,9701526 -2015,Table 1.2,L,19,income_tax_after_credits,All,50000.0,75000.0,False,False,False,99790385000 -2015,Table 1.2,K,19,income_tax_after_credits,All,50000.0,75000.0,True,False,False,18683039 -2015,Table 1.2,L,20,income_tax_after_credits,All,75000.0,100000.0,False,False,False,105900927000 -2015,Table 1.2,K,20,income_tax_after_credits,All,75000.0,100000.0,True,False,False,12561202 -2015,Table 1.2,L,21,income_tax_after_credits,All,100000.0,200000.0,False,False,False,316328337000 -2015,Table 1.2,K,21,income_tax_after_credits,All,100000.0,200000.0,True,False,False,18399987 -2015,Table 1.2,L,22,income_tax_after_credits,All,200000.0,500000.0,False,False,False,297192494000 -2015,Table 1.2,K,22,income_tax_after_credits,All,200000.0,500000.0,True,False,False,5409762 -2015,Table 1.2,L,23,income_tax_after_credits,All,500000.0,1000000.0,False,False,False,151253134000 -2015,Table 1.2,K,23,income_tax_after_credits,All,500000.0,1000000.0,True,False,False,881330 -2015,Table 1.2,L,24,income_tax_after_credits,All,1000000.0,1500000.0,False,False,False,64652109000 -2015,Table 1.2,K,24,income_tax_after_credits,All,1000000.0,1500000.0,True,False,False,195087 -2015,Table 1.2,L,25,income_tax_after_credits,All,1500000.0,2000000.0,False,False,False,38594091000 -2015,Table 1.2,K,25,income_tax_after_credits,All,1500000.0,2000000.0,True,False,False,79731 -2015,Table 1.2,L,26,income_tax_after_credits,All,2000000.0,5000000.0,False,False,False,98361813000 -2015,Table 1.2,K,26,income_tax_after_credits,All,2000000.0,5000000.0,True,False,False,116288 -2015,Table 1.2,L,27,income_tax_after_credits,All,5000000.0,10000000.0,False,False,False,54239522000 -2015,Table 1.2,K,27,income_tax_after_credits,All,5000000.0,10000000.0,True,False,False,28583 -2015,Table 1.2,L,28,income_tax_after_credits,All,10000000.0,inf,False,False,False,131338237000 -2015,Table 1.2,K,28,income_tax_after_credits,All,10000000.0,inf,True,False,False,18012 -2015,Table 1.4,EI,10,income_tax_before_credits,All,-inf,0.0,False,False,False,276447000 -2015,Table 1.4,EH,10,income_tax_before_credits,All,-inf,0.0,True,False,False,52934 -2015,Table 1.4,EI,9,income_tax_before_credits,All,-inf,inf,False,False,True,1516165675000 -2015,Table 1.4,EH,9,income_tax_before_credits,All,-inf,inf,True,False,True,114482785 -2015,Table 1.4,EI,11,income_tax_before_credits,All,1.0,5000.0,False,False,False,63583000 -2015,Table 1.4,EH,11,income_tax_before_credits,All,1.0,5000.0,True,False,False,277180 -2015,Table 1.4,EI,12,income_tax_before_credits,All,5000.0,10000.0,False,False,False,412244000 -2015,Table 1.4,EH,12,income_tax_before_credits,All,5000.0,10000.0,True,False,False,2025070 -2015,Table 1.4,EI,13,income_tax_before_credits,All,10000.0,15000.0,False,False,False,1802382000 -2015,Table 1.4,EH,13,income_tax_before_credits,All,10000.0,15000.0,True,False,False,6033815 -2015,Table 1.4,EI,14,income_tax_before_credits,All,15000.0,20000.0,False,False,False,4400309000 -2015,Table 1.4,EH,14,income_tax_before_credits,All,15000.0,20000.0,True,False,False,6874181 -2015,Table 1.4,EI,15,income_tax_before_credits,All,20000.0,25000.0,False,False,False,7889130000 -2015,Table 1.4,EH,15,income_tax_before_credits,All,20000.0,25000.0,True,False,False,7797618 -2015,Table 1.4,EI,16,income_tax_before_credits,All,25000.0,30000.0,False,False,False,11452784000 -2015,Table 1.4,EH,16,income_tax_before_credits,All,25000.0,30000.0,True,False,False,7927284 -2015,Table 1.4,EI,17,income_tax_before_credits,All,30000.0,40000.0,False,False,False,31571224000 -2015,Table 1.4,EH,17,income_tax_before_credits,All,30000.0,40000.0,True,False,False,14274348 -2015,Table 1.4,EI,18,income_tax_before_credits,All,40000.0,50000.0,False,False,False,38429463000 -2015,Table 1.4,EH,18,income_tax_before_credits,All,40000.0,50000.0,True,False,False,11449438 -2015,Table 1.4,EI,19,income_tax_before_credits,All,50000.0,75000.0,False,False,False,112834149000 -2015,Table 1.4,EH,19,income_tax_before_credits,All,50000.0,75000.0,True,False,False,19806008 -2015,Table 1.4,EI,20,income_tax_before_credits,All,75000.0,100000.0,False,False,False,116165597000 -2015,Table 1.4,EH,20,income_tax_before_credits,All,75000.0,100000.0,True,False,False,12736353 -2015,Table 1.4,EI,21,income_tax_before_credits,All,100000.0,200000.0,False,False,False,330069452000 -2015,Table 1.4,EH,21,income_tax_before_credits,All,100000.0,200000.0,True,False,False,18483267 -2015,Table 1.4,EI,22,income_tax_before_credits,All,200000.0,500000.0,False,False,False,302060350000 -2015,Table 1.4,EH,22,income_tax_before_credits,All,200000.0,500000.0,True,False,False,5422360 -2015,Table 1.4,EI,23,income_tax_before_credits,All,500000.0,1000000.0,False,False,False,155670713000 -2015,Table 1.4,EH,23,income_tax_before_credits,All,500000.0,1000000.0,True,False,False,883896 -2015,Table 1.4,EI,24,income_tax_before_credits,All,1000000.0,1500000.0,False,False,False,67038640000 -2015,Table 1.4,EH,24,income_tax_before_credits,All,1000000.0,1500000.0,True,False,False,195769 -2015,Table 1.4,EI,25,income_tax_before_credits,All,1500000.0,2000000.0,False,False,False,40191435000 -2015,Table 1.4,EH,25,income_tax_before_credits,All,1500000.0,2000000.0,True,False,False,79933 -2015,Table 1.4,EI,26,income_tax_before_credits,All,2000000.0,5000000.0,False,False,False,102164371000 -2015,Table 1.4,EH,26,income_tax_before_credits,All,2000000.0,5000000.0,True,False,False,116618 -2015,Table 1.4,EI,27,income_tax_before_credits,All,5000000.0,10000000.0,False,False,False,56313454000 -2015,Table 1.4,EH,27,income_tax_before_credits,All,5000000.0,10000000.0,True,False,False,28660 -2015,Table 1.4,EI,28,income_tax_before_credits,All,10000000.0,inf,False,False,False,137359950000 -2015,Table 1.4,EH,28,income_tax_before_credits,All,10000000.0,inf,True,False,False,18051 -2015,Table 2.1,CF,10,interest_paid_deductions,All,-inf,inf,False,False,True,304461163000 -2015,Table 2.1,CE,10,interest_paid_deductions,All,-inf,inf,True,False,True,33301990 -2015,Table 2.1,CF,11,interest_paid_deductions,All,0.0,5000.0,False,False,False,1231416000 -2015,Table 2.1,CE,11,interest_paid_deductions,All,0.0,5000.0,True,False,False,172738 -2015,Table 2.1,CF,12,interest_paid_deductions,All,5000.0,10000.0,False,False,False,1284063000 -2015,Table 2.1,CE,12,interest_paid_deductions,All,5000.0,10000.0,True,False,False,194117 -2015,Table 2.1,CF,13,interest_paid_deductions,All,10000.0,15000.0,False,False,False,2148799000 -2015,Table 2.1,CE,13,interest_paid_deductions,All,10000.0,15000.0,True,False,False,347692 -2015,Table 2.1,CF,14,interest_paid_deductions,All,15000.0,20000.0,False,False,False,2699978000 -2015,Table 2.1,CE,14,interest_paid_deductions,All,15000.0,20000.0,True,False,False,428197 -2015,Table 2.1,CF,15,interest_paid_deductions,All,20000.0,25000.0,False,False,False,3181401000 -2015,Table 2.1,CE,15,interest_paid_deductions,All,20000.0,25000.0,True,False,False,460451 -2015,Table 2.1,CF,16,interest_paid_deductions,All,25000.0,30000.0,False,False,False,3748228000 -2015,Table 2.1,CE,16,interest_paid_deductions,All,25000.0,30000.0,True,False,False,587849 -2015,Table 2.1,CF,17,interest_paid_deductions,All,30000.0,35000.0,False,False,False,4214763000 -2015,Table 2.1,CE,17,interest_paid_deductions,All,30000.0,35000.0,True,False,False,666457 -2015,Table 2.1,CF,18,interest_paid_deductions,All,35000.0,40000.0,False,False,False,5435778000 -2015,Table 2.1,CE,18,interest_paid_deductions,All,35000.0,40000.0,True,False,False,841538 -2015,Table 2.1,CF,19,interest_paid_deductions,All,40000.0,45000.0,False,False,False,6009927000 -2015,Table 2.1,CE,19,interest_paid_deductions,All,40000.0,45000.0,True,False,False,948445 -2015,Table 2.1,CF,20,interest_paid_deductions,All,45000.0,50000.0,False,False,False,6888540000 -2015,Table 2.1,CE,20,interest_paid_deductions,All,45000.0,50000.0,True,False,False,1043221 -2015,Table 2.1,CF,21,interest_paid_deductions,All,50000.0,55000.0,False,False,False,6955789000 -2015,Table 2.1,CE,21,interest_paid_deductions,All,50000.0,55000.0,True,False,False,1073182 -2015,Table 2.1,CF,22,interest_paid_deductions,All,55000.0,60000.0,False,False,False,7424513000 -2015,Table 2.1,CE,22,interest_paid_deductions,All,55000.0,60000.0,True,False,False,1130318 -2015,Table 2.1,CF,23,interest_paid_deductions,All,60000.0,75000.0,False,False,False,23294604000 -2015,Table 2.1,CE,23,interest_paid_deductions,All,60000.0,75000.0,True,False,False,3249632 -2015,Table 2.1,CF,24,interest_paid_deductions,All,75000.0,100000.0,False,False,False,43398259000 -2015,Table 2.1,CE,24,interest_paid_deductions,All,75000.0,100000.0,True,False,False,5450663 -2015,Table 2.1,CF,25,interest_paid_deductions,All,100000.0,200000.0,False,False,False,104846625000 -2015,Table 2.1,CE,25,interest_paid_deductions,All,100000.0,200000.0,True,False,False,11629322 -2015,Table 2.1,CF,26,interest_paid_deductions,All,200000.0,500000.0,False,False,False,53562301000 -2015,Table 2.1,CE,26,interest_paid_deductions,All,200000.0,500000.0,True,False,False,4106793 -2015,Table 2.1,CF,27,interest_paid_deductions,All,500000.0,1000000.0,False,False,False,12836968000 -2015,Table 2.1,CE,27,interest_paid_deductions,All,500000.0,1000000.0,True,False,False,657620 -2015,Table 2.1,CF,28,interest_paid_deductions,All,1000000.0,1500000.0,False,False,False,3505209000 -2015,Table 2.1,CE,28,interest_paid_deductions,All,1000000.0,1500000.0,True,False,False,137332 -2015,Table 2.1,CF,29,interest_paid_deductions,All,1500000.0,2000000.0,False,False,False,1666807000 -2015,Table 2.1,CE,29,interest_paid_deductions,All,1500000.0,2000000.0,True,False,False,55881 -2015,Table 2.1,CF,30,interest_paid_deductions,All,2000000.0,5000000.0,False,False,False,3412493000 -2015,Table 2.1,CE,30,interest_paid_deductions,All,2000000.0,5000000.0,True,False,False,84234 -2015,Table 2.1,CF,31,interest_paid_deductions,All,5000000.0,10000000.0,False,False,False,1535736000 -2015,Table 2.1,CE,31,interest_paid_deductions,All,5000000.0,10000000.0,True,False,False,21758 -2015,Table 2.1,CF,32,interest_paid_deductions,All,10000000.0,inf,False,False,False,5178966000 -2015,Table 2.1,CE,32,interest_paid_deductions,All,10000000.0,inf,True,False,False,14548 -2015,Table 1.4,AI,10,ira_distributions,All,-inf,0.0,False,False,False,2064540000 -2015,Table 1.4,AH,10,ira_distributions,All,-inf,0.0,True,False,False,137120 -2015,Table 1.4,AI,9,ira_distributions,All,-inf,inf,False,False,True,253213041000 -2015,Table 1.4,AH,9,ira_distributions,All,-inf,inf,True,False,True,14159018 -2015,Table 1.4,AI,11,ira_distributions,All,1.0,5000.0,False,False,False,1141198000 -2015,Table 1.4,AH,11,ira_distributions,All,1.0,5000.0,True,False,False,341198 -2015,Table 1.4,AI,12,ira_distributions,All,5000.0,10000.0,False,False,False,2781145000 -2015,Table 1.4,AH,12,ira_distributions,All,5000.0,10000.0,True,False,False,590259 -2015,Table 1.4,AI,13,ira_distributions,All,10000.0,15000.0,False,False,False,4470039000 -2015,Table 1.4,AH,13,ira_distributions,All,10000.0,15000.0,True,False,False,724858 -2015,Table 1.4,AI,14,ira_distributions,All,15000.0,20000.0,False,False,False,4835309000 -2015,Table 1.4,AH,14,ira_distributions,All,15000.0,20000.0,True,False,False,666843 -2015,Table 1.4,AI,15,ira_distributions,All,20000.0,25000.0,False,False,False,5104234000 -2015,Table 1.4,AH,15,ira_distributions,All,20000.0,25000.0,True,False,False,636239 -2015,Table 1.4,AI,16,ira_distributions,All,25000.0,30000.0,False,False,False,4905412000 -2015,Table 1.4,AH,16,ira_distributions,All,25000.0,30000.0,True,False,False,552767 -2015,Table 1.4,AI,17,ira_distributions,All,30000.0,40000.0,False,False,False,10670749000 -2015,Table 1.4,AH,17,ira_distributions,All,30000.0,40000.0,True,False,False,1078333 -2015,Table 1.4,AI,18,ira_distributions,All,40000.0,50000.0,False,False,False,10855178000 -2015,Table 1.4,AH,18,ira_distributions,All,40000.0,50000.0,True,False,False,991898 -2015,Table 1.4,AI,19,ira_distributions,All,50000.0,75000.0,False,False,False,32261073000 -2015,Table 1.4,AH,19,ira_distributions,All,50000.0,75000.0,True,False,False,2370301 -2015,Table 1.4,AI,20,ira_distributions,All,75000.0,100000.0,False,False,False,36089085000 -2015,Table 1.4,AH,20,ira_distributions,All,75000.0,100000.0,True,False,False,1933400 -2015,Table 1.4,AI,21,ira_distributions,All,100000.0,200000.0,False,False,False,79751792000 -2015,Table 1.4,AH,21,ira_distributions,All,100000.0,200000.0,True,False,False,2997506 -2015,Table 1.4,AI,22,ira_distributions,All,200000.0,500000.0,False,False,False,44053588000 -2015,Table 1.4,AH,22,ira_distributions,All,200000.0,500000.0,True,False,False,938904 -2015,Table 1.4,AI,23,ira_distributions,All,500000.0,1000000.0,False,False,False,9379854000 -2015,Table 1.4,AH,23,ira_distributions,All,500000.0,1000000.0,True,False,False,135662 -2015,Table 1.4,AI,24,ira_distributions,All,1000000.0,1500000.0,False,False,False,1851835000 -2015,Table 1.4,AH,24,ira_distributions,All,1000000.0,1500000.0,True,False,False,29577 -2015,Table 1.4,AI,25,ira_distributions,All,1500000.0,2000000.0,False,False,False,763721000 -2015,Table 1.4,AH,25,ira_distributions,All,1500000.0,2000000.0,True,False,False,11523 -2015,Table 1.4,AI,26,ira_distributions,All,2000000.0,5000000.0,False,False,False,1295739000 -2015,Table 1.4,AH,26,ira_distributions,All,2000000.0,5000000.0,True,False,False,16389 -2015,Table 1.4,AI,27,ira_distributions,All,5000000.0,10000000.0,False,False,False,465381000 -2015,Table 1.4,AH,27,ira_distributions,All,5000000.0,10000000.0,True,False,False,3940 -2015,Table 1.4,AI,28,ira_distributions,All,10000000.0,inf,False,False,False,473170000 -2015,Table 1.4,AH,28,ira_distributions,All,10000000.0,inf,True,False,False,2303 -2015,Table 1.2,F,10,itemized_deductions,All,-inf,0.0,False,False,False,0 -2015,Table 1.2,E,10,itemized_deductions,All,-inf,0.0,True,False,False,0 -2015,Table 1.2,F,9,itemized_deductions,All,-inf,inf,False,False,True,1257437010000 -2015,Table 1.2,E,9,itemized_deductions,All,-inf,inf,True,False,True,44567263 -2015,Table 1.2,F,11,itemized_deductions,All,1.0,5000.0,False,False,False,5062303000 -2015,Table 1.2,E,11,itemized_deductions,All,1.0,5000.0,True,False,False,317443 -2015,Table 1.2,F,12,itemized_deductions,All,5000.0,10000.0,False,False,False,6390443000 -2015,Table 1.2,E,12,itemized_deductions,All,5000.0,10000.0,True,False,False,384355 -2015,Table 1.2,F,13,itemized_deductions,All,10000.0,15000.0,False,False,False,9962058000 -2015,Table 1.2,E,13,itemized_deductions,All,10000.0,15000.0,True,False,False,662599 -2015,Table 1.2,F,14,itemized_deductions,All,15000.0,20000.0,False,False,False,12524176000 -2015,Table 1.2,E,14,itemized_deductions,All,15000.0,20000.0,True,False,False,811728 -2015,Table 1.2,F,15,itemized_deductions,All,20000.0,25000.0,False,False,False,14912176000 -2015,Table 1.2,E,15,itemized_deductions,All,20000.0,25000.0,True,False,False,941085 -2015,Table 1.2,F,16,itemized_deductions,All,25000.0,30000.0,False,False,False,17588605000 -2015,Table 1.2,E,16,itemized_deductions,All,25000.0,30000.0,True,False,False,1081500 -2015,Table 1.2,F,17,itemized_deductions,All,30000.0,40000.0,False,False,False,40798529000 -2015,Table 1.2,E,17,itemized_deductions,All,30000.0,40000.0,True,False,False,2565311 -2015,Table 1.2,F,18,itemized_deductions,All,40000.0,50000.0,False,False,False,48716667000 -2015,Table 1.2,E,18,itemized_deductions,All,40000.0,50000.0,True,False,False,2983529 -2015,Table 1.2,F,19,itemized_deductions,All,50000.0,75000.0,False,False,False,134805158000 -2015,Table 1.2,E,19,itemized_deductions,All,50000.0,75000.0,True,False,False,7518141 -2015,Table 1.2,F,20,itemized_deductions,All,75000.0,100000.0,False,False,False,143109518000 -2015,Table 1.2,E,20,itemized_deductions,All,75000.0,100000.0,True,False,False,6957567 -2015,Table 1.2,F,21,itemized_deductions,All,100000.0,200000.0,False,False,False,358208357000 -2015,Table 1.2,E,21,itemized_deductions,All,100000.0,200000.0,True,False,False,14038259 -2015,Table 1.2,F,22,itemized_deductions,All,200000.0,500000.0,False,False,False,220760559000 -2015,Table 1.2,E,22,itemized_deductions,All,200000.0,500000.0,True,False,False,5083499 -2015,Table 1.2,F,23,itemized_deductions,All,500000.0,1000000.0,False,False,False,69703881000 -2015,Table 1.2,E,23,itemized_deductions,All,500000.0,1000000.0,True,False,False,821784 -2015,Table 1.2,F,24,itemized_deductions,All,1000000.0,1500000.0,False,False,False,26437560000 -2015,Table 1.2,E,24,itemized_deductions,All,1000000.0,1500000.0,True,False,False,177407 -2015,Table 1.2,F,25,itemized_deductions,All,1500000.0,2000000.0,False,False,False,14954416000 -2015,Table 1.2,E,25,itemized_deductions,All,1500000.0,2000000.0,True,False,False,71685 -2015,Table 1.2,F,26,itemized_deductions,All,2000000.0,5000000.0,False,False,False,38021038000 -2015,Table 1.2,E,26,itemized_deductions,All,2000000.0,5000000.0,True,False,False,106755 -2015,Table 1.2,F,27,itemized_deductions,All,5000000.0,10000000.0,False,False,False,21753953000 -2015,Table 1.2,E,27,itemized_deductions,All,5000000.0,10000000.0,True,False,False,27125 -2015,Table 1.2,F,28,itemized_deductions,All,10000000.0,inf,False,False,False,73727614000 -2015,Table 1.2,E,28,itemized_deductions,All,10000000.0,inf,True,False,False,17490 -2015,Table 2.1,BX,10,itemized_general_sales_tax_deduction,All,-inf,inf,False,False,True,17641159000 -2015,Table 2.1,BW,10,itemized_general_sales_tax_deduction,All,-inf,inf,True,False,True,9627447 -2015,Table 2.1,BX,11,itemized_general_sales_tax_deduction,All,0.0,5000.0,False,False,False,87240000 -2015,Table 2.1,BW,11,itemized_general_sales_tax_deduction,All,0.0,5000.0,True,False,False,171918 -2015,Table 2.1,BX,12,itemized_general_sales_tax_deduction,All,5000.0,10000.0,False,False,False,110588000 -2015,Table 2.1,BW,12,itemized_general_sales_tax_deduction,All,5000.0,10000.0,True,False,False,221951 -2015,Table 2.1,BX,13,itemized_general_sales_tax_deduction,All,10000.0,15000.0,False,False,False,241775000 -2015,Table 2.1,BW,13,itemized_general_sales_tax_deduction,All,10000.0,15000.0,True,False,False,366031 -2015,Table 2.1,BX,14,itemized_general_sales_tax_deduction,All,15000.0,20000.0,False,False,False,294130000 -2015,Table 2.1,BW,14,itemized_general_sales_tax_deduction,All,15000.0,20000.0,True,False,False,400738 -2015,Table 2.1,BX,15,itemized_general_sales_tax_deduction,All,20000.0,25000.0,False,False,False,359337000 -2015,Table 2.1,BW,15,itemized_general_sales_tax_deduction,All,20000.0,25000.0,True,False,False,436445 -2015,Table 2.1,BX,16,itemized_general_sales_tax_deduction,All,25000.0,30000.0,False,False,False,400764000 -2015,Table 2.1,BW,16,itemized_general_sales_tax_deduction,All,25000.0,30000.0,True,False,False,428556 -2015,Table 2.1,BX,17,itemized_general_sales_tax_deduction,All,30000.0,35000.0,False,False,False,403013000 -2015,Table 2.1,BW,17,itemized_general_sales_tax_deduction,All,30000.0,35000.0,True,False,False,409050 -2015,Table 2.1,BX,18,itemized_general_sales_tax_deduction,All,35000.0,40000.0,False,False,False,440235000 -2015,Table 2.1,BW,18,itemized_general_sales_tax_deduction,All,35000.0,40000.0,True,False,False,372727 -2015,Table 2.1,BX,19,itemized_general_sales_tax_deduction,All,40000.0,45000.0,False,False,False,490661000 -2015,Table 2.1,BW,19,itemized_general_sales_tax_deduction,All,40000.0,45000.0,True,False,False,411600 -2015,Table 2.1,BX,20,itemized_general_sales_tax_deduction,All,45000.0,50000.0,False,False,False,468137000 -2015,Table 2.1,BW,20,itemized_general_sales_tax_deduction,All,45000.0,50000.0,True,False,False,391616 -2015,Table 2.1,BX,21,itemized_general_sales_tax_deduction,All,50000.0,55000.0,False,False,False,473215000 -2015,Table 2.1,BW,21,itemized_general_sales_tax_deduction,All,50000.0,55000.0,True,False,False,355135 -2015,Table 2.1,BX,22,itemized_general_sales_tax_deduction,All,55000.0,60000.0,False,False,False,461612000 -2015,Table 2.1,BW,22,itemized_general_sales_tax_deduction,All,55000.0,60000.0,True,False,False,360318 -2015,Table 2.1,BX,23,itemized_general_sales_tax_deduction,All,60000.0,75000.0,False,False,False,1451762000 -2015,Table 2.1,BW,23,itemized_general_sales_tax_deduction,All,60000.0,75000.0,True,False,False,956422 -2015,Table 2.1,BX,24,itemized_general_sales_tax_deduction,All,75000.0,100000.0,False,False,False,2286745000 -2015,Table 2.1,BW,24,itemized_general_sales_tax_deduction,All,75000.0,100000.0,True,False,False,1238586 -2015,Table 2.1,BX,25,itemized_general_sales_tax_deduction,All,100000.0,200000.0,False,False,False,5271602000 -2015,Table 2.1,BW,25,itemized_general_sales_tax_deduction,All,100000.0,200000.0,True,False,False,2153784 -2015,Table 2.1,BX,26,itemized_general_sales_tax_deduction,All,200000.0,500000.0,False,False,False,2841962000 -2015,Table 2.1,BW,26,itemized_general_sales_tax_deduction,All,200000.0,500000.0,True,False,False,783747 -2015,Table 2.1,BX,27,itemized_general_sales_tax_deduction,All,500000.0,1000000.0,False,False,False,633305000 -2015,Table 2.1,BW,27,itemized_general_sales_tax_deduction,All,500000.0,1000000.0,True,False,False,118949 -2015,Table 2.1,BX,28,itemized_general_sales_tax_deduction,All,1000000.0,1500000.0,False,False,False,207725000 -2015,Table 2.1,BW,28,itemized_general_sales_tax_deduction,All,1000000.0,1500000.0,True,False,False,23402 -2015,Table 2.1,BX,29,itemized_general_sales_tax_deduction,All,1500000.0,2000000.0,False,False,False,90099000 -2015,Table 2.1,BW,29,itemized_general_sales_tax_deduction,All,1500000.0,2000000.0,True,False,False,8828 -2015,Table 2.1,BX,30,itemized_general_sales_tax_deduction,All,2000000.0,5000000.0,False,False,False,216404000 -2015,Table 2.1,BW,30,itemized_general_sales_tax_deduction,All,2000000.0,5000000.0,True,False,False,12503 -2015,Table 2.1,BX,31,itemized_general_sales_tax_deduction,All,5000000.0,10000000.0,False,False,False,107886000 -2015,Table 2.1,BW,31,itemized_general_sales_tax_deduction,All,5000000.0,10000000.0,True,False,False,3184 -2015,Table 2.1,BX,32,itemized_general_sales_tax_deduction,All,10000000.0,inf,False,False,False,302960000 -2015,Table 2.1,BW,32,itemized_general_sales_tax_deduction,All,10000000.0,inf,True,False,False,1957 -2015,Table 2.1,BZ,10,itemized_real_estate_tax_deductions,All,-inf,inf,False,False,True,188605843000 -2015,Table 2.1,BY,10,itemized_real_estate_tax_deductions,All,-inf,inf,True,False,True,37613402 -2015,Table 2.1,BZ,11,itemized_real_estate_tax_deductions,All,0.0,5000.0,False,False,False,824302000 -2015,Table 2.1,BY,11,itemized_real_estate_tax_deductions,All,0.0,5000.0,True,False,False,218583 -2015,Table 2.1,BZ,12,itemized_real_estate_tax_deductions,All,5000.0,10000.0,False,False,False,1007214000 -2015,Table 2.1,BY,12,itemized_real_estate_tax_deductions,All,5000.0,10000.0,True,False,False,280431 -2015,Table 2.1,BZ,13,itemized_real_estate_tax_deductions,All,10000.0,15000.0,False,False,False,1604278000 -2015,Table 2.1,BY,13,itemized_real_estate_tax_deductions,All,10000.0,15000.0,True,False,False,472620 -2015,Table 2.1,BZ,14,itemized_real_estate_tax_deductions,All,15000.0,20000.0,False,False,False,1916831000 -2015,Table 2.1,BY,14,itemized_real_estate_tax_deductions,All,15000.0,20000.0,True,False,False,557094 -2015,Table 2.1,BZ,15,itemized_real_estate_tax_deductions,All,20000.0,25000.0,False,False,False,2079351000 -2015,Table 2.1,BY,15,itemized_real_estate_tax_deductions,All,20000.0,25000.0,True,False,False,616136 -2015,Table 2.1,BZ,16,itemized_real_estate_tax_deductions,All,25000.0,30000.0,False,False,False,2261238000 -2015,Table 2.1,BY,16,itemized_real_estate_tax_deductions,All,25000.0,30000.0,True,False,False,689101 -2015,Table 2.1,BZ,17,itemized_real_estate_tax_deductions,All,30000.0,35000.0,False,False,False,2593568000 -2015,Table 2.1,BY,17,itemized_real_estate_tax_deductions,All,30000.0,35000.0,True,False,False,810615 -2015,Table 2.1,BZ,18,itemized_real_estate_tax_deductions,All,35000.0,40000.0,False,False,False,3149207000 -2015,Table 2.1,BY,18,itemized_real_estate_tax_deductions,All,35000.0,40000.0,True,False,False,974691 -2015,Table 2.1,BZ,19,itemized_real_estate_tax_deductions,All,40000.0,45000.0,False,False,False,3272842000 -2015,Table 2.1,BY,19,itemized_real_estate_tax_deductions,All,40000.0,45000.0,True,False,False,1069338 -2015,Table 2.1,BZ,20,itemized_real_estate_tax_deductions,All,45000.0,50000.0,False,False,False,3506541000 -2015,Table 2.1,BY,20,itemized_real_estate_tax_deductions,All,45000.0,50000.0,True,False,False,1168152 -2015,Table 2.1,BZ,21,itemized_real_estate_tax_deductions,All,50000.0,55000.0,False,False,False,3703059000 -2015,Table 2.1,BY,21,itemized_real_estate_tax_deductions,All,50000.0,55000.0,True,False,False,1190018 -2015,Table 2.1,BZ,22,itemized_real_estate_tax_deductions,All,55000.0,60000.0,False,False,False,4220038000 -2015,Table 2.1,BY,22,itemized_real_estate_tax_deductions,All,55000.0,60000.0,True,False,False,1265965 -2015,Table 2.1,BZ,23,itemized_real_estate_tax_deductions,All,60000.0,75000.0,False,False,False,12521110000 -2015,Table 2.1,BY,23,itemized_real_estate_tax_deductions,All,60000.0,75000.0,True,False,False,3667656 -2015,Table 2.1,BZ,24,itemized_real_estate_tax_deductions,All,75000.0,100000.0,False,False,False,22612411000 -2015,Table 2.1,BY,24,itemized_real_estate_tax_deductions,All,75000.0,100000.0,True,False,False,6008425 -2015,Table 2.1,BZ,25,itemized_real_estate_tax_deductions,All,100000.0,200000.0,False,False,False,63372425000 -2015,Table 2.1,BY,25,itemized_real_estate_tax_deductions,All,100000.0,200000.0,True,False,False,12792762 -2015,Table 2.1,BZ,26,itemized_real_estate_tax_deductions,All,200000.0,500000.0,False,False,False,38337098000 -2015,Table 2.1,BY,26,itemized_real_estate_tax_deductions,All,200000.0,500000.0,True,False,False,4680598 -2015,Table 2.1,BZ,27,itemized_real_estate_tax_deductions,All,500000.0,1000000.0,False,False,False,10816724000 -2015,Table 2.1,BY,27,itemized_real_estate_tax_deductions,All,500000.0,1000000.0,True,False,False,773517 -2015,Table 2.1,BZ,28,itemized_real_estate_tax_deductions,All,1000000.0,1500000.0,False,False,False,3286406000 -2015,Table 2.1,BY,28,itemized_real_estate_tax_deductions,All,1000000.0,1500000.0,True,False,False,166703 -2015,Table 2.1,BZ,29,itemized_real_estate_tax_deductions,All,1500000.0,2000000.0,False,False,False,1649775000 -2015,Table 2.1,BY,29,itemized_real_estate_tax_deductions,All,1500000.0,2000000.0,True,False,False,67912 -2015,Table 2.1,BZ,30,itemized_real_estate_tax_deductions,All,2000000.0,5000000.0,False,False,False,3177001000 -2015,Table 2.1,BY,30,itemized_real_estate_tax_deductions,All,2000000.0,5000000.0,True,False,False,100774 -2015,Table 2.1,BZ,31,itemized_real_estate_tax_deductions,All,5000000.0,10000000.0,False,False,False,1218981000 -2015,Table 2.1,BY,31,itemized_real_estate_tax_deductions,All,5000000.0,10000000.0,True,False,False,25647 -2015,Table 2.1,BZ,32,itemized_real_estate_tax_deductions,All,10000000.0,inf,False,False,False,1475443000 -2015,Table 2.1,BY,32,itemized_real_estate_tax_deductions,All,10000000.0,inf,True,False,False,16663 -2015,Table 2.1,BV,10,itemized_state_income_tax_deductions,All,-inf,inf,False,False,True,335060168000 -2015,Table 2.1,BU,10,itemized_state_income_tax_deductions,All,-inf,inf,True,False,True,33063383 -2015,Table 2.1,BV,11,itemized_state_income_tax_deductions,All,0.0,5000.0,False,False,False,247368000 -2015,Table 2.1,BU,11,itemized_state_income_tax_deductions,All,0.0,5000.0,True,False,False,74184 -2015,Table 2.1,BV,12,itemized_state_income_tax_deductions,All,5000.0,10000.0,False,False,False,144224000 -2015,Table 2.1,BU,12,itemized_state_income_tax_deductions,All,5000.0,10000.0,True,False,False,98328 -2015,Table 2.1,BV,13,itemized_state_income_tax_deductions,All,10000.0,15000.0,False,False,False,242932000 -2015,Table 2.1,BU,13,itemized_state_income_tax_deductions,All,10000.0,15000.0,True,False,False,192403 -2015,Table 2.1,BV,14,itemized_state_income_tax_deductions,All,15000.0,20000.0,False,False,False,352591000 -2015,Table 2.1,BU,14,itemized_state_income_tax_deductions,All,15000.0,20000.0,True,False,False,313094 -2015,Table 2.1,BV,15,itemized_state_income_tax_deductions,All,20000.0,25000.0,False,False,False,503057000 -2015,Table 2.1,BU,15,itemized_state_income_tax_deductions,All,20000.0,25000.0,True,False,False,406796 -2015,Table 2.1,BV,16,itemized_state_income_tax_deductions,All,25000.0,30000.0,False,False,False,766251000 -2015,Table 2.1,BU,16,itemized_state_income_tax_deductions,All,25000.0,30000.0,True,False,False,557060 -2015,Table 2.1,BV,17,itemized_state_income_tax_deductions,All,30000.0,35000.0,False,False,False,1041293000 -2015,Table 2.1,BU,17,itemized_state_income_tax_deductions,All,30000.0,35000.0,True,False,False,693840 -2015,Table 2.1,BV,18,itemized_state_income_tax_deductions,All,35000.0,40000.0,False,False,False,1511583000 -2015,Table 2.1,BU,18,itemized_state_income_tax_deductions,All,35000.0,40000.0,True,False,False,899962 -2015,Table 2.1,BV,19,itemized_state_income_tax_deductions,All,40000.0,45000.0,False,False,False,1985224000 -2015,Table 2.1,BU,19,itemized_state_income_tax_deductions,All,40000.0,45000.0,True,False,False,955900 -2015,Table 2.1,BV,20,itemized_state_income_tax_deductions,All,45000.0,50000.0,False,False,False,2305387000 -2015,Table 2.1,BU,20,itemized_state_income_tax_deductions,All,45000.0,50000.0,True,False,False,1049616 -2015,Table 2.1,BV,21,itemized_state_income_tax_deductions,All,50000.0,55000.0,False,False,False,2749265000 -2015,Table 2.1,BU,21,itemized_state_income_tax_deductions,All,50000.0,55000.0,True,False,False,1103076 -2015,Table 2.1,BV,22,itemized_state_income_tax_deductions,All,55000.0,60000.0,False,False,False,3107467000 -2015,Table 2.1,BU,22,itemized_state_income_tax_deductions,All,55000.0,60000.0,True,False,False,1126872 -2015,Table 2.1,BV,23,itemized_state_income_tax_deductions,All,60000.0,75000.0,False,False,False,10587597000 -2015,Table 2.1,BU,23,itemized_state_income_tax_deductions,All,60000.0,75000.0,True,False,False,3290380 -2015,Table 2.1,BV,24,itemized_state_income_tax_deductions,All,75000.0,100000.0,False,False,False,23415401000 -2015,Table 2.1,BU,24,itemized_state_income_tax_deductions,All,75000.0,100000.0,True,False,False,5511568 -2015,Table 2.1,BV,25,itemized_state_income_tax_deductions,All,100000.0,200000.0,False,False,False,82897472000 -2015,Table 2.1,BU,25,itemized_state_income_tax_deductions,All,100000.0,200000.0,True,False,False,11533393 -2015,Table 2.1,BV,26,itemized_state_income_tax_deductions,All,200000.0,500000.0,False,False,False,72653258000 -2015,Table 2.1,BU,26,itemized_state_income_tax_deductions,All,200000.0,500000.0,True,False,False,4212361 -2015,Table 2.1,BV,27,itemized_state_income_tax_deductions,All,500000.0,1000000.0,False,False,False,32864770000 -2015,Table 2.1,BU,27,itemized_state_income_tax_deductions,All,500000.0,1000000.0,True,False,False,696445 -2015,Table 2.1,BV,28,itemized_state_income_tax_deductions,All,1000000.0,1500000.0,False,False,False,14294115000 -2015,Table 2.1,BU,28,itemized_state_income_tax_deductions,All,1000000.0,1500000.0,True,False,False,152902 -2015,Table 2.1,BV,29,itemized_state_income_tax_deductions,All,1500000.0,2000000.0,False,False,False,8670169000 -2015,Table 2.1,BU,29,itemized_state_income_tax_deductions,All,1500000.0,2000000.0,True,False,False,62412 -2015,Table 2.1,BV,30,itemized_state_income_tax_deductions,All,2000000.0,5000000.0,False,False,False,23164930000 -2015,Table 2.1,BU,30,itemized_state_income_tax_deductions,All,2000000.0,5000000.0,True,False,False,93602 -2015,Table 2.1,BV,31,itemized_state_income_tax_deductions,All,5000000.0,10000000.0,False,False,False,13447411000 -2015,Table 2.1,BU,31,itemized_state_income_tax_deductions,All,5000000.0,10000000.0,True,False,False,23772 -2015,Table 2.1,BV,32,itemized_state_income_tax_deductions,All,10000000.0,inf,False,False,False,38108401000 -2015,Table 2.1,BU,32,itemized_state_income_tax_deductions,All,10000000.0,inf,True,False,False,15419 -2015,Table 2.1,BR,10,itemized_taxes_paid_deductions,All,-inf,inf,False,False,True,553015621000 -2015,Table 2.1,BQ,10,itemized_taxes_paid_deductions,All,-inf,inf,True,False,True,44191436 -2015,Table 2.1,BR,11,itemized_taxes_paid_deductions,All,0.0,5000.0,False,False,False,1202092000 -2015,Table 2.1,BQ,11,itemized_taxes_paid_deductions,All,0.0,5000.0,True,False,False,297983 -2015,Table 2.1,BR,12,itemized_taxes_paid_deductions,All,5000.0,10000.0,False,False,False,1341118000 -2015,Table 2.1,BQ,12,itemized_taxes_paid_deductions,All,5000.0,10000.0,True,False,False,366055 -2015,Table 2.1,BR,13,itemized_taxes_paid_deductions,All,10000.0,15000.0,False,False,False,2181494000 -2015,Table 2.1,BQ,13,itemized_taxes_paid_deductions,All,10000.0,15000.0,True,False,False,627733 -2015,Table 2.1,BR,14,itemized_taxes_paid_deductions,All,15000.0,20000.0,False,False,False,2687159000 -2015,Table 2.1,BQ,14,itemized_taxes_paid_deductions,All,15000.0,20000.0,True,False,False,774558 -2015,Table 2.1,BR,15,itemized_taxes_paid_deductions,All,20000.0,25000.0,False,False,False,3074264000 -2015,Table 2.1,BQ,15,itemized_taxes_paid_deductions,All,20000.0,25000.0,True,False,False,909333 -2015,Table 2.1,BR,16,itemized_taxes_paid_deductions,All,25000.0,30000.0,False,False,False,3612496000 -2015,Table 2.1,BQ,16,itemized_taxes_paid_deductions,All,25000.0,30000.0,True,False,False,1055485 -2015,Table 2.1,BR,17,itemized_taxes_paid_deductions,All,30000.0,35000.0,False,False,False,4280465000 -2015,Table 2.1,BQ,17,itemized_taxes_paid_deductions,All,30000.0,35000.0,True,False,False,1172960 -2015,Table 2.1,BR,18,itemized_taxes_paid_deductions,All,35000.0,40000.0,False,False,False,5378442000 -2015,Table 2.1,BQ,18,itemized_taxes_paid_deductions,All,35000.0,40000.0,True,False,False,1348557 -2015,Table 2.1,BR,19,itemized_taxes_paid_deductions,All,40000.0,45000.0,False,False,False,6020858000 -2015,Table 2.1,BQ,19,itemized_taxes_paid_deductions,All,40000.0,45000.0,True,False,False,1433569 -2015,Table 2.1,BR,20,itemized_taxes_paid_deductions,All,45000.0,50000.0,False,False,False,6570716000 -2015,Table 2.1,BQ,20,itemized_taxes_paid_deductions,All,45000.0,50000.0,True,False,False,1508367 -2015,Table 2.1,BR,21,itemized_taxes_paid_deductions,All,50000.0,55000.0,False,False,False,7333689000 -2015,Table 2.1,BQ,21,itemized_taxes_paid_deductions,All,50000.0,55000.0,True,False,False,1513839 -2015,Table 2.1,BR,22,itemized_taxes_paid_deductions,All,55000.0,60000.0,False,False,False,8121461000 -2015,Table 2.1,BQ,22,itemized_taxes_paid_deductions,All,55000.0,60000.0,True,False,False,1531024 -2015,Table 2.1,BR,23,itemized_taxes_paid_deductions,All,60000.0,75000.0,False,False,False,25543705000 -2015,Table 2.1,BQ,23,itemized_taxes_paid_deductions,All,60000.0,75000.0,True,False,False,4408450 -2015,Table 2.1,BR,24,itemized_taxes_paid_deductions,All,75000.0,100000.0,False,False,False,49969183000 -2015,Table 2.1,BQ,24,itemized_taxes_paid_deductions,All,75000.0,100000.0,True,False,False,6930059 -2015,Table 2.1,BR,25,itemized_taxes_paid_deductions,All,100000.0,200000.0,False,False,False,155473408000 -2015,Table 2.1,BQ,25,itemized_taxes_paid_deductions,All,100000.0,200000.0,True,False,False,14013820 -2015,Table 2.1,BR,26,itemized_taxes_paid_deductions,All,200000.0,500000.0,False,False,False,115531174000 -2015,Table 2.1,BQ,26,itemized_taxes_paid_deductions,All,200000.0,500000.0,True,False,False,5078493 -2015,Table 2.1,BR,27,itemized_taxes_paid_deductions,All,500000.0,1000000.0,False,False,False,44741560000 -2015,Table 2.1,BQ,27,itemized_taxes_paid_deductions,All,500000.0,1000000.0,True,False,False,821083 -2015,Table 2.1,BR,28,itemized_taxes_paid_deductions,All,1000000.0,1500000.0,False,False,False,17925210000 -2015,Table 2.1,BQ,28,itemized_taxes_paid_deductions,All,1000000.0,1500000.0,True,False,False,177352 -2015,Table 2.1,BR,29,itemized_taxes_paid_deductions,All,1500000.0,2000000.0,False,False,False,10477365000 -2015,Table 2.1,BQ,29,itemized_taxes_paid_deductions,All,1500000.0,2000000.0,True,False,False,71618 -2015,Table 2.1,BR,30,itemized_taxes_paid_deductions,All,2000000.0,5000000.0,False,False,False,26710615000 -2015,Table 2.1,BQ,30,itemized_taxes_paid_deductions,All,2000000.0,5000000.0,True,False,False,106564 -2015,Table 2.1,BR,31,itemized_taxes_paid_deductions,All,5000000.0,10000000.0,False,False,False,14830289000 -2015,Table 2.1,BQ,31,itemized_taxes_paid_deductions,All,5000000.0,10000000.0,True,False,False,27086 -2015,Table 2.1,BR,32,itemized_taxes_paid_deductions,All,10000000.0,inf,False,False,False,40008857000 -2015,Table 2.1,BQ,32,itemized_taxes_paid_deductions,All,10000000.0,inf,True,False,False,17449 -2015,Table 2.1,BL,10,medical_expense_deductions_capped,All,-inf,inf,False,False,True,86931032000 -2015,Table 2.1,BK,10,medical_expense_deductions_capped,All,-inf,inf,True,False,True,8776985 -2015,Table 2.1,BL,11,medical_expense_deductions_capped,All,0.0,5000.0,False,False,False,2108042000 -2015,Table 2.1,BK,11,medical_expense_deductions_capped,All,0.0,5000.0,True,False,False,227519 -2015,Table 2.1,BL,12,medical_expense_deductions_capped,All,5000.0,10000.0,False,False,False,3013542000 -2015,Table 2.1,BK,12,medical_expense_deductions_capped,All,5000.0,10000.0,True,False,False,279663 -2015,Table 2.1,BL,13,medical_expense_deductions_capped,All,10000.0,15000.0,False,False,False,3936086000 -2015,Table 2.1,BK,13,medical_expense_deductions_capped,All,10000.0,15000.0,True,False,False,463596 -2015,Table 2.1,BL,14,medical_expense_deductions_capped,All,15000.0,20000.0,False,False,False,4297932000 -2015,Table 2.1,BK,14,medical_expense_deductions_capped,All,15000.0,20000.0,True,False,False,490746 -2015,Table 2.1,BL,15,medical_expense_deductions_capped,All,20000.0,25000.0,False,False,False,4344639000 -2015,Table 2.1,BK,15,medical_expense_deductions_capped,All,20000.0,25000.0,True,False,False,500858 -2015,Table 2.1,BL,16,medical_expense_deductions_capped,All,25000.0,30000.0,False,False,False,4753902000 -2015,Table 2.1,BK,16,medical_expense_deductions_capped,All,25000.0,30000.0,True,False,False,532022 -2015,Table 2.1,BL,17,medical_expense_deductions_capped,All,30000.0,35000.0,False,False,False,4039786000 -2015,Table 2.1,BK,17,medical_expense_deductions_capped,All,30000.0,35000.0,True,False,False,462326 -2015,Table 2.1,BL,18,medical_expense_deductions_capped,All,35000.0,40000.0,False,False,False,4079939000 -2015,Table 2.1,BK,18,medical_expense_deductions_capped,All,35000.0,40000.0,True,False,False,457498 -2015,Table 2.1,BL,19,medical_expense_deductions_capped,All,40000.0,45000.0,False,False,False,3972063000 -2015,Table 2.1,BK,19,medical_expense_deductions_capped,All,40000.0,45000.0,True,False,False,452333 -2015,Table 2.1,BL,20,medical_expense_deductions_capped,All,45000.0,50000.0,False,False,False,3375631000 -2015,Table 2.1,BK,20,medical_expense_deductions_capped,All,45000.0,50000.0,True,False,False,390758 -2015,Table 2.1,BL,21,medical_expense_deductions_capped,All,50000.0,55000.0,False,False,False,3696461000 -2015,Table 2.1,BK,21,medical_expense_deductions_capped,All,50000.0,55000.0,True,False,False,404991 -2015,Table 2.1,BL,22,medical_expense_deductions_capped,All,55000.0,60000.0,False,False,False,3889988000 -2015,Table 2.1,BK,22,medical_expense_deductions_capped,All,55000.0,60000.0,True,False,False,423434 -2015,Table 2.1,BL,23,medical_expense_deductions_capped,All,60000.0,75000.0,False,False,False,9137304000 -2015,Table 2.1,BK,23,medical_expense_deductions_capped,All,60000.0,75000.0,True,False,False,992870 -2015,Table 2.1,BL,24,medical_expense_deductions_capped,All,75000.0,100000.0,False,False,False,12672435000 -2015,Table 2.1,BK,24,medical_expense_deductions_capped,All,75000.0,100000.0,True,False,False,1222955 -2015,Table 2.1,BL,25,medical_expense_deductions_capped,All,100000.0,200000.0,False,False,False,14963159000 -2015,Table 2.1,BK,25,medical_expense_deductions_capped,All,100000.0,200000.0,True,False,False,1306677 -2015,Table 2.1,BL,26,medical_expense_deductions_capped,All,200000.0,500000.0,False,False,False,3896808000 -2015,Table 2.1,BK,26,medical_expense_deductions_capped,All,200000.0,500000.0,True,False,False,159468 -2015,Table 2.1,BL,27,medical_expense_deductions_capped,All,500000.0,1000000.0,False,False,False,565102000 -2015,Table 2.1,BK,27,medical_expense_deductions_capped,All,500000.0,1000000.0,True,False,False,7735 -2015,Table 2.1,BL,28,medical_expense_deductions_capped,All,1000000.0,1500000.0,False,False,False,110275000 -2015,Table 2.1,BK,28,medical_expense_deductions_capped,All,1000000.0,1500000.0,True,False,False,972 -2015,Table 2.1,BL,29,medical_expense_deductions_capped,All,1500000.0,2000000.0,False,False,False,32909000 -2015,Table 2.1,BK,29,medical_expense_deductions_capped,All,1500000.0,2000000.0,True,False,False,301 -2015,Table 2.1,BL,30,medical_expense_deductions_capped,All,2000000.0,5000000.0,False,False,False,36553000 -2015,Table 2.1,BK,30,medical_expense_deductions_capped,All,2000000.0,5000000.0,True,False,False,242 -2015,Table 2.1,BL,31,medical_expense_deductions_capped,All,5000000.0,10000000.0,False,False,False,8477000 -2015,Table 2.1,BK,31,medical_expense_deductions_capped,All,5000000.0,10000000.0,True,False,False,22 -2015,Table 2.1,BL,32,medical_expense_deductions_capped,All,10000000.0,inf,False,False,False,0 -2015,Table 2.1,BK,32,medical_expense_deductions_capped,All,10000000.0,inf,True,False,False,0 -2015,Table 2.1,BN,10,medical_expense_deductions_uncapped,All,-inf,inf,False,False,True,133785340000 -2015,Table 2.1,BM,10,medical_expense_deductions_uncapped,All,-inf,inf,True,False,True,8776985 -2015,Table 2.1,BN,11,medical_expense_deductions_uncapped,All,0.0,5000.0,False,False,False,2154665000 -2015,Table 2.1,BM,11,medical_expense_deductions_uncapped,All,0.0,5000.0,True,False,False,227519 -2015,Table 2.1,BN,12,medical_expense_deductions_uncapped,All,5000.0,10000.0,False,False,False,3188696000 -2015,Table 2.1,BM,12,medical_expense_deductions_uncapped,All,5000.0,10000.0,True,False,False,279663 -2015,Table 2.1,BN,13,medical_expense_deductions_uncapped,All,10000.0,15000.0,False,False,False,4414676000 -2015,Table 2.1,BM,13,medical_expense_deductions_uncapped,All,10000.0,15000.0,True,False,False,463596 -2015,Table 2.1,BN,14,medical_expense_deductions_uncapped,All,15000.0,20000.0,False,False,False,5007572000 -2015,Table 2.1,BM,14,medical_expense_deductions_uncapped,All,15000.0,20000.0,True,False,False,490746 -2015,Table 2.1,BN,15,medical_expense_deductions_uncapped,All,20000.0,25000.0,False,False,False,5295009000 -2015,Table 2.1,BM,15,medical_expense_deductions_uncapped,All,20000.0,25000.0,True,False,False,500858 -2015,Table 2.1,BN,16,medical_expense_deductions_uncapped,All,25000.0,30000.0,False,False,False,6013365000 -2015,Table 2.1,BM,16,medical_expense_deductions_uncapped,All,25000.0,30000.0,True,False,False,532022 -2015,Table 2.1,BN,17,medical_expense_deductions_uncapped,All,30000.0,35000.0,False,False,False,5344248000 -2015,Table 2.1,BM,17,medical_expense_deductions_uncapped,All,30000.0,35000.0,True,False,False,462326 -2015,Table 2.1,BN,18,medical_expense_deductions_uncapped,All,35000.0,40000.0,False,False,False,5585290000 -2015,Table 2.1,BM,18,medical_expense_deductions_uncapped,All,35000.0,40000.0,True,False,False,457498 -2015,Table 2.1,BN,19,medical_expense_deductions_uncapped,All,40000.0,45000.0,False,False,False,5649836000 -2015,Table 2.1,BM,19,medical_expense_deductions_uncapped,All,40000.0,45000.0,True,False,False,452333 -2015,Table 2.1,BN,20,medical_expense_deductions_uncapped,All,45000.0,50000.0,False,False,False,5000049000 -2015,Table 2.1,BM,20,medical_expense_deductions_uncapped,All,45000.0,50000.0,True,False,False,390758 -2015,Table 2.1,BN,21,medical_expense_deductions_uncapped,All,50000.0,55000.0,False,False,False,5553125000 -2015,Table 2.1,BM,21,medical_expense_deductions_uncapped,All,50000.0,55000.0,True,False,False,404991 -2015,Table 2.1,BN,22,medical_expense_deductions_uncapped,All,55000.0,60000.0,False,False,False,6003880000 -2015,Table 2.1,BM,22,medical_expense_deductions_uncapped,All,55000.0,60000.0,True,False,False,423434 -2015,Table 2.1,BN,23,medical_expense_deductions_uncapped,All,60000.0,75000.0,False,False,False,14889171000 -2015,Table 2.1,BM,23,medical_expense_deductions_uncapped,All,60000.0,75000.0,True,False,False,992870 -2015,Table 2.1,BN,24,medical_expense_deductions_uncapped,All,75000.0,100000.0,False,False,False,21727339000 -2015,Table 2.1,BM,24,medical_expense_deductions_uncapped,All,75000.0,100000.0,True,False,False,1222955 -2015,Table 2.1,BN,25,medical_expense_deductions_uncapped,All,100000.0,200000.0,False,False,False,29283649000 -2015,Table 2.1,BM,25,medical_expense_deductions_uncapped,All,100000.0,200000.0,True,False,False,1306677 -2015,Table 2.1,BN,26,medical_expense_deductions_uncapped,All,200000.0,500000.0,False,False,False,7318921000 -2015,Table 2.1,BM,26,medical_expense_deductions_uncapped,All,200000.0,500000.0,True,False,False,159468 -2015,Table 2.1,BN,27,medical_expense_deductions_uncapped,All,500000.0,1000000.0,False,False,False,977355000 -2015,Table 2.1,BM,27,medical_expense_deductions_uncapped,All,500000.0,1000000.0,True,False,False,7735 -2015,Table 2.1,BN,28,medical_expense_deductions_uncapped,All,1000000.0,1500000.0,False,False,False,201698000 -2015,Table 2.1,BM,28,medical_expense_deductions_uncapped,All,1000000.0,1500000.0,True,False,False,972 -2015,Table 2.1,BN,29,medical_expense_deductions_uncapped,All,1500000.0,2000000.0,False,False,False,74403000 -2015,Table 2.1,BM,29,medical_expense_deductions_uncapped,All,1500000.0,2000000.0,True,False,False,301 -2015,Table 2.1,BN,30,medical_expense_deductions_uncapped,All,2000000.0,5000000.0,False,False,False,83393000 -2015,Table 2.1,BM,30,medical_expense_deductions_uncapped,All,2000000.0,5000000.0,True,False,False,242 -2015,Table 2.1,BN,31,medical_expense_deductions_uncapped,All,5000000.0,10000000.0,False,False,False,18999000 -2015,Table 2.1,BM,31,medical_expense_deductions_uncapped,All,5000000.0,10000000.0,True,False,False,22 -2015,Table 2.1,BN,32,medical_expense_deductions_uncapped,All,10000000.0,inf,False,False,False,0 -2015,Table 2.1,BM,32,medical_expense_deductions_uncapped,All,10000000.0,inf,True,False,False,0 -2015,Table 2.1,CH,10,mortgage_interest_deductions,All,-inf,inf,False,False,True,283004465000 -2015,Table 2.1,CG,10,mortgage_interest_deductions,All,-inf,inf,True,False,True,32715927 -2015,Table 2.1,CH,11,mortgage_interest_deductions,All,0.0,5000.0,False,False,False,1174521000 -2015,Table 2.1,CG,11,mortgage_interest_deductions,All,0.0,5000.0,True,False,False,167028 -2015,Table 2.1,CH,12,mortgage_interest_deductions,All,5000.0,10000.0,False,False,False,1237451000 -2015,Table 2.1,CG,12,mortgage_interest_deductions,All,5000.0,10000.0,True,False,False,185501 -2015,Table 2.1,CH,13,mortgage_interest_deductions,All,10000.0,15000.0,False,False,False,2083827000 -2015,Table 2.1,CG,13,mortgage_interest_deductions,All,10000.0,15000.0,True,False,False,338276 -2015,Table 2.1,CH,14,mortgage_interest_deductions,All,15000.0,20000.0,False,False,False,2589295000 -2015,Table 2.1,CG,14,mortgage_interest_deductions,All,15000.0,20000.0,True,False,False,418199 -2015,Table 2.1,CH,15,mortgage_interest_deductions,All,20000.0,25000.0,False,False,False,2992991000 -2015,Table 2.1,CG,15,mortgage_interest_deductions,All,20000.0,25000.0,True,False,False,447688 -2015,Table 2.1,CH,16,mortgage_interest_deductions,All,25000.0,30000.0,False,False,False,3591380000 -2015,Table 2.1,CG,16,mortgage_interest_deductions,All,25000.0,30000.0,True,False,False,578143 -2015,Table 2.1,CH,17,mortgage_interest_deductions,All,30000.0,35000.0,False,False,False,3946351000 -2015,Table 2.1,CG,17,mortgage_interest_deductions,All,30000.0,35000.0,True,False,False,654008 -2015,Table 2.1,CH,18,mortgage_interest_deductions,All,35000.0,40000.0,False,False,False,5122692000 -2015,Table 2.1,CG,18,mortgage_interest_deductions,All,35000.0,40000.0,True,False,False,830762 -2015,Table 2.1,CH,19,mortgage_interest_deductions,All,40000.0,45000.0,False,False,False,5651139000 -2015,Table 2.1,CG,19,mortgage_interest_deductions,All,40000.0,45000.0,True,False,False,939209 -2015,Table 2.1,CH,20,mortgage_interest_deductions,All,45000.0,50000.0,False,False,False,6411648000 -2015,Table 2.1,CG,20,mortgage_interest_deductions,All,45000.0,50000.0,True,False,False,1036215 -2015,Table 2.1,CH,21,mortgage_interest_deductions,All,50000.0,55000.0,False,False,False,6543517000 -2015,Table 2.1,CG,21,mortgage_interest_deductions,All,50000.0,55000.0,True,False,False,1064122 -2015,Table 2.1,CH,22,mortgage_interest_deductions,All,55000.0,60000.0,False,False,False,6985554000 -2015,Table 2.1,CG,22,mortgage_interest_deductions,All,55000.0,60000.0,True,False,False,1119573 -2015,Table 2.1,CH,23,mortgage_interest_deductions,All,60000.0,75000.0,False,False,False,21825640000 -2015,Table 2.1,CG,23,mortgage_interest_deductions,All,60000.0,75000.0,True,False,False,3210259 -2015,Table 2.1,CH,24,mortgage_interest_deductions,All,75000.0,100000.0,False,False,False,40897449000 -2015,Table 2.1,CG,24,mortgage_interest_deductions,All,75000.0,100000.0,True,False,False,5392086 -2015,Table 2.1,CH,25,mortgage_interest_deductions,All,100000.0,200000.0,False,False,False,103319155000 -2015,Table 2.1,CG,25,mortgage_interest_deductions,All,100000.0,200000.0,True,False,False,11482206 -2015,Table 2.1,CH,26,mortgage_interest_deductions,All,200000.0,500000.0,False,False,False,51606382000 -2015,Table 2.1,CG,26,mortgage_interest_deductions,All,200000.0,500000.0,True,False,False,3988588 -2015,Table 2.1,CH,27,mortgage_interest_deductions,All,500000.0,1000000.0,False,False,False,11335153000 -2015,Table 2.1,CG,27,mortgage_interest_deductions,All,500000.0,1000000.0,True,False,False,608613 -2015,Table 2.1,CH,28,mortgage_interest_deductions,All,1000000.0,1500000.0,False,False,False,2559360000 -2015,Table 2.1,CG,28,mortgage_interest_deductions,All,1000000.0,1500000.0,True,False,False,119694 -2015,Table 2.1,CH,29,mortgage_interest_deductions,All,1500000.0,2000000.0,False,False,False,1043154000 -2015,Table 2.1,CG,29,mortgage_interest_deductions,All,1500000.0,2000000.0,True,False,False,47055 -2015,Table 2.1,CH,30,mortgage_interest_deductions,All,2000000.0,5000000.0,False,False,False,1521570000 -2015,Table 2.1,CG,30,mortgage_interest_deductions,All,2000000.0,5000000.0,True,False,False,65385 -2015,Table 2.1,CH,31,mortgage_interest_deductions,All,5000000.0,10000000.0,False,False,False,360807000 -2015,Table 2.1,CG,31,mortgage_interest_deductions,All,5000000.0,10000000.0,True,False,False,15000 -2015,Table 2.1,CH,32,mortgage_interest_deductions,All,10000000.0,inf,False,False,False,205431000 -2015,Table 2.1,CG,32,mortgage_interest_deductions,All,10000000.0,inf,True,False,False,8316 -2015,Table 1.4,M,10,ordinary_dividends,All,-inf,0.0,False,False,False,5031112000 -2015,Table 1.4,L,10,ordinary_dividends,All,-inf,0.0,True,False,False,468764 -2015,Table 1.4,M,9,ordinary_dividends,All,-inf,inf,False,False,True,260252720000 -2015,Table 1.4,L,9,ordinary_dividends,All,-inf,inf,True,False,True,27607044 -2015,Table 1.4,M,11,ordinary_dividends,All,1.0,5000.0,False,False,False,891234000 -2015,Table 1.4,L,11,ordinary_dividends,All,1.0,5000.0,True,False,False,933634 -2015,Table 1.4,M,12,ordinary_dividends,All,5000.0,10000.0,False,False,False,1434663000 -2015,Table 1.4,L,12,ordinary_dividends,All,5000.0,10000.0,True,False,False,857987 -2015,Table 1.4,M,13,ordinary_dividends,All,10000.0,15000.0,False,False,False,1924846000 -2015,Table 1.4,L,13,ordinary_dividends,All,10000.0,15000.0,True,False,False,875080 -2015,Table 1.4,M,14,ordinary_dividends,All,15000.0,20000.0,False,False,False,1911854000 -2015,Table 1.4,L,14,ordinary_dividends,All,15000.0,20000.0,True,False,False,878063 -2015,Table 1.4,M,15,ordinary_dividends,All,20000.0,25000.0,False,False,False,1967324000 -2015,Table 1.4,L,15,ordinary_dividends,All,20000.0,25000.0,True,False,False,810499 -2015,Table 1.4,M,16,ordinary_dividends,All,25000.0,30000.0,False,False,False,2129499000 -2015,Table 1.4,L,16,ordinary_dividends,All,25000.0,30000.0,True,False,False,778412 -2015,Table 1.4,M,17,ordinary_dividends,All,30000.0,40000.0,False,False,False,4356423000 -2015,Table 1.4,L,17,ordinary_dividends,All,30000.0,40000.0,True,False,False,1576139 -2015,Table 1.4,M,18,ordinary_dividends,All,40000.0,50000.0,False,False,False,4083422000 -2015,Table 1.4,L,18,ordinary_dividends,All,40000.0,50000.0,True,False,False,1514544 -2015,Table 1.4,M,19,ordinary_dividends,All,50000.0,75000.0,False,False,False,13570392000 -2015,Table 1.4,L,19,ordinary_dividends,All,50000.0,75000.0,True,False,False,3896386 -2015,Table 1.4,M,20,ordinary_dividends,All,75000.0,100000.0,False,False,False,13679218000 -2015,Table 1.4,L,20,ordinary_dividends,All,75000.0,100000.0,True,False,False,3468135 -2015,Table 1.4,M,21,ordinary_dividends,All,100000.0,200000.0,False,False,False,43684842000 -2015,Table 1.4,L,21,ordinary_dividends,All,100000.0,200000.0,True,False,False,7062743 -2015,Table 1.4,M,22,ordinary_dividends,All,200000.0,500000.0,False,False,False,45283033000 -2015,Table 1.4,L,22,ordinary_dividends,All,200000.0,500000.0,True,False,False,3391442 -2015,Table 1.4,M,23,ordinary_dividends,All,500000.0,1000000.0,False,False,False,24854824000 -2015,Table 1.4,L,23,ordinary_dividends,All,500000.0,1000000.0,True,False,False,708986 -2015,Table 1.4,M,24,ordinary_dividends,All,1000000.0,1500000.0,False,False,False,11605051000 -2015,Table 1.4,L,24,ordinary_dividends,All,1000000.0,1500000.0,True,False,False,167209 -2015,Table 1.4,M,25,ordinary_dividends,All,1500000.0,2000000.0,False,False,False,6994679000 -2015,Table 1.4,L,25,ordinary_dividends,All,1500000.0,2000000.0,True,False,False,70134 -2015,Table 1.4,M,26,ordinary_dividends,All,2000000.0,5000000.0,False,False,False,19650375000 -2015,Table 1.4,L,26,ordinary_dividends,All,2000000.0,5000000.0,True,False,False,104973 -2015,Table 1.4,M,27,ordinary_dividends,All,5000000.0,10000000.0,False,False,False,11752780000 -2015,Table 1.4,L,27,ordinary_dividends,All,5000000.0,10000000.0,True,False,False,26596 -2015,Table 1.4,M,28,ordinary_dividends,All,10000000.0,inf,False,False,False,45447147000 -2015,Table 1.4,L,28,ordinary_dividends,All,10000000.0,inf,True,False,False,17317 -2015,Table 1.4,BE,10,partnership_and_s_corp_income,All,-inf,0.0,False,False,False,6548669000 -2015,Table 1.4,BD,10,partnership_and_s_corp_income,All,-inf,0.0,True,False,False,103383 -2015,Table 1.4,BE,9,partnership_and_s_corp_income,All,-inf,inf,False,False,True,755622761000 -2015,Table 1.4,BD,9,partnership_and_s_corp_income,All,-inf,inf,True,False,True,6044409 -2015,Table 1.4,BE,11,partnership_and_s_corp_income,All,1.0,5000.0,False,False,False,354028000 -2015,Table 1.4,BD,11,partnership_and_s_corp_income,All,1.0,5000.0,True,False,False,59110 -2015,Table 1.4,BE,12,partnership_and_s_corp_income,All,5000.0,10000.0,False,False,False,720111000 -2015,Table 1.4,BD,12,partnership_and_s_corp_income,All,5000.0,10000.0,True,False,False,95076 -2015,Table 1.4,BE,13,partnership_and_s_corp_income,All,10000.0,15000.0,False,False,False,1058534000 -2015,Table 1.4,BD,13,partnership_and_s_corp_income,All,10000.0,15000.0,True,False,False,99991 -2015,Table 1.4,BE,14,partnership_and_s_corp_income,All,15000.0,20000.0,False,False,False,1448351000 -2015,Table 1.4,BD,14,partnership_and_s_corp_income,All,15000.0,20000.0,True,False,False,141254 -2015,Table 1.4,BE,15,partnership_and_s_corp_income,All,20000.0,25000.0,False,False,False,1449194000 -2015,Table 1.4,BD,15,partnership_and_s_corp_income,All,20000.0,25000.0,True,False,False,111274 -2015,Table 1.4,BE,16,partnership_and_s_corp_income,All,25000.0,30000.0,False,False,False,1835799000 -2015,Table 1.4,BD,16,partnership_and_s_corp_income,All,25000.0,30000.0,True,False,False,145162 -2015,Table 1.4,BE,17,partnership_and_s_corp_income,All,30000.0,40000.0,False,False,False,4021340000 -2015,Table 1.4,BD,17,partnership_and_s_corp_income,All,30000.0,40000.0,True,False,False,252120 -2015,Table 1.4,BE,18,partnership_and_s_corp_income,All,40000.0,50000.0,False,False,False,4772241000 -2015,Table 1.4,BD,18,partnership_and_s_corp_income,All,40000.0,50000.0,True,False,False,259365 -2015,Table 1.4,BE,19,partnership_and_s_corp_income,All,50000.0,75000.0,False,False,False,14201601000 -2015,Table 1.4,BD,19,partnership_and_s_corp_income,All,50000.0,75000.0,True,False,False,625054 -2015,Table 1.4,BE,20,partnership_and_s_corp_income,All,75000.0,100000.0,False,False,False,16254478000 -2015,Table 1.4,BD,20,partnership_and_s_corp_income,All,75000.0,100000.0,True,False,False,620308 -2015,Table 1.4,BE,21,partnership_and_s_corp_income,All,100000.0,200000.0,False,False,False,67887613000 -2015,Table 1.4,BD,21,partnership_and_s_corp_income,All,100000.0,200000.0,True,False,False,1614680 -2015,Table 1.4,BE,22,partnership_and_s_corp_income,All,200000.0,500000.0,False,False,False,142299712000 -2015,Table 1.4,BD,22,partnership_and_s_corp_income,All,200000.0,500000.0,True,False,False,1259135 -2015,Table 1.4,BE,23,partnership_and_s_corp_income,All,500000.0,1000000.0,False,False,False,119801813000 -2015,Table 1.4,BD,23,partnership_and_s_corp_income,All,500000.0,1000000.0,True,False,False,403560 -2015,Table 1.4,BE,24,partnership_and_s_corp_income,All,1000000.0,1500000.0,False,False,False,62221699000 -2015,Table 1.4,BD,24,partnership_and_s_corp_income,All,1000000.0,1500000.0,True,False,False,109248 -2015,Table 1.4,BE,25,partnership_and_s_corp_income,All,1500000.0,2000000.0,False,False,False,40614845000 -2015,Table 1.4,BD,25,partnership_and_s_corp_income,All,1500000.0,2000000.0,True,False,False,46786 -2015,Table 1.4,BE,26,partnership_and_s_corp_income,All,2000000.0,5000000.0,False,False,False,103229764000 -2015,Table 1.4,BD,26,partnership_and_s_corp_income,All,2000000.0,5000000.0,True,False,False,70487 -2015,Table 1.4,BE,27,partnership_and_s_corp_income,All,5000000.0,10000000.0,False,False,False,52736560000 -2015,Table 1.4,BD,27,partnership_and_s_corp_income,All,5000000.0,10000000.0,True,False,False,17412 -2015,Table 1.4,BE,28,partnership_and_s_corp_income,All,10000000.0,inf,False,False,False,114166407000 -2015,Table 1.4,BD,28,partnership_and_s_corp_income,All,10000000.0,inf,True,False,False,11004 -2015,Table 1.4,BG,10,partnership_and_s_corp_losses,All,-inf,0.0,False,False,False,50096035000 -2015,Table 1.4,BF,10,partnership_and_s_corp_losses,All,-inf,0.0,True,False,False,303549 -2015,Table 1.4,BG,9,partnership_and_s_corp_losses,All,-inf,inf,False,False,True,126618186000 -2015,Table 1.4,BF,9,partnership_and_s_corp_losses,All,-inf,inf,True,False,True,2699817 -2015,Table 1.4,BG,11,partnership_and_s_corp_losses,All,1.0,5000.0,False,False,False,870335000 -2015,Table 1.4,BF,11,partnership_and_s_corp_losses,All,1.0,5000.0,True,False,False,43820 -2015,Table 1.4,BG,12,partnership_and_s_corp_losses,All,5000.0,10000.0,False,False,False,533252000 -2015,Table 1.4,BF,12,partnership_and_s_corp_losses,All,5000.0,10000.0,True,False,False,51701 -2015,Table 1.4,BG,13,partnership_and_s_corp_losses,All,10000.0,15000.0,False,False,False,688625000 -2015,Table 1.4,BF,13,partnership_and_s_corp_losses,All,10000.0,15000.0,True,False,False,65337 -2015,Table 1.4,BG,14,partnership_and_s_corp_losses,All,15000.0,20000.0,False,False,False,1035999000 -2015,Table 1.4,BF,14,partnership_and_s_corp_losses,All,15000.0,20000.0,True,False,False,69076 -2015,Table 1.4,BG,15,partnership_and_s_corp_losses,All,20000.0,25000.0,False,False,False,1111283000 -2015,Table 1.4,BF,15,partnership_and_s_corp_losses,All,20000.0,25000.0,True,False,False,68713 -2015,Table 1.4,BG,16,partnership_and_s_corp_losses,All,25000.0,30000.0,False,False,False,844699000 -2015,Table 1.4,BF,16,partnership_and_s_corp_losses,All,25000.0,30000.0,True,False,False,60331 -2015,Table 1.4,BG,17,partnership_and_s_corp_losses,All,30000.0,40000.0,False,False,False,1696781000 -2015,Table 1.4,BF,17,partnership_and_s_corp_losses,All,30000.0,40000.0,True,False,False,132665 -2015,Table 1.4,BG,18,partnership_and_s_corp_losses,All,40000.0,50000.0,False,False,False,1518190000 -2015,Table 1.4,BF,18,partnership_and_s_corp_losses,All,40000.0,50000.0,True,False,False,118326 -2015,Table 1.4,BG,19,partnership_and_s_corp_losses,All,50000.0,75000.0,False,False,False,3826000000 -2015,Table 1.4,BF,19,partnership_and_s_corp_losses,All,50000.0,75000.0,True,False,False,317031 -2015,Table 1.4,BG,20,partnership_and_s_corp_losses,All,75000.0,100000.0,False,False,False,3003805000 -2015,Table 1.4,BF,20,partnership_and_s_corp_losses,All,75000.0,100000.0,True,False,False,276952 -2015,Table 1.4,BG,21,partnership_and_s_corp_losses,All,100000.0,200000.0,False,False,False,8663474000 -2015,Table 1.4,BF,21,partnership_and_s_corp_losses,All,100000.0,200000.0,True,False,False,655397 -2015,Table 1.4,BG,22,partnership_and_s_corp_losses,All,200000.0,500000.0,False,False,False,10221016000 -2015,Table 1.4,BF,22,partnership_and_s_corp_losses,All,200000.0,500000.0,True,False,False,361082 -2015,Table 1.4,BG,23,partnership_and_s_corp_losses,All,500000.0,1000000.0,False,False,False,5967617000 -2015,Table 1.4,BF,23,partnership_and_s_corp_losses,All,500000.0,1000000.0,True,False,False,101888 -2015,Table 1.4,BG,24,partnership_and_s_corp_losses,All,1000000.0,1500000.0,False,False,False,3082586000 -2015,Table 1.4,BF,24,partnership_and_s_corp_losses,All,1000000.0,1500000.0,True,False,False,26711 -2015,Table 1.4,BG,25,partnership_and_s_corp_losses,All,1500000.0,2000000.0,False,False,False,2190098000 -2015,Table 1.4,BF,25,partnership_and_s_corp_losses,All,1500000.0,2000000.0,True,False,False,12565 -2015,Table 1.4,BG,26,partnership_and_s_corp_losses,All,2000000.0,5000000.0,False,False,False,7179642000 -2015,Table 1.4,BF,26,partnership_and_s_corp_losses,All,2000000.0,5000000.0,True,False,False,22584 -2015,Table 1.4,BG,27,partnership_and_s_corp_losses,All,5000000.0,10000000.0,False,False,False,4248736000 -2015,Table 1.4,BF,27,partnership_and_s_corp_losses,All,5000000.0,10000000.0,True,False,False,6831 -2015,Table 1.4,BG,28,partnership_and_s_corp_losses,All,10000000.0,inf,False,False,False,19840013000 -2015,Table 1.4,BF,28,partnership_and_s_corp_losses,All,10000000.0,inf,True,False,False,5257 -2015,Table 1.4,O,10,qualified_dividends,All,-inf,0.0,False,False,False,3452820000 -2015,Table 1.4,N,10,qualified_dividends,All,-inf,0.0,True,False,False,431502 -2015,Table 1.4,O,9,qualified_dividends,All,-inf,inf,False,False,True,203187788000 -2015,Table 1.4,N,9,qualified_dividends,All,-inf,inf,True,False,True,25755976 -2015,Table 1.4,O,11,qualified_dividends,All,1.0,5000.0,False,False,False,539192000 -2015,Table 1.4,N,11,qualified_dividends,All,1.0,5000.0,True,False,False,846481 -2015,Table 1.4,O,12,qualified_dividends,All,5000.0,10000.0,False,False,False,847872000 -2015,Table 1.4,N,12,qualified_dividends,All,5000.0,10000.0,True,False,False,792431 -2015,Table 1.4,O,13,qualified_dividends,All,10000.0,15000.0,False,False,False,1236652000 -2015,Table 1.4,N,13,qualified_dividends,All,10000.0,15000.0,True,False,False,781678 -2015,Table 1.4,O,14,qualified_dividends,All,15000.0,20000.0,False,False,False,1223553000 -2015,Table 1.4,N,14,qualified_dividends,All,15000.0,20000.0,True,False,False,801164 -2015,Table 1.4,O,15,qualified_dividends,All,20000.0,25000.0,False,False,False,1326078000 -2015,Table 1.4,N,15,qualified_dividends,All,20000.0,25000.0,True,False,False,746510 -2015,Table 1.4,O,16,qualified_dividends,All,25000.0,30000.0,False,False,False,1265438000 -2015,Table 1.4,N,16,qualified_dividends,All,25000.0,30000.0,True,False,False,694987 -2015,Table 1.4,O,17,qualified_dividends,All,30000.0,40000.0,False,False,False,3001477000 -2015,Table 1.4,N,17,qualified_dividends,All,30000.0,40000.0,True,False,False,1440362 -2015,Table 1.4,O,18,qualified_dividends,All,40000.0,50000.0,False,False,False,2826332000 -2015,Table 1.4,N,18,qualified_dividends,All,40000.0,50000.0,True,False,False,1389336 -2015,Table 1.4,O,19,qualified_dividends,All,50000.0,75000.0,False,False,False,9668810000 -2015,Table 1.4,N,19,qualified_dividends,All,50000.0,75000.0,True,False,False,3586978 -2015,Table 1.4,O,20,qualified_dividends,All,75000.0,100000.0,False,False,False,9950326000 -2015,Table 1.4,N,20,qualified_dividends,All,75000.0,100000.0,True,False,False,3253110 -2015,Table 1.4,O,21,qualified_dividends,All,100000.0,200000.0,False,False,False,33501662000 -2015,Table 1.4,N,21,qualified_dividends,All,100000.0,200000.0,True,False,False,6651049 -2015,Table 1.4,O,22,qualified_dividends,All,200000.0,500000.0,False,False,False,36267006000 -2015,Table 1.4,N,22,qualified_dividends,All,200000.0,500000.0,True,False,False,3272768 -2015,Table 1.4,O,23,qualified_dividends,All,500000.0,1000000.0,False,False,False,20014498000 -2015,Table 1.4,N,23,qualified_dividends,All,500000.0,1000000.0,True,False,False,690017 -2015,Table 1.4,O,24,qualified_dividends,All,1000000.0,1500000.0,False,False,False,9328800000 -2015,Table 1.4,N,24,qualified_dividends,All,1000000.0,1500000.0,True,False,False,163261 -2015,Table 1.4,O,25,qualified_dividends,All,1500000.0,2000000.0,False,False,False,5485472000 -2015,Table 1.4,N,25,qualified_dividends,All,1500000.0,2000000.0,True,False,False,68480 -2015,Table 1.4,O,26,qualified_dividends,All,2000000.0,5000000.0,False,False,False,15679937000 -2015,Table 1.4,N,26,qualified_dividends,All,2000000.0,5000000.0,True,False,False,102750 -2015,Table 1.4,O,27,qualified_dividends,All,5000000.0,10000000.0,False,False,False,9423445000 -2015,Table 1.4,N,27,qualified_dividends,All,5000000.0,10000000.0,True,False,False,26053 -2015,Table 1.4,O,28,qualified_dividends,All,10000000.0,inf,False,False,False,38148418000 -2015,Table 1.4,N,28,qualified_dividends,All,10000000.0,inf,True,False,False,17059 -2015,Table 1.4,BA,10,rent_and_royalty_net_income,All,-inf,0.0,False,False,False,2810017000 -2015,Table 1.4,AZ,10,rent_and_royalty_net_income,All,-inf,0.0,True,False,False,158721 -2015,Table 1.4,BA,9,rent_and_royalty_net_income,All,-inf,inf,False,False,True,103058883000 -2015,Table 1.4,AZ,9,rent_and_royalty_net_income,All,-inf,inf,True,False,True,6768234 -2015,Table 1.4,BA,11,rent_and_royalty_net_income,All,1.0,5000.0,False,False,False,550278000 -2015,Table 1.4,AZ,11,rent_and_royalty_net_income,All,1.0,5000.0,True,False,False,191411 -2015,Table 1.4,BA,12,rent_and_royalty_net_income,All,5000.0,10000.0,False,False,False,960758000 -2015,Table 1.4,AZ,12,rent_and_royalty_net_income,All,5000.0,10000.0,True,False,False,225477 -2015,Table 1.4,BA,13,rent_and_royalty_net_income,All,10000.0,15000.0,False,False,False,1443449000 -2015,Table 1.4,AZ,13,rent_and_royalty_net_income,All,10000.0,15000.0,True,False,False,257700 -2015,Table 1.4,BA,14,rent_and_royalty_net_income,All,15000.0,20000.0,False,False,False,1530758000 -2015,Table 1.4,AZ,14,rent_and_royalty_net_income,All,15000.0,20000.0,True,False,False,256116 -2015,Table 1.4,BA,15,rent_and_royalty_net_income,All,20000.0,25000.0,False,False,False,1594658000 -2015,Table 1.4,AZ,15,rent_and_royalty_net_income,All,20000.0,25000.0,True,False,False,234703 -2015,Table 1.4,BA,16,rent_and_royalty_net_income,All,25000.0,30000.0,False,False,False,1604665000 -2015,Table 1.4,AZ,16,rent_and_royalty_net_income,All,25000.0,30000.0,True,False,False,224961 -2015,Table 1.4,BA,17,rent_and_royalty_net_income,All,30000.0,40000.0,False,False,False,2691722000 -2015,Table 1.4,AZ,17,rent_and_royalty_net_income,All,30000.0,40000.0,True,False,False,360815 -2015,Table 1.4,BA,18,rent_and_royalty_net_income,All,40000.0,50000.0,False,False,False,3049824000 -2015,Table 1.4,AZ,18,rent_and_royalty_net_income,All,40000.0,50000.0,True,False,False,389458 -2015,Table 1.4,BA,19,rent_and_royalty_net_income,All,50000.0,75000.0,False,False,False,7756628000 -2015,Table 1.4,AZ,19,rent_and_royalty_net_income,All,50000.0,75000.0,True,False,False,927723 -2015,Table 1.4,BA,20,rent_and_royalty_net_income,All,75000.0,100000.0,False,False,False,7990607000 -2015,Table 1.4,AZ,20,rent_and_royalty_net_income,All,75000.0,100000.0,True,False,False,801435 -2015,Table 1.4,BA,21,rent_and_royalty_net_income,All,100000.0,200000.0,False,False,False,22286270000 -2015,Table 1.4,AZ,21,rent_and_royalty_net_income,All,100000.0,200000.0,True,False,False,1666542 -2015,Table 1.4,BA,22,rent_and_royalty_net_income,All,200000.0,500000.0,False,False,False,20783283000 -2015,Table 1.4,AZ,22,rent_and_royalty_net_income,All,200000.0,500000.0,True,False,False,746946 -2015,Table 1.4,BA,23,rent_and_royalty_net_income,All,500000.0,1000000.0,False,False,False,10292595000 -2015,Table 1.4,AZ,23,rent_and_royalty_net_income,All,500000.0,1000000.0,True,False,False,189624 -2015,Table 1.4,BA,24,rent_and_royalty_net_income,All,1000000.0,1500000.0,False,False,False,4351297000 -2015,Table 1.4,AZ,24,rent_and_royalty_net_income,All,1000000.0,1500000.0,True,False,False,52337 -2015,Table 1.4,BA,25,rent_and_royalty_net_income,All,1500000.0,2000000.0,False,False,False,2162529000 -2015,Table 1.4,AZ,25,rent_and_royalty_net_income,All,1500000.0,2000000.0,True,False,False,23762 -2015,Table 1.4,BA,26,rent_and_royalty_net_income,All,2000000.0,5000000.0,False,False,False,5056616000 -2015,Table 1.4,AZ,26,rent_and_royalty_net_income,All,2000000.0,5000000.0,True,False,False,40190 -2015,Table 1.4,BA,27,rent_and_royalty_net_income,All,5000000.0,10000000.0,False,False,False,2418718000 -2015,Table 1.4,AZ,27,rent_and_royalty_net_income,All,5000000.0,10000000.0,True,False,False,11658 -2015,Table 1.4,BA,28,rent_and_royalty_net_income,All,10000000.0,inf,False,False,False,3724211000 -2015,Table 1.4,AZ,28,rent_and_royalty_net_income,All,10000000.0,inf,True,False,False,8655 -2015,Table 1.4,BC,10,rent_and_royalty_net_losses,All,-inf,0.0,False,False,False,6061375000 -2015,Table 1.4,BB,10,rent_and_royalty_net_losses,All,-inf,0.0,True,False,False,262688 -2015,Table 1.4,BC,9,rent_and_royalty_net_losses,All,-inf,inf,False,False,True,46245560000 -2015,Table 1.4,BB,9,rent_and_royalty_net_losses,All,-inf,inf,True,False,True,4531666 -2015,Table 1.4,BC,11,rent_and_royalty_net_losses,All,1.0,5000.0,False,False,False,444446000 -2015,Table 1.4,BB,11,rent_and_royalty_net_losses,All,1.0,5000.0,True,False,False,67699 -2015,Table 1.4,BC,12,rent_and_royalty_net_losses,All,5000.0,10000.0,False,False,False,653822000 -2015,Table 1.4,BB,12,rent_and_royalty_net_losses,All,5000.0,10000.0,True,False,False,95906 -2015,Table 1.4,BC,13,rent_and_royalty_net_losses,All,10000.0,15000.0,False,False,False,1110992000 -2015,Table 1.4,BB,13,rent_and_royalty_net_losses,All,10000.0,15000.0,True,False,False,123523 -2015,Table 1.4,BC,14,rent_and_royalty_net_losses,All,15000.0,20000.0,False,False,False,991953000 -2015,Table 1.4,BB,14,rent_and_royalty_net_losses,All,15000.0,20000.0,True,False,False,141801 -2015,Table 1.4,BC,15,rent_and_royalty_net_losses,All,20000.0,25000.0,False,False,False,1204536000 -2015,Table 1.4,BB,15,rent_and_royalty_net_losses,All,20000.0,25000.0,True,False,False,148541 -2015,Table 1.4,BC,16,rent_and_royalty_net_losses,All,25000.0,30000.0,False,False,False,1061144000 -2015,Table 1.4,BB,16,rent_and_royalty_net_losses,All,25000.0,30000.0,True,False,False,152200 -2015,Table 1.4,BC,17,rent_and_royalty_net_losses,All,30000.0,40000.0,False,False,False,2737329000 -2015,Table 1.4,BB,17,rent_and_royalty_net_losses,All,30000.0,40000.0,True,False,False,320136 -2015,Table 1.4,BC,18,rent_and_royalty_net_losses,All,40000.0,50000.0,False,False,False,2384944000 -2015,Table 1.4,BB,18,rent_and_royalty_net_losses,All,40000.0,50000.0,True,False,False,311887 -2015,Table 1.4,BC,19,rent_and_royalty_net_losses,All,50000.0,75000.0,False,False,False,6069198000 -2015,Table 1.4,BB,19,rent_and_royalty_net_losses,All,50000.0,75000.0,True,False,False,768581 -2015,Table 1.4,BC,20,rent_and_royalty_net_losses,All,75000.0,100000.0,False,False,False,5876752000 -2015,Table 1.4,BB,20,rent_and_royalty_net_losses,All,75000.0,100000.0,True,False,False,738546 -2015,Table 1.4,BC,21,rent_and_royalty_net_losses,All,100000.0,200000.0,False,False,False,8530522000 -2015,Table 1.4,BB,21,rent_and_royalty_net_losses,All,100000.0,200000.0,True,False,False,1051247 -2015,Table 1.4,BC,22,rent_and_royalty_net_losses,All,200000.0,500000.0,False,False,False,4792737000 -2015,Table 1.4,BB,22,rent_and_royalty_net_losses,All,200000.0,500000.0,True,False,False,237953 -2015,Table 1.4,BC,23,rent_and_royalty_net_losses,All,500000.0,1000000.0,False,False,False,1784427000 -2015,Table 1.4,BB,23,rent_and_royalty_net_losses,All,500000.0,1000000.0,True,False,False,63040 -2015,Table 1.4,BC,24,rent_and_royalty_net_losses,All,1000000.0,1500000.0,False,False,False,745208000 -2015,Table 1.4,BB,24,rent_and_royalty_net_losses,All,1000000.0,1500000.0,True,False,False,19059 -2015,Table 1.4,BC,25,rent_and_royalty_net_losses,All,1500000.0,2000000.0,False,False,False,343964000 -2015,Table 1.4,BB,25,rent_and_royalty_net_losses,All,1500000.0,2000000.0,True,False,False,8378 -2015,Table 1.4,BC,26,rent_and_royalty_net_losses,All,2000000.0,5000000.0,False,False,False,739361000 -2015,Table 1.4,BB,26,rent_and_royalty_net_losses,All,2000000.0,5000000.0,True,False,False,13763 -2015,Table 1.4,BC,27,rent_and_royalty_net_losses,All,5000000.0,10000000.0,False,False,False,293341000 -2015,Table 1.4,BB,27,rent_and_royalty_net_losses,All,5000000.0,10000000.0,True,False,False,3917 -2015,Table 1.4,BC,28,rent_and_royalty_net_losses,All,10000000.0,inf,False,False,False,419507000 -2015,Table 1.4,BB,28,rent_and_royalty_net_losses,All,10000000.0,inf,True,False,False,2800 -2015,Table 1.2,H,10,standard_deduction,All,-inf,0.0,False,False,False,0 -2015,Table 1.2,G,10,standard_deduction,All,-inf,0.0,True,False,False,0 -2015,Table 1.2,H,9,standard_deduction,All,-inf,inf,False,False,True,900609447000 -2015,Table 1.2,G,9,standard_deduction,All,-inf,inf,True,False,True,103844288 -2015,Table 1.2,H,11,standard_deduction,All,1.0,5000.0,False,False,False,54726212000 -2015,Table 1.2,G,11,standard_deduction,All,1.0,5000.0,True,False,False,9815255 -2015,Table 1.2,H,12,standard_deduction,All,5000.0,10000.0,False,False,False,81276862000 -2015,Table 1.2,G,12,standard_deduction,All,5000.0,10000.0,True,False,False,11012200 -2015,Table 1.2,H,13,standard_deduction,All,10000.0,15000.0,False,False,False,92616719000 -2015,Table 1.2,G,13,standard_deduction,All,10000.0,15000.0,True,False,False,11555885 -2015,Table 1.2,H,14,standard_deduction,All,15000.0,20000.0,False,False,False,86251291000 -2015,Table 1.2,G,14,standard_deduction,All,15000.0,20000.0,True,False,False,10416717 -2015,Table 1.2,H,15,standard_deduction,All,20000.0,25000.0,False,False,False,76036514000 -2015,Table 1.2,G,15,standard_deduction,All,20000.0,25000.0,True,False,False,9039307 -2015,Table 1.2,H,16,standard_deduction,All,25000.0,30000.0,False,False,False,66157579000 -2015,Table 1.2,G,16,standard_deduction,All,25000.0,30000.0,True,False,False,7749382 -2015,Table 1.2,H,17,standard_deduction,All,30000.0,40000.0,False,False,False,108298415000 -2015,Table 1.2,G,17,standard_deduction,All,30000.0,40000.0,True,False,False,12348570 -2015,Table 1.2,H,18,standard_deduction,All,40000.0,50000.0,False,False,False,79302209000 -2015,Table 1.2,G,18,standard_deduction,All,40000.0,50000.0,True,False,False,8640831 -2015,Table 1.2,H,19,standard_deduction,All,50000.0,75000.0,False,False,False,126871911000 -2015,Table 1.2,G,19,standard_deduction,All,50000.0,75000.0,True,False,False,12461976 -2015,Table 1.2,H,20,standard_deduction,All,75000.0,100000.0,False,False,False,68439631000 -2015,Table 1.2,G,20,standard_deduction,All,75000.0,100000.0,True,False,False,5864215 -2015,Table 1.2,H,21,standard_deduction,All,100000.0,200000.0,False,False,False,55233169000 -2015,Table 1.2,G,21,standard_deduction,All,100000.0,200000.0,True,False,False,4494023 -2015,Table 1.2,H,22,standard_deduction,All,200000.0,500000.0,False,False,False,4196553000 -2015,Table 1.2,G,22,standard_deduction,All,200000.0,500000.0,True,False,False,344509 -2015,Table 1.2,H,23,standard_deduction,All,500000.0,1000000.0,False,False,False,740487000 -2015,Table 1.2,G,23,standard_deduction,All,500000.0,1000000.0,True,False,False,62549 -2015,Table 1.2,H,24,standard_deduction,All,1000000.0,1500000.0,False,False,False,218776000 -2015,Table 1.2,G,24,standard_deduction,All,1000000.0,1500000.0,True,False,False,18497 -2015,Table 1.2,H,25,standard_deduction,All,1500000.0,2000000.0,False,False,False,98942000 -2015,Table 1.2,G,25,standard_deduction,All,1500000.0,2000000.0,True,False,False,8285 -2015,Table 1.2,H,26,standard_deduction,All,2000000.0,5000000.0,False,False,False,118857000 -2015,Table 1.2,G,26,standard_deduction,All,2000000.0,5000000.0,True,False,False,9963 -2015,Table 1.2,H,27,standard_deduction,All,5000000.0,10000000.0,False,False,False,18800000 -2015,Table 1.2,G,27,standard_deduction,All,5000000.0,10000000.0,True,False,False,1555 -2015,Table 1.2,H,28,standard_deduction,All,10000000.0,inf,False,False,False,6520000 -2015,Table 1.2,G,28,standard_deduction,All,10000000.0,inf,True,False,False,569 -2015,Table 2.1,BT,10,state_and_local_tax_deductions,All,-inf,inf,False,False,True,352701327000 -2015,Table 2.1,BS,10,state_and_local_tax_deductions,All,-inf,inf,True,False,True,42690831 -2015,Table 2.1,BT,11,state_and_local_tax_deductions,All,0.0,5000.0,False,False,False,334608000 -2015,Table 2.1,BS,11,state_and_local_tax_deductions,All,0.0,5000.0,True,False,False,246102 -2015,Table 2.1,BT,12,state_and_local_tax_deductions,All,5000.0,10000.0,False,False,False,254813000 -2015,Table 2.1,BS,12,state_and_local_tax_deductions,All,5000.0,10000.0,True,False,False,320279 -2015,Table 2.1,BT,13,state_and_local_tax_deductions,All,10000.0,15000.0,False,False,False,484707000 -2015,Table 2.1,BS,13,state_and_local_tax_deductions,All,10000.0,15000.0,True,False,False,558434 -2015,Table 2.1,BT,14,state_and_local_tax_deductions,All,15000.0,20000.0,False,False,False,646722000 -2015,Table 2.1,BS,14,state_and_local_tax_deductions,All,15000.0,20000.0,True,False,False,713832 -2015,Table 2.1,BT,15,state_and_local_tax_deductions,All,20000.0,25000.0,False,False,False,862394000 -2015,Table 2.1,BS,15,state_and_local_tax_deductions,All,20000.0,25000.0,True,False,False,843241 -2015,Table 2.1,BT,16,state_and_local_tax_deductions,All,25000.0,30000.0,False,False,False,1167016000 -2015,Table 2.1,BS,16,state_and_local_tax_deductions,All,25000.0,30000.0,True,False,False,985616 -2015,Table 2.1,BT,17,state_and_local_tax_deductions,All,30000.0,35000.0,False,False,False,1444306000 -2015,Table 2.1,BS,17,state_and_local_tax_deductions,All,30000.0,35000.0,True,False,False,1102890 -2015,Table 2.1,BT,18,state_and_local_tax_deductions,All,35000.0,40000.0,False,False,False,1951818000 -2015,Table 2.1,BS,18,state_and_local_tax_deductions,All,35000.0,40000.0,True,False,False,1272689 -2015,Table 2.1,BT,19,state_and_local_tax_deductions,All,40000.0,45000.0,False,False,False,2475885000 -2015,Table 2.1,BS,19,state_and_local_tax_deductions,All,40000.0,45000.0,True,False,False,1367500 -2015,Table 2.1,BT,20,state_and_local_tax_deductions,All,45000.0,50000.0,False,False,False,2773525000 -2015,Table 2.1,BS,20,state_and_local_tax_deductions,All,45000.0,50000.0,True,False,False,1441232 -2015,Table 2.1,BT,21,state_and_local_tax_deductions,All,50000.0,55000.0,False,False,False,3222481000 -2015,Table 2.1,BS,21,state_and_local_tax_deductions,All,50000.0,55000.0,True,False,False,1458211 -2015,Table 2.1,BT,22,state_and_local_tax_deductions,All,55000.0,60000.0,False,False,False,3569080000 -2015,Table 2.1,BS,22,state_and_local_tax_deductions,All,55000.0,60000.0,True,False,False,1487190 -2015,Table 2.1,BT,23,state_and_local_tax_deductions,All,60000.0,75000.0,False,False,False,12039359000 -2015,Table 2.1,BS,23,state_and_local_tax_deductions,All,60000.0,75000.0,True,False,False,4246802 -2015,Table 2.1,BT,24,state_and_local_tax_deductions,All,75000.0,100000.0,False,False,False,25702146000 -2015,Table 2.1,BS,24,state_and_local_tax_deductions,All,75000.0,100000.0,True,False,False,6750154 -2015,Table 2.1,BT,25,state_and_local_tax_deductions,All,100000.0,200000.0,False,False,False,88169074000 -2015,Table 2.1,BS,25,state_and_local_tax_deductions,All,100000.0,200000.0,True,False,False,13687177 -2015,Table 2.1,BT,26,state_and_local_tax_deductions,All,200000.0,500000.0,False,False,False,75495221000 -2015,Table 2.1,BS,26,state_and_local_tax_deductions,All,200000.0,500000.0,True,False,False,4996108 -2015,Table 2.1,BT,27,state_and_local_tax_deductions,All,500000.0,1000000.0,False,False,False,33498075000 -2015,Table 2.1,BS,27,state_and_local_tax_deductions,All,500000.0,1000000.0,True,False,False,815393 -2015,Table 2.1,BT,28,state_and_local_tax_deductions,All,1000000.0,1500000.0,False,False,False,14501840000 -2015,Table 2.1,BS,28,state_and_local_tax_deductions,All,1000000.0,1500000.0,True,False,False,176304 -2015,Table 2.1,BT,29,state_and_local_tax_deductions,All,1500000.0,2000000.0,False,False,False,8760268000 -2015,Table 2.1,BS,29,state_and_local_tax_deductions,All,1500000.0,2000000.0,True,False,False,71240 -2015,Table 2.1,BT,30,state_and_local_tax_deductions,All,2000000.0,5000000.0,False,False,False,23381334000 -2015,Table 2.1,BS,30,state_and_local_tax_deductions,All,2000000.0,5000000.0,True,False,False,106105 -2015,Table 2.1,BT,31,state_and_local_tax_deductions,All,5000000.0,10000000.0,False,False,False,13555298000 -2015,Table 2.1,BS,31,state_and_local_tax_deductions,All,5000000.0,10000000.0,True,False,False,26956 -2015,Table 2.1,BT,32,state_and_local_tax_deductions,All,10000000.0,inf,False,False,False,38411360000 -2015,Table 2.1,BS,32,state_and_local_tax_deductions,All,10000000.0,inf,True,False,False,17376 -2015,Table 1.2,J,10,taxable_income,All,-inf,0.0,False,False,False,0 -2015,Table 1.2,I,10,taxable_income,All,-inf,0.0,True,False,False,0 -2015,Table 1.2,J,9,taxable_income,All,-inf,inf,False,False,True,7350295492000 -2015,Table 1.2,I,9,taxable_income,All,-inf,inf,True,False,True,114871989 -2015,Table 1.2,J,11,taxable_income,All,1.0,5000.0,False,False,False,433802000 -2015,Table 1.2,I,11,taxable_income,All,1.0,5000.0,True,False,False,355760 -2015,Table 1.2,J,12,taxable_income,All,5000.0,10000.0,False,False,False,3654755000 -2015,Table 1.2,I,12,taxable_income,All,5000.0,10000.0,True,False,False,1971291 -2015,Table 1.2,J,13,taxable_income,All,10000.0,15000.0,False,False,False,17534933000 -2015,Table 1.2,I,13,taxable_income,All,10000.0,15000.0,True,False,False,6085567 -2015,Table 1.2,J,14,taxable_income,All,15000.0,20000.0,False,False,False,43206787000 -2015,Table 1.2,I,14,taxable_income,All,15000.0,20000.0,True,False,False,6850887 -2015,Table 1.2,J,15,taxable_income,All,20000.0,25000.0,False,False,False,71587937000 -2015,Table 1.2,I,15,taxable_income,All,20000.0,25000.0,True,False,False,7851151 -2015,Table 1.2,J,16,taxable_income,All,25000.0,30000.0,False,False,False,97548763000 -2015,Table 1.2,I,16,taxable_income,All,25000.0,30000.0,True,False,False,7999445 -2015,Table 1.2,J,17,taxable_income,All,30000.0,40000.0,False,False,False,258870165000 -2015,Table 1.2,I,17,taxable_income,All,30000.0,40000.0,True,False,False,14358239 -2015,Table 1.2,J,18,taxable_income,All,40000.0,50000.0,False,False,False,303324644000 -2015,Table 1.2,I,18,taxable_income,All,40000.0,50000.0,True,False,False,11493776 -2015,Table 1.2,J,19,taxable_income,All,50000.0,75000.0,False,False,False,799873339000 -2015,Table 1.2,I,19,taxable_income,All,50000.0,75000.0,True,False,False,19872288 -2015,Table 1.2,J,20,taxable_income,All,75000.0,100000.0,False,False,False,778011174000 -2015,Table 1.2,I,20,taxable_income,All,75000.0,100000.0,True,False,False,12780368 -2015,Table 1.2,J,21,taxable_income,All,100000.0,200000.0,False,False,False,1895870893000 -2015,Table 1.2,I,21,taxable_income,All,100000.0,200000.0,True,False,False,18510747 -2015,Table 1.2,J,22,taxable_income,All,200000.0,500000.0,False,False,False,1271631085000 -2015,Table 1.2,I,22,taxable_income,All,200000.0,500000.0,True,False,False,5421049 -2015,Table 1.2,J,23,taxable_income,All,500000.0,1000000.0,False,False,False,527614042000 -2015,Table 1.2,I,23,taxable_income,All,500000.0,1000000.0,True,False,False,883020 -2015,Table 1.2,J,24,taxable_income,All,1000000.0,1500000.0,False,False,False,210041628000 -2015,Table 1.2,I,24,taxable_income,All,1000000.0,1500000.0,True,False,False,195466 -2015,Table 1.2,J,25,taxable_income,All,1500000.0,2000000.0,False,False,False,122829421000 -2015,Table 1.2,I,25,taxable_income,All,1500000.0,2000000.0,True,False,False,79839 -2015,Table 1.2,J,26,taxable_income,All,2000000.0,5000000.0,False,False,False,308993986000 -2015,Table 1.2,I,26,taxable_income,All,2000000.0,5000000.0,True,False,False,116452 -2015,Table 1.2,J,27,taxable_income,All,5000000.0,10000000.0,False,False,False,173981577000 -2015,Table 1.2,I,27,taxable_income,All,5000000.0,10000000.0,True,False,False,28614 -2015,Table 1.2,J,28,taxable_income,All,10000000.0,inf,False,False,False,465286561000 -2015,Table 1.2,I,28,taxable_income,All,10000000.0,inf,True,False,False,18032 -2015,Table 1.4,I,10,taxable_interest_income,All,-inf,0.0,False,False,False,4706956000 -2015,Table 1.4,H,10,taxable_interest_income,All,-inf,0.0,True,False,False,653423 -2015,Table 1.4,I,9,taxable_interest_income,All,-inf,inf,False,False,True,95881223000 -2015,Table 1.4,H,9,taxable_interest_income,All,-inf,inf,True,False,True,42636696 -2015,Table 1.4,I,11,taxable_interest_income,All,1.0,5000.0,False,False,False,606099000 -2015,Table 1.4,H,11,taxable_interest_income,All,1.0,5000.0,True,False,False,1484669 -2015,Table 1.4,I,12,taxable_interest_income,All,5000.0,10000.0,False,False,False,666442000 -2015,Table 1.4,H,12,taxable_interest_income,All,5000.0,10000.0,True,False,False,1339223 -2015,Table 1.4,I,13,taxable_interest_income,All,10000.0,15000.0,False,False,False,1053897000 -2015,Table 1.4,H,13,taxable_interest_income,All,10000.0,15000.0,True,False,False,1583302 -2015,Table 1.4,I,14,taxable_interest_income,All,15000.0,20000.0,False,False,False,1041566000 -2015,Table 1.4,H,14,taxable_interest_income,All,15000.0,20000.0,True,False,False,1476103 -2015,Table 1.4,I,15,taxable_interest_income,All,20000.0,25000.0,False,False,False,1068287000 -2015,Table 1.4,H,15,taxable_interest_income,All,20000.0,25000.0,True,False,False,1371510 -2015,Table 1.4,I,16,taxable_interest_income,All,25000.0,30000.0,False,False,False,1061273000 -2015,Table 1.4,H,16,taxable_interest_income,All,25000.0,30000.0,True,False,False,1380757 -2015,Table 1.4,I,17,taxable_interest_income,All,30000.0,40000.0,False,False,False,2080661000 -2015,Table 1.4,H,17,taxable_interest_income,All,30000.0,40000.0,True,False,False,2779716 -2015,Table 1.4,I,18,taxable_interest_income,All,40000.0,50000.0,False,False,False,1991377000 -2015,Table 1.4,H,18,taxable_interest_income,All,40000.0,50000.0,True,False,False,2748982 -2015,Table 1.4,I,19,taxable_interest_income,All,50000.0,75000.0,False,False,False,5759010000 -2015,Table 1.4,H,19,taxable_interest_income,All,50000.0,75000.0,True,False,False,6568582 -2015,Table 1.4,I,20,taxable_interest_income,All,75000.0,100000.0,False,False,False,5351418000 -2015,Table 1.4,H,20,taxable_interest_income,All,75000.0,100000.0,True,False,False,5553172 -2015,Table 1.4,I,21,taxable_interest_income,All,100000.0,200000.0,False,False,False,13932224000 -2015,Table 1.4,H,21,taxable_interest_income,All,100000.0,200000.0,True,False,False,10353254 -2015,Table 1.4,I,22,taxable_interest_income,All,200000.0,500000.0,False,False,False,12956349000 -2015,Table 1.4,H,22,taxable_interest_income,All,200000.0,500000.0,True,False,False,4116012 -2015,Table 1.4,I,23,taxable_interest_income,All,500000.0,1000000.0,False,False,False,7248337000 -2015,Table 1.4,H,23,taxable_interest_income,All,500000.0,1000000.0,True,False,False,802733 -2015,Table 1.4,I,24,taxable_interest_income,All,1000000.0,1500000.0,False,False,False,3733575000 -2015,Table 1.4,H,24,taxable_interest_income,All,1000000.0,1500000.0,True,False,False,187220 -2015,Table 1.4,I,25,taxable_interest_income,All,1500000.0,2000000.0,False,False,False,2486638000 -2015,Table 1.4,H,25,taxable_interest_income,All,1500000.0,2000000.0,True,False,False,77308 -2015,Table 1.4,I,26,taxable_interest_income,All,2000000.0,5000000.0,False,False,False,7437965000 -2015,Table 1.4,H,26,taxable_interest_income,All,2000000.0,5000000.0,True,False,False,114470 -2015,Table 1.4,I,27,taxable_interest_income,All,5000000.0,10000000.0,False,False,False,4565985000 -2015,Table 1.4,H,27,taxable_interest_income,All,5000000.0,10000000.0,True,False,False,28312 -2015,Table 1.4,I,28,taxable_interest_income,All,10000000.0,inf,False,False,False,18133165000 -2015,Table 1.4,H,28,taxable_interest_income,All,10000000.0,inf,True,False,False,17947 -2015,Table 1.4,AM,10,taxable_pension_income,All,-inf,0.0,False,False,False,2945570000 -2015,Table 1.4,AL,10,taxable_pension_income,All,-inf,0.0,True,False,False,231166 -2015,Table 1.4,AM,9,taxable_pension_income,All,-inf,inf,False,False,True,689991999000 -2015,Table 1.4,AL,9,taxable_pension_income,All,-inf,inf,True,False,True,28199160 -2015,Table 1.4,AM,11,taxable_pension_income,All,1.0,5000.0,False,False,False,2178118000 -2015,Table 1.4,AL,11,taxable_pension_income,All,1.0,5000.0,True,False,False,729226 -2015,Table 1.4,AM,12,taxable_pension_income,All,5000.0,10000.0,False,False,False,6291022000 -2015,Table 1.4,AL,12,taxable_pension_income,All,5000.0,10000.0,True,False,False,1139203 -2015,Table 1.4,AM,13,taxable_pension_income,All,10000.0,15000.0,False,False,False,15061276000 -2015,Table 1.4,AL,13,taxable_pension_income,All,10000.0,15000.0,True,False,False,1727011 -2015,Table 1.4,AM,14,taxable_pension_income,All,15000.0,20000.0,False,False,False,18313815000 -2015,Table 1.4,AL,14,taxable_pension_income,All,15000.0,20000.0,True,False,False,1604960 -2015,Table 1.4,AM,15,taxable_pension_income,All,20000.0,25000.0,False,False,False,18470507000 -2015,Table 1.4,AL,15,taxable_pension_income,All,20000.0,25000.0,True,False,False,1438998 -2015,Table 1.4,AM,16,taxable_pension_income,All,25000.0,30000.0,False,False,False,18858034000 -2015,Table 1.4,AL,16,taxable_pension_income,All,25000.0,30000.0,True,False,False,1323185 -2015,Table 1.4,AM,17,taxable_pension_income,All,30000.0,40000.0,False,False,False,40025378000 -2015,Table 1.4,AL,17,taxable_pension_income,All,30000.0,40000.0,True,False,False,2453670 -2015,Table 1.4,AM,18,taxable_pension_income,All,40000.0,50000.0,False,False,False,42423815000 -2015,Table 1.4,AL,18,taxable_pension_income,All,40000.0,50000.0,True,False,False,2197229 -2015,Table 1.4,AM,19,taxable_pension_income,All,50000.0,75000.0,False,False,False,114723085000 -2015,Table 1.4,AL,19,taxable_pension_income,All,50000.0,75000.0,True,False,False,4794838 -2015,Table 1.4,AM,20,taxable_pension_income,All,75000.0,100000.0,False,False,False,109640293000 -2015,Table 1.4,AL,20,taxable_pension_income,All,75000.0,100000.0,True,False,False,3613164 -2015,Table 1.4,AM,21,taxable_pension_income,All,100000.0,200000.0,False,False,False,216352535000 -2015,Table 1.4,AL,21,taxable_pension_income,All,100000.0,200000.0,True,False,False,5391242 -2015,Table 1.4,AM,22,taxable_pension_income,All,200000.0,500000.0,False,False,False,71287369000 -2015,Table 1.4,AL,22,taxable_pension_income,All,200000.0,500000.0,True,False,False,1320681 -2015,Table 1.4,AM,23,taxable_pension_income,All,500000.0,1000000.0,False,False,False,8552399000 -2015,Table 1.4,AL,23,taxable_pension_income,All,500000.0,1000000.0,True,False,False,158716 -2015,Table 1.4,AM,24,taxable_pension_income,All,1000000.0,1500000.0,False,False,False,1899631000 -2015,Table 1.4,AL,24,taxable_pension_income,All,1000000.0,1500000.0,True,False,False,34329 -2015,Table 1.4,AM,25,taxable_pension_income,All,1500000.0,2000000.0,False,False,False,845671000 -2015,Table 1.4,AL,25,taxable_pension_income,All,1500000.0,2000000.0,True,False,False,13703 -2015,Table 1.4,AM,26,taxable_pension_income,All,2000000.0,5000000.0,False,False,False,1261502000 -2015,Table 1.4,AL,26,taxable_pension_income,All,2000000.0,5000000.0,True,False,False,19744 -2015,Table 1.4,AM,27,taxable_pension_income,All,5000000.0,10000000.0,False,False,False,463280000 -2015,Table 1.4,AL,27,taxable_pension_income,All,5000000.0,10000000.0,True,False,False,4815 -2015,Table 1.4,AM,28,taxable_pension_income,All,10000000.0,inf,False,False,False,398698000 -2015,Table 1.4,AL,28,taxable_pension_income,All,10000000.0,inf,True,False,False,3279 -2015,Table 1.4,BU,10,taxable_social_security,All,-inf,0.0,False,False,False,11443000 -2015,Table 1.4,BT,10,taxable_social_security,All,-inf,0.0,True,False,False,1092 -2015,Table 1.4,BU,9,taxable_social_security,All,-inf,inf,False,False,True,277411075000 -2015,Table 1.4,BT,9,taxable_social_security,All,-inf,inf,True,False,True,19661104 -2015,Table 1.4,BU,11,taxable_social_security,All,1.0,5000.0,False,False,False,51974000 -2015,Table 1.4,BT,11,taxable_social_security,All,1.0,5000.0,True,False,False,15592 -2015,Table 1.4,BU,12,taxable_social_security,All,5000.0,10000.0,False,False,False,191427000 -2015,Table 1.4,BT,12,taxable_social_security,All,5000.0,10000.0,True,False,False,39948 -2015,Table 1.4,BU,13,taxable_social_security,All,10000.0,15000.0,False,False,False,306013000 -2015,Table 1.4,BT,13,taxable_social_security,All,10000.0,15000.0,True,False,False,153032 -2015,Table 1.4,BU,14,taxable_social_security,All,15000.0,20000.0,False,False,False,976124000 -2015,Table 1.4,BT,14,taxable_social_security,All,15000.0,20000.0,True,False,False,862286 -2015,Table 1.4,BU,15,taxable_social_security,All,20000.0,25000.0,False,False,False,2722534000 -2015,Table 1.4,BT,15,taxable_social_security,All,20000.0,25000.0,True,False,False,1293573 -2015,Table 1.4,BU,16,taxable_social_security,All,25000.0,30000.0,False,False,False,4409525000 -2015,Table 1.4,BT,16,taxable_social_security,All,25000.0,30000.0,True,False,False,1245729 -2015,Table 1.4,BU,17,taxable_social_security,All,30000.0,40000.0,False,False,False,13187212000 -2015,Table 1.4,BT,17,taxable_social_security,All,30000.0,40000.0,True,False,False,2188504 -2015,Table 1.4,BU,18,taxable_social_security,All,40000.0,50000.0,False,False,False,18003861000 -2015,Table 1.4,BT,18,taxable_social_security,All,40000.0,50000.0,True,False,False,1846896 -2015,Table 1.4,BU,19,taxable_social_security,All,50000.0,75000.0,False,False,False,61729360000 -2015,Table 1.4,BT,19,taxable_social_security,All,50000.0,75000.0,True,False,False,4138890 -2015,Table 1.4,BU,20,taxable_social_security,All,75000.0,100000.0,False,False,False,57871398000 -2015,Table 1.4,BT,20,taxable_social_security,All,75000.0,100000.0,True,False,False,2935392 -2015,Table 1.4,BU,21,taxable_social_security,All,100000.0,200000.0,False,False,False,86214692000 -2015,Table 1.4,BT,21,taxable_social_security,All,100000.0,200000.0,True,False,False,3751578 -2015,Table 1.4,BU,22,taxable_social_security,All,200000.0,500000.0,False,False,False,25321729000 -2015,Table 1.4,BT,22,taxable_social_security,All,200000.0,500000.0,True,False,False,961000 -2015,Table 1.4,BU,23,taxable_social_security,All,500000.0,1000000.0,False,False,False,4111568000 -2015,Table 1.4,BT,23,taxable_social_security,All,500000.0,1000000.0,True,False,False,148824 -2015,Table 1.4,BU,24,taxable_social_security,All,1000000.0,1500000.0,False,False,False,991360000 -2015,Table 1.4,BT,24,taxable_social_security,All,1000000.0,1500000.0,True,False,False,35055 -2015,Table 1.4,BU,25,taxable_social_security,All,1500000.0,2000000.0,False,False,False,417740000 -2015,Table 1.4,BT,25,taxable_social_security,All,1500000.0,2000000.0,True,False,False,14133 -2015,Table 1.4,BU,26,taxable_social_security,All,2000000.0,5000000.0,False,False,False,619869000 -2015,Table 1.4,BT,26,taxable_social_security,All,2000000.0,5000000.0,True,False,False,20918 -2015,Table 1.4,BU,27,taxable_social_security,All,5000000.0,10000000.0,False,False,False,165281000 -2015,Table 1.4,BT,27,taxable_social_security,All,5000000.0,10000000.0,True,False,False,5307 -2015,Table 1.4,BU,28,taxable_social_security,All,10000000.0,inf,False,False,False,107963000 -2015,Table 1.4,BT,28,taxable_social_security,All,10000000.0,inf,True,False,False,3355 -2015,Table 1.4,AK,10,total_pension_income,All,-inf,0.0,False,False,False,7687787000 -2015,Table 1.4,AJ,10,total_pension_income,All,-inf,0.0,True,False,False,295876 -2015,Table 1.4,AK,9,total_pension_income,All,-inf,inf,False,False,True,1169067148000 -2015,Table 1.4,AJ,9,total_pension_income,All,-inf,inf,True,False,True,30754854 -2015,Table 1.4,AK,11,total_pension_income,All,1.0,5000.0,False,False,False,5148239000 -2015,Table 1.4,AJ,11,total_pension_income,All,1.0,5000.0,True,False,False,780085 -2015,Table 1.4,AK,12,total_pension_income,All,5000.0,10000.0,False,False,False,10187637000 -2015,Table 1.4,AJ,12,total_pension_income,All,5000.0,10000.0,True,False,False,1184278 -2015,Table 1.4,AK,13,total_pension_income,All,10000.0,15000.0,False,False,False,20894458000 -2015,Table 1.4,AJ,13,total_pension_income,All,10000.0,15000.0,True,False,False,1774742 -2015,Table 1.4,AK,14,total_pension_income,All,15000.0,20000.0,False,False,False,25706689000 -2015,Table 1.4,AJ,14,total_pension_income,All,15000.0,20000.0,True,False,False,1678316 -2015,Table 1.4,AK,15,total_pension_income,All,20000.0,25000.0,False,False,False,24128687000 -2015,Table 1.4,AJ,15,total_pension_income,All,20000.0,25000.0,True,False,False,1502390 -2015,Table 1.4,AK,16,total_pension_income,All,25000.0,30000.0,False,False,False,24639911000 -2015,Table 1.4,AJ,16,total_pension_income,All,25000.0,30000.0,True,False,False,1392254 -2015,Table 1.4,AK,17,total_pension_income,All,30000.0,40000.0,False,False,False,56413216000 -2015,Table 1.4,AJ,17,total_pension_income,All,30000.0,40000.0,True,False,False,2593950 -2015,Table 1.4,AK,18,total_pension_income,All,40000.0,50000.0,False,False,False,57820520000 -2015,Table 1.4,AJ,18,total_pension_income,All,40000.0,50000.0,True,False,False,2352393 -2015,Table 1.4,AK,19,total_pension_income,All,50000.0,75000.0,False,False,False,160899524000 -2015,Table 1.4,AJ,19,total_pension_income,All,50000.0,75000.0,True,False,False,5145456 -2015,Table 1.4,AK,20,total_pension_income,All,75000.0,100000.0,False,False,False,163857153000 -2015,Table 1.4,AJ,20,total_pension_income,All,75000.0,100000.0,True,False,False,3958703 -2015,Table 1.4,AK,21,total_pension_income,All,100000.0,200000.0,False,False,False,378312328000 -2015,Table 1.4,AJ,21,total_pension_income,All,100000.0,200000.0,True,False,False,6106990 -2015,Table 1.4,AK,22,total_pension_income,All,200000.0,500000.0,False,False,False,176275803000 -2015,Table 1.4,AJ,22,total_pension_income,All,200000.0,500000.0,True,False,False,1658908 -2015,Table 1.4,AK,23,total_pension_income,All,500000.0,1000000.0,False,False,False,33682369000 -2015,Table 1.4,AJ,23,total_pension_income,All,500000.0,1000000.0,True,False,False,221493 -2015,Table 1.4,AK,24,total_pension_income,All,1000000.0,1500000.0,False,False,False,9298366000 -2015,Table 1.4,AJ,24,total_pension_income,All,1000000.0,1500000.0,True,False,False,49598 -2015,Table 1.4,AK,25,total_pension_income,All,1500000.0,2000000.0,False,False,False,4182940000 -2015,Table 1.4,AJ,25,total_pension_income,All,1500000.0,2000000.0,True,False,False,19809 -2015,Table 1.4,AK,26,total_pension_income,All,2000000.0,5000000.0,False,False,False,6469958000 -2015,Table 1.4,AJ,26,total_pension_income,All,2000000.0,5000000.0,True,False,False,28130 -2015,Table 1.4,AK,27,total_pension_income,All,5000000.0,10000000.0,False,False,False,1930420000 -2015,Table 1.4,AJ,27,total_pension_income,All,5000000.0,10000000.0,True,False,False,6893 -2015,Table 1.4,AK,28,total_pension_income,All,10000000.0,inf,False,False,False,1531145000 -2015,Table 1.4,AJ,28,total_pension_income,All,10000000.0,inf,True,False,False,4588 -2015,Table 1.4,BS,10,total_social_security,All,-inf,0.0,False,False,False,17452268000 -2015,Table 1.4,BR,10,total_social_security,All,-inf,0.0,True,False,False,892768 -2015,Table 1.4,BS,9,total_social_security,All,-inf,inf,False,False,True,605152093000 -2015,Table 1.4,BR,9,total_social_security,All,-inf,inf,True,False,True,28087514 -2015,Table 1.4,BS,11,total_social_security,All,1.0,5000.0,False,False,False,32721934000 -2015,Table 1.4,BR,11,total_social_security,All,1.0,5000.0,True,False,False,1927027 -2015,Table 1.4,BS,12,total_social_security,All,5000.0,10000.0,False,False,False,36055882000 -2015,Table 1.4,BR,12,total_social_security,All,5000.0,10000.0,True,False,False,2002601 -2015,Table 1.4,BS,13,total_social_security,All,10000.0,15000.0,False,False,False,43794038000 -2015,Table 1.4,BR,13,total_social_security,All,10000.0,15000.0,True,False,False,2349570 -2015,Table 1.4,BS,14,total_social_security,All,15000.0,20000.0,False,False,False,37323814000 -2015,Table 1.4,BR,14,total_social_security,All,15000.0,20000.0,True,False,False,1959197 -2015,Table 1.4,BS,15,total_social_security,All,20000.0,25000.0,False,False,False,32034479000 -2015,Table 1.4,BR,15,total_social_security,All,20000.0,25000.0,True,False,False,1581873 -2015,Table 1.4,BS,16,total_social_security,All,25000.0,30000.0,False,False,False,27085903000 -2015,Table 1.4,BR,16,total_social_security,All,25000.0,30000.0,True,False,False,1319452 -2015,Table 1.4,BS,17,total_social_security,All,30000.0,40000.0,False,False,False,45862459000 -2015,Table 1.4,BR,17,total_social_security,All,30000.0,40000.0,True,False,False,2190498 -2015,Table 1.4,BS,18,total_social_security,All,40000.0,50000.0,False,False,False,37692182000 -2015,Table 1.4,BR,18,total_social_security,All,40000.0,50000.0,True,False,False,1848962 -2015,Table 1.4,BS,19,total_social_security,All,50000.0,75000.0,False,False,False,86766286000 -2015,Table 1.4,BR,19,total_social_security,All,50000.0,75000.0,True,False,False,4139897 -2015,Table 1.4,BS,20,total_social_security,All,75000.0,100000.0,False,False,False,69506791000 -2015,Table 1.4,BR,20,total_social_security,All,75000.0,100000.0,True,False,False,2935395 -2015,Table 1.4,BS,21,total_social_security,All,100000.0,200000.0,False,False,False,101513861000 -2015,Table 1.4,BR,21,total_social_security,All,100000.0,200000.0,True,False,False,3751605 -2015,Table 1.4,BS,22,total_social_security,All,200000.0,500000.0,False,False,False,29790900000 -2015,Table 1.4,BR,22,total_social_security,All,200000.0,500000.0,True,False,False,961029 -2015,Table 1.4,BS,23,total_social_security,All,500000.0,1000000.0,False,False,False,4837200000 -2015,Table 1.4,BR,23,total_social_security,All,500000.0,1000000.0,True,False,False,148836 -2015,Table 1.4,BS,24,total_social_security,All,1000000.0,1500000.0,False,False,False,1169114000 -2015,Table 1.4,BR,24,total_social_security,All,1000000.0,1500000.0,True,False,False,35055 -2015,Table 1.4,BS,25,total_social_security,All,1500000.0,2000000.0,False,False,False,494040000 -2015,Table 1.4,BR,25,total_social_security,All,1500000.0,2000000.0,True,False,False,14165 -2015,Table 1.4,BS,26,total_social_security,All,2000000.0,5000000.0,False,False,False,729459000 -2015,Table 1.4,BR,26,total_social_security,All,2000000.0,5000000.0,True,False,False,20924 -2015,Table 1.4,BS,27,total_social_security,All,5000000.0,10000000.0,False,False,False,194448000 -2015,Table 1.4,BR,27,total_social_security,All,5000000.0,10000000.0,True,False,False,5307 -2015,Table 1.4,BS,28,total_social_security,All,10000000.0,inf,False,False,False,127035000 -2015,Table 1.4,BR,28,total_social_security,All,10000000.0,inf,True,False,False,3356 -2015,Table 1.2,N,10,tottax,All,-inf,0.0,False,False,False,242459000 -2015,Table 1.2,M,10,tottax,All,-inf,0.0,True,False,False,6640 -2015,Table 1.2,N,9,tottax,All,-inf,inf,False,False,True,1457891441000 -2015,Table 1.2,M,9,tottax,All,-inf,inf,True,False,True,99040729 -2015,Table 1.2,N,11,tottax,All,1.0,5000.0,False,False,False,40941000 -2015,Table 1.2,M,11,tottax,All,1.0,5000.0,True,False,False,199682 -2015,Table 1.2,N,12,tottax,All,5000.0,10000.0,False,False,False,368015000 -2015,Table 1.2,M,12,tottax,All,5000.0,10000.0,True,False,False,1926254 -2015,Table 1.2,N,13,tottax,All,10000.0,15000.0,False,False,False,1381283000 -2015,Table 1.2,M,13,tottax,All,10000.0,15000.0,True,False,False,4333058 -2015,Table 1.2,N,14,tottax,All,15000.0,20000.0,False,False,False,3523850000 -2015,Table 1.2,M,14,tottax,All,15000.0,20000.0,True,False,False,5195436 -2015,Table 1.2,N,15,tottax,All,20000.0,25000.0,False,False,False,6191130000 -2015,Table 1.2,M,15,tottax,All,20000.0,25000.0,True,False,False,5404801 -2015,Table 1.2,N,16,tottax,All,25000.0,30000.0,False,False,False,8752589000 -2015,Table 1.2,M,16,tottax,All,25000.0,30000.0,True,False,False,5319345 -2015,Table 1.2,N,17,tottax,All,30000.0,40000.0,False,False,False,25167676000 -2015,Table 1.2,M,17,tottax,All,30000.0,40000.0,True,False,False,10563700 -2015,Table 1.2,N,18,tottax,All,40000.0,50000.0,False,False,False,32530207000 -2015,Table 1.2,M,18,tottax,All,40000.0,50000.0,True,False,False,9702501 -2015,Table 1.2,N,19,tottax,All,50000.0,75000.0,False,False,False,99791796000 -2015,Table 1.2,M,19,tottax,All,50000.0,75000.0,True,False,False,18684013 -2015,Table 1.2,N,20,tottax,All,75000.0,100000.0,False,False,False,105901459000 -2015,Table 1.2,M,20,tottax,All,75000.0,100000.0,True,False,False,12562177 -2015,Table 1.2,N,21,tottax,All,100000.0,200000.0,False,False,False,316349637000 -2015,Table 1.2,M,21,tottax,All,100000.0,200000.0,True,False,False,18402358 -2015,Table 1.2,N,22,tottax,All,200000.0,500000.0,False,False,False,299832203000 -2015,Table 1.2,M,22,tottax,All,200000.0,500000.0,True,False,False,5418598 -2015,Table 1.2,N,23,tottax,All,500000.0,1000000.0,False,False,False,154388762000 -2015,Table 1.2,M,23,tottax,All,500000.0,1000000.0,True,False,False,883288 -2015,Table 1.2,N,24,tottax,All,1000000.0,1500000.0,False,False,False,66323590000 -2015,Table 1.2,M,24,tottax,All,1000000.0,1500000.0,True,False,False,195676 -2015,Table 1.2,N,25,tottax,All,1500000.0,2000000.0,False,False,False,39671617000 -2015,Table 1.2,M,25,tottax,All,1500000.0,2000000.0,True,False,False,79884 -2015,Table 1.2,N,26,tottax,All,2000000.0,5000000.0,False,False,False,101488542000 -2015,Table 1.2,M,26,tottax,All,2000000.0,5000000.0,True,False,False,116605 -2015,Table 1.2,N,27,tottax,All,5000000.0,10000000.0,False,False,False,56334403000 -2015,Table 1.2,M,27,tottax,All,5000000.0,10000000.0,True,False,False,28655 -2015,Table 1.2,N,28,tottax,All,10000000.0,inf,False,False,False,139611281000 -2015,Table 1.2,M,28,tottax,All,10000000.0,inf,True,False,False,18057 -2015,Table 1.4,BQ,10,unemployment_compensation,All,-inf,0.0,False,False,False,95744000 -2015,Table 1.4,BP,10,unemployment_compensation,All,-inf,0.0,True,False,False,16718 -2015,Table 1.4,BQ,9,unemployment_compensation,All,-inf,inf,False,False,True,27225383000 -2015,Table 1.4,BP,9,unemployment_compensation,All,-inf,inf,True,False,True,6206841 -2015,Table 1.4,BQ,11,unemployment_compensation,All,1.0,5000.0,False,False,False,176649000 -2015,Table 1.4,BP,11,unemployment_compensation,All,1.0,5000.0,True,False,False,88807 -2015,Table 1.4,BQ,12,unemployment_compensation,All,5000.0,10000.0,False,False,False,758938000 -2015,Table 1.4,BP,12,unemployment_compensation,All,5000.0,10000.0,True,False,False,281347 -2015,Table 1.4,BQ,13,unemployment_compensation,All,10000.0,15000.0,False,False,False,1685162000 -2015,Table 1.4,BP,13,unemployment_compensation,All,10000.0,15000.0,True,False,False,495187 -2015,Table 1.4,BQ,14,unemployment_compensation,All,15000.0,20000.0,False,False,False,2228391000 -2015,Table 1.4,BP,14,unemployment_compensation,All,15000.0,20000.0,True,False,False,584579 -2015,Table 1.4,BQ,15,unemployment_compensation,All,20000.0,25000.0,False,False,False,2221652000 -2015,Table 1.4,BP,15,unemployment_compensation,All,20000.0,25000.0,True,False,False,523513 -2015,Table 1.4,BQ,16,unemployment_compensation,All,25000.0,30000.0,False,False,False,2065402000 -2015,Table 1.4,BP,16,unemployment_compensation,All,25000.0,30000.0,True,False,False,465381 -2015,Table 1.4,BQ,17,unemployment_compensation,All,30000.0,40000.0,False,False,False,3372825000 -2015,Table 1.4,BP,17,unemployment_compensation,All,30000.0,40000.0,True,False,False,766880 -2015,Table 1.4,BQ,18,unemployment_compensation,All,40000.0,50000.0,False,False,False,2512534000 -2015,Table 1.4,BP,18,unemployment_compensation,All,40000.0,50000.0,True,False,False,543079 -2015,Table 1.4,BQ,19,unemployment_compensation,All,50000.0,75000.0,False,False,False,4591758000 -2015,Table 1.4,BP,19,unemployment_compensation,All,50000.0,75000.0,True,False,False,963756 -2015,Table 1.4,BQ,20,unemployment_compensation,All,75000.0,100000.0,False,False,False,2965498000 -2015,Table 1.4,BP,20,unemployment_compensation,All,75000.0,100000.0,True,False,False,602671 -2015,Table 1.4,BQ,21,unemployment_compensation,All,100000.0,200000.0,False,False,False,3794597000 -2015,Table 1.4,BP,21,unemployment_compensation,All,100000.0,200000.0,True,False,False,739643 -2015,Table 1.4,BQ,22,unemployment_compensation,All,200000.0,500000.0,False,False,False,688738000 -2015,Table 1.4,BP,22,unemployment_compensation,All,200000.0,500000.0,True,False,False,125117 -2015,Table 1.4,BQ,23,unemployment_compensation,All,500000.0,1000000.0,False,False,False,48402000 -2015,Table 1.4,BP,23,unemployment_compensation,All,500000.0,1000000.0,True,False,False,7602 -2015,Table 1.4,BQ,24,unemployment_compensation,All,1000000.0,1500000.0,False,False,False,11553000 -2015,Table 1.4,BP,24,unemployment_compensation,All,1000000.0,1500000.0,True,False,False,1552 -2015,Table 1.4,BQ,25,unemployment_compensation,All,1500000.0,2000000.0,False,False,False,3229000 -2015,Table 1.4,BP,25,unemployment_compensation,All,1500000.0,2000000.0,True,False,False,456 -2015,Table 1.4,BQ,26,unemployment_compensation,All,2000000.0,5000000.0,False,False,False,3682000 -2015,Table 1.4,BP,26,unemployment_compensation,All,2000000.0,5000000.0,True,False,False,455 -2015,Table 1.4,BQ,27,unemployment_compensation,All,5000000.0,10000000.0,False,False,False,413000 -2015,Table 1.4,BP,27,unemployment_compensation,All,5000000.0,10000000.0,True,False,False,63 -2015,Table 1.4,BQ,28,unemployment_compensation,All,10000000.0,inf,False,False,False,216000 -2015,Table 1.4,BP,28,unemployment_compensation,All,10000000.0,inf,True,False,False,34 -2021,Table 1.1,D,11,adjusted_gross_income,All,-inf,0.0,False,False,False,-171836364000 -2021,Table 1.1,D,10,adjusted_gross_income,All,-inf,inf,False,False,True,14795614070000 -2021,Table 1.1,D,12,adjusted_gross_income,All,1.0,5000.0,False,False,False,19987243000 -2021,Table 1.1,D,13,adjusted_gross_income,All,5000.0,10000.0,False,False,False,67651359000 -2021,Table 1.1,D,14,adjusted_gross_income,All,10000.0,15000.0,False,False,False,125912056000 -2021,Table 1.1,D,15,adjusted_gross_income,All,15000.0,20000.0,False,False,False,170836129000 -2021,Table 1.1,D,16,adjusted_gross_income,All,20000.0,25000.0,False,False,False,199508960000 -2021,Table 1.1,D,17,adjusted_gross_income,All,25000.0,30000.0,False,False,False,241347179000 -2021,Table 1.1,D,18,adjusted_gross_income,All,30000.0,40000.0,False,False,False,561386434000 -2021,Table 1.1,D,19,adjusted_gross_income,All,40000.0,50000.0,False,False,False,573155378000 -2021,Table 1.1,D,20,adjusted_gross_income,All,50000.0,75000.0,False,False,False,1392395599000 -2021,Table 1.1,D,21,adjusted_gross_income,All,75000.0,100000.0,False,False,False,1271699391000 -2021,Table 1.1,D,22,adjusted_gross_income,All,100000.0,200000.0,False,False,False,3297058075000 -2021,Table 1.1,D,23,adjusted_gross_income,All,200000.0,500000.0,False,False,False,2619188471000 -2021,Table 1.1,D,24,adjusted_gross_income,All,500000.0,1000000.0,False,False,False,1092599034000 -2021,Table 1.1,D,25,adjusted_gross_income,All,1000000.0,1500000.0,False,False,False,454552875000 -2021,Table 1.1,D,26,adjusted_gross_income,All,1500000.0,2000000.0,False,False,False,268278123000 -2021,Table 1.1,D,27,adjusted_gross_income,All,2000000.0,5000000.0,False,False,False,698923219000 -2021,Table 1.1,D,28,adjusted_gross_income,All,5000000.0,10000000.0,False,False,False,435242550000 -2021,Table 1.1,D,29,adjusted_gross_income,All,10000000.0,inf,False,False,False,1477728359000 -2021,Table 1.2,AM,10,adjusted_gross_income,Head of Household,-inf,0.0,False,False,False,-5663364000 -2021,Table 1.2,AM,9,adjusted_gross_income,Head of Household,-inf,inf,False,False,False,1037010822000 -2021,Table 1.2,AM,11,adjusted_gross_income,Head of Household,1.0,5000.0,False,False,False,1500478000 -2021,Table 1.2,AM,12,adjusted_gross_income,Head of Household,5000.0,10000.0,False,False,False,7050139000 -2021,Table 1.2,AM,13,adjusted_gross_income,Head of Household,10000.0,15000.0,False,False,False,20151818000 -2021,Table 1.2,AM,14,adjusted_gross_income,Head of Household,15000.0,20000.0,False,False,False,33387804000 -2021,Table 1.2,AM,15,adjusted_gross_income,Head of Household,20000.0,25000.0,False,False,False,42143232000 -2021,Table 1.2,AM,16,adjusted_gross_income,Head of Household,25000.0,30000.0,False,False,False,53516222000 -2021,Table 1.2,AM,17,adjusted_gross_income,Head of Household,30000.0,40000.0,False,False,False,123133503000 -2021,Table 1.2,AM,18,adjusted_gross_income,Head of Household,40000.0,50000.0,False,False,False,99654083000 -2021,Table 1.2,AM,19,adjusted_gross_income,Head of Household,50000.0,75000.0,False,False,False,190923665000 -2021,Table 1.2,AM,20,adjusted_gross_income,Head of Household,75000.0,100000.0,False,False,False,121571248000 -2021,Table 1.2,AM,21,adjusted_gross_income,Head of Household,100000.0,200000.0,False,False,False,169608771000 -2021,Table 1.2,AM,22,adjusted_gross_income,Head of Household,200000.0,500000.0,False,False,False,73740677000 -2021,Table 1.2,AM,23,adjusted_gross_income,Head of Household,500000.0,1000000.0,False,False,False,27867019000 -2021,Table 1.2,AM,24,adjusted_gross_income,Head of Household,1000000.0,1500000.0,False,False,False,10735679000 -2021,Table 1.2,AM,25,adjusted_gross_income,Head of Household,1500000.0,2000000.0,False,False,False,6312826000 -2021,Table 1.2,AM,26,adjusted_gross_income,Head of Household,2000000.0,5000000.0,False,False,False,16591282000 -2021,Table 1.2,AM,27,adjusted_gross_income,Head of Household,5000000.0,10000000.0,False,False,False,10364542000 -2021,Table 1.2,AM,28,adjusted_gross_income,Head of Household,10000000.0,inf,False,False,False,34421197000 -2021,Table 1.2,O,10,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,-inf,0.0,False,False,False,-104261187000 -2021,Table 1.2,O,9,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,-inf,inf,False,False,False,9496757833000 -2021,Table 1.2,O,11,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,1.0,5000.0,False,False,False,1572736000 -2021,Table 1.2,O,12,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,5000.0,10000.0,False,False,False,5618512000 -2021,Table 1.2,O,13,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,10000.0,15000.0,False,False,False,12030518000 -2021,Table 1.2,O,14,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,15000.0,20000.0,False,False,False,18128929000 -2021,Table 1.2,O,15,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,20000.0,25000.0,False,False,False,27927390000 -2021,Table 1.2,O,16,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,25000.0,30000.0,False,False,False,37000617000 -2021,Table 1.2,O,17,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,30000.0,40000.0,False,False,False,97902867000 -2021,Table 1.2,O,18,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,40000.0,50000.0,False,False,False,129639187000 -2021,Table 1.2,O,19,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,50000.0,75000.0,False,False,False,466603588000 -2021,Table 1.2,O,20,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,75000.0,100000.0,False,False,False,676922080000 -2021,Table 1.2,O,21,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,100000.0,200000.0,False,False,False,2402518137000 -2021,Table 1.2,O,22,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,200000.0,500000.0,False,False,False,2128764355000 -2021,Table 1.2,O,23,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,500000.0,1000000.0,False,False,False,908210770000 -2021,Table 1.2,O,24,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,1000000.0,1500000.0,False,False,False,382588291000 -2021,Table 1.2,O,25,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,1500000.0,2000000.0,False,False,False,223211644000 -2021,Table 1.2,O,26,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,2000000.0,5000000.0,False,False,False,571344173000 -2021,Table 1.2,O,27,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,5000000.0,10000000.0,False,False,False,354206871000 -2021,Table 1.2,O,28,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,10000000.0,inf,False,False,False,1156828354000 -2021,Table 1.2,AA,10,adjusted_gross_income,Married Filing Separately,-inf,0.0,False,False,False,-10308919000 -2021,Table 1.2,AA,9,adjusted_gross_income,Married Filing Separately,-inf,inf,False,False,False,349173490000 -2021,Table 1.2,AA,11,adjusted_gross_income,Married Filing Separately,1.0,5000.0,False,False,False,339626000 -2021,Table 1.2,AA,12,adjusted_gross_income,Married Filing Separately,5000.0,10000.0,False,False,False,1052349000 -2021,Table 1.2,AA,13,adjusted_gross_income,Married Filing Separately,10000.0,15000.0,False,False,False,1980767000 -2021,Table 1.2,AA,14,adjusted_gross_income,Married Filing Separately,15000.0,20000.0,False,False,False,2841995000 -2021,Table 1.2,AA,15,adjusted_gross_income,Married Filing Separately,20000.0,25000.0,False,False,False,4090074000 -2021,Table 1.2,AA,16,adjusted_gross_income,Married Filing Separately,25000.0,30000.0,False,False,False,6062013000 -2021,Table 1.2,AA,17,adjusted_gross_income,Married Filing Separately,30000.0,40000.0,False,False,False,17234995000 -2021,Table 1.2,AA,18,adjusted_gross_income,Married Filing Separately,40000.0,50000.0,False,False,False,21379178000 -2021,Table 1.2,AA,19,adjusted_gross_income,Married Filing Separately,50000.0,75000.0,False,False,False,52103375000 -2021,Table 1.2,AA,20,adjusted_gross_income,Married Filing Separately,75000.0,100000.0,False,False,False,30369694000 -2021,Table 1.2,AA,21,adjusted_gross_income,Married Filing Separately,100000.0,200000.0,False,False,False,59902172000 -2021,Table 1.2,AA,22,adjusted_gross_income,Married Filing Separately,200000.0,500000.0,False,False,False,28525110000 -2021,Table 1.2,AA,23,adjusted_gross_income,Married Filing Separately,500000.0,1000000.0,False,False,False,13063263000 -2021,Table 1.2,AA,24,adjusted_gross_income,Married Filing Separately,1000000.0,1500000.0,False,False,False,6934037000 -2021,Table 1.2,AA,25,adjusted_gross_income,Married Filing Separately,1500000.0,2000000.0,False,False,False,5061198000 -2021,Table 1.2,AA,26,adjusted_gross_income,Married Filing Separately,2000000.0,5000000.0,False,False,False,16332731000 -2021,Table 1.2,AA,27,adjusted_gross_income,Married Filing Separately,5000000.0,10000000.0,False,False,False,11765312000 -2021,Table 1.2,AA,28,adjusted_gross_income,Married Filing Separately,10000000.0,inf,False,False,False,80444520000 -2021,Table 1.2,AY,10,adjusted_gross_income,Single,-inf,0.0,False,False,False,-51602893000 -2021,Table 1.2,AY,9,adjusted_gross_income,Single,-inf,inf,False,False,False,3912671925000 -2021,Table 1.2,AY,11,adjusted_gross_income,Single,1.0,5000.0,False,False,False,16574403000 -2021,Table 1.2,AY,12,adjusted_gross_income,Single,5000.0,10000.0,False,False,False,53930358000 -2021,Table 1.2,AY,13,adjusted_gross_income,Single,10000.0,15000.0,False,False,False,91748952000 -2021,Table 1.2,AY,14,adjusted_gross_income,Single,15000.0,20000.0,False,False,False,116477401000 -2021,Table 1.2,AY,15,adjusted_gross_income,Single,20000.0,25000.0,False,False,False,125348264000 -2021,Table 1.2,AY,16,adjusted_gross_income,Single,25000.0,30000.0,False,False,False,144768327000 -2021,Table 1.2,AY,17,adjusted_gross_income,Single,30000.0,40000.0,False,False,False,323115069000 -2021,Table 1.2,AY,18,adjusted_gross_income,Single,40000.0,50000.0,False,False,False,322482930000 -2021,Table 1.2,AY,19,adjusted_gross_income,Single,50000.0,75000.0,False,False,False,682764971000 -2021,Table 1.2,AY,20,adjusted_gross_income,Single,75000.0,100000.0,False,False,False,442836369000 -2021,Table 1.2,AY,21,adjusted_gross_income,Single,100000.0,200000.0,False,False,False,665028995000 -2021,Table 1.2,AY,22,adjusted_gross_income,Single,200000.0,500000.0,False,False,False,388158330000 -2021,Table 1.2,AY,23,adjusted_gross_income,Single,500000.0,1000000.0,False,False,False,143457981000 -2021,Table 1.2,AY,24,adjusted_gross_income,Single,1000000.0,1500000.0,False,False,False,54294868000 -2021,Table 1.2,AY,25,adjusted_gross_income,Single,1500000.0,2000000.0,False,False,False,33692456000 -2021,Table 1.2,AY,26,adjusted_gross_income,Single,2000000.0,5000000.0,False,False,False,94655032000 -2021,Table 1.2,AY,27,adjusted_gross_income,Single,5000000.0,10000000.0,False,False,False,58905825000 -2021,Table 1.2,AY,28,adjusted_gross_income,Single,10000000.0,inf,False,False,False,206034288000 -2021,Table 1.4,EE,10,alternative_minimum_tax,All,-inf,0.0,False,False,False,173716000 -2021,Table 1.4,ED,10,alternative_minimum_tax,All,-inf,0.0,True,False,False,3867 -2021,Table 1.4,EE,9,alternative_minimum_tax,All,-inf,inf,False,False,True,5598598000 -2021,Table 1.4,ED,9,alternative_minimum_tax,All,-inf,inf,True,False,True,243550 -2021,Table 1.4,EE,11,alternative_minimum_tax,All,1.0,5000.0,False,False,False,1480000 -2021,Table 1.4,ED,11,alternative_minimum_tax,All,1.0,5000.0,True,False,False,18 -2021,Table 1.4,EE,12,alternative_minimum_tax,All,5000.0,10000.0,False,False,False,0 -2021,Table 1.4,ED,12,alternative_minimum_tax,All,5000.0,10000.0,True,False,False,0 -2021,Table 1.4,EE,13,alternative_minimum_tax,All,10000.0,15000.0,False,False,False,0 -2021,Table 1.4,ED,13,alternative_minimum_tax,All,10000.0,15000.0,True,False,False,0 -2021,Table 1.4,EE,14,alternative_minimum_tax,All,15000.0,20000.0,False,False,False,434000 -2021,Table 1.4,ED,14,alternative_minimum_tax,All,15000.0,20000.0,True,False,False,13 -2021,Table 1.4,EE,15,alternative_minimum_tax,All,20000.0,25000.0,False,False,False,0 -2021,Table 1.4,ED,15,alternative_minimum_tax,All,20000.0,25000.0,True,False,False,0 -2021,Table 1.4,EE,16,alternative_minimum_tax,All,25000.0,30000.0,False,False,False,97684000 -2021,Table 1.4,ED,16,alternative_minimum_tax,All,25000.0,30000.0,True,False,False,1183 -2021,Table 1.4,EE,17,alternative_minimum_tax,All,30000.0,40000.0,False,False,False,872000 -2021,Table 1.4,ED,17,alternative_minimum_tax,All,30000.0,40000.0,True,False,False,100 -2021,Table 1.4,EE,18,alternative_minimum_tax,All,40000.0,50000.0,False,False,False,1319000 -2021,Table 1.4,ED,18,alternative_minimum_tax,All,40000.0,50000.0,True,False,False,89 -2021,Table 1.4,EE,19,alternative_minimum_tax,All,50000.0,75000.0,False,False,False,25173000 -2021,Table 1.4,ED,19,alternative_minimum_tax,All,50000.0,75000.0,True,False,False,2897 -2021,Table 1.4,EE,20,alternative_minimum_tax,All,75000.0,100000.0,False,False,False,9598000 -2021,Table 1.4,ED,20,alternative_minimum_tax,All,75000.0,100000.0,True,False,False,3925 -2021,Table 1.4,EE,21,alternative_minimum_tax,All,100000.0,200000.0,False,False,False,134503000 -2021,Table 1.4,ED,21,alternative_minimum_tax,All,100000.0,200000.0,True,False,False,16341 -2021,Table 1.4,EE,22,alternative_minimum_tax,All,200000.0,500000.0,False,False,False,870515000 -2021,Table 1.4,ED,22,alternative_minimum_tax,All,200000.0,500000.0,True,False,False,38734 -2021,Table 1.4,EE,23,alternative_minimum_tax,All,500000.0,1000000.0,False,False,False,4283305000 -2021,Table 1.4,ED,23,alternative_minimum_tax,All,500000.0,1000000.0,True,False,False,176382 -2021,Table 1.4,EE,24,alternative_minimum_tax,All,1000000.0,1500000.0,False,False,False,0 -2021,Table 1.4,ED,24,alternative_minimum_tax,All,1000000.0,1500000.0,True,False,False,0 -2021,Table 1.4,EE,25,alternative_minimum_tax,All,1500000.0,2000000.0,False,False,False,0 -2021,Table 1.4,ED,25,alternative_minimum_tax,All,1500000.0,2000000.0,True,False,False,0 -2021,Table 1.4,EE,26,alternative_minimum_tax,All,2000000.0,5000000.0,False,False,False,0 -2021,Table 1.4,ED,26,alternative_minimum_tax,All,2000000.0,5000000.0,True,False,False,0 -2021,Table 1.4,EE,27,alternative_minimum_tax,All,5000000.0,10000000.0,False,False,False,0 -2021,Table 1.4,ED,27,alternative_minimum_tax,All,5000000.0,10000000.0,True,False,False,0 -2021,Table 1.4,EE,28,alternative_minimum_tax,All,10000000.0,inf,False,False,False,0 -2021,Table 1.4,ED,28,alternative_minimum_tax,All,10000000.0,inf,True,False,False,0 -2021,Table 1.4,W,10,business_net_losses,All,-inf,0.0,False,False,False,19401043000 -2021,Table 1.4,V,10,business_net_losses,All,-inf,0.0,True,False,False,496910 -2021,Table 1.4,W,9,business_net_losses,All,-inf,inf,False,False,True,105580403000 -2021,Table 1.4,V,9,business_net_losses,All,-inf,inf,True,False,True,7546660 -2021,Table 1.4,W,11,business_net_losses,All,1.0,5000.0,False,False,False,1090552000 -2021,Table 1.4,V,11,business_net_losses,All,1.0,5000.0,True,False,False,129756 -2021,Table 1.4,W,12,business_net_losses,All,5000.0,10000.0,False,False,False,1934591000 -2021,Table 1.4,V,12,business_net_losses,All,5000.0,10000.0,True,False,False,174436 -2021,Table 1.4,W,13,business_net_losses,All,10000.0,15000.0,False,False,False,4550449000 -2021,Table 1.4,V,13,business_net_losses,All,10000.0,15000.0,True,False,False,383871 -2021,Table 1.4,W,14,business_net_losses,All,15000.0,20000.0,False,False,False,5821504000 -2021,Table 1.4,V,14,business_net_losses,All,15000.0,20000.0,True,False,False,489504 -2021,Table 1.4,W,15,business_net_losses,All,20000.0,25000.0,False,False,False,4398237000 -2021,Table 1.4,V,15,business_net_losses,All,20000.0,25000.0,True,False,False,404331 -2021,Table 1.4,W,16,business_net_losses,All,25000.0,30000.0,False,False,False,4249474000 -2021,Table 1.4,V,16,business_net_losses,All,25000.0,30000.0,True,False,False,398390 -2021,Table 1.4,W,17,business_net_losses,All,30000.0,40000.0,False,False,False,7839859000 -2021,Table 1.4,V,17,business_net_losses,All,30000.0,40000.0,True,False,False,731244 -2021,Table 1.4,W,18,business_net_losses,All,40000.0,50000.0,False,False,False,6422149000 -2021,Table 1.4,V,18,business_net_losses,All,40000.0,50000.0,True,False,False,614437 -2021,Table 1.4,W,19,business_net_losses,All,50000.0,75000.0,False,False,False,9576425000 -2021,Table 1.4,V,19,business_net_losses,All,50000.0,75000.0,True,False,False,1000873 -2021,Table 1.4,W,20,business_net_losses,All,75000.0,100000.0,False,False,False,7506827000 -2021,Table 1.4,V,20,business_net_losses,All,75000.0,100000.0,True,False,False,712587 -2021,Table 1.4,W,21,business_net_losses,All,100000.0,200000.0,False,False,False,13077153000 -2021,Table 1.4,V,21,business_net_losses,All,100000.0,200000.0,True,False,False,1328596 -2021,Table 1.4,W,22,business_net_losses,All,200000.0,500000.0,False,False,False,8282956000 -2021,Table 1.4,V,22,business_net_losses,All,200000.0,500000.0,True,False,False,526968 -2021,Table 1.4,W,23,business_net_losses,All,500000.0,1000000.0,False,False,False,2797954000 -2021,Table 1.4,V,23,business_net_losses,All,500000.0,1000000.0,True,False,False,96621 -2021,Table 1.4,W,24,business_net_losses,All,1000000.0,1500000.0,False,False,False,1176858000 -2021,Table 1.4,V,24,business_net_losses,All,1000000.0,1500000.0,True,False,False,23020 -2021,Table 1.4,W,25,business_net_losses,All,1500000.0,2000000.0,False,False,False,745854000 -2021,Table 1.4,V,25,business_net_losses,All,1500000.0,2000000.0,True,False,False,9921 -2021,Table 1.4,W,26,business_net_losses,All,2000000.0,5000000.0,False,False,False,2221287000 -2021,Table 1.4,V,26,business_net_losses,All,2000000.0,5000000.0,True,False,False,16222 -2021,Table 1.4,W,27,business_net_losses,All,5000000.0,10000000.0,False,False,False,1162557000 -2021,Table 1.4,V,27,business_net_losses,All,5000000.0,10000000.0,True,False,False,4765 -2021,Table 1.4,W,28,business_net_losses,All,10000000.0,inf,False,False,False,3324675000 -2021,Table 1.4,V,28,business_net_losses,All,10000000.0,inf,True,False,False,4207 -2021,Table 1.4,U,10,business_net_profits,All,-inf,0.0,False,False,False,4193499000 -2021,Table 1.4,T,10,business_net_profits,All,-inf,0.0,True,False,False,177452 -2021,Table 1.4,U,9,business_net_profits,All,-inf,inf,False,False,True,517081772000 -2021,Table 1.4,T,9,business_net_profits,All,-inf,inf,True,False,True,21105685 -2021,Table 1.4,U,11,business_net_profits,All,1.0,5000.0,False,False,False,3659049000 -2021,Table 1.4,T,11,business_net_profits,All,1.0,5000.0,True,False,False,1387699 -2021,Table 1.4,U,12,business_net_profits,All,5000.0,10000.0,False,False,False,10546179000 -2021,Table 1.4,T,12,business_net_profits,All,5000.0,10000.0,True,False,False,1562204 -2021,Table 1.4,U,13,business_net_profits,All,10000.0,15000.0,False,False,False,20104970000 -2021,Table 1.4,T,13,business_net_profits,All,10000.0,15000.0,True,False,False,2046193 -2021,Table 1.4,U,14,business_net_profits,All,15000.0,20000.0,False,False,False,18140645000 -2021,Table 1.4,T,14,business_net_profits,All,15000.0,20000.0,True,False,False,1574602 -2021,Table 1.4,U,15,business_net_profits,All,20000.0,25000.0,False,False,False,16237426000 -2021,Table 1.4,T,15,business_net_profits,All,20000.0,25000.0,True,False,False,1258745 -2021,Table 1.4,U,16,business_net_profits,All,25000.0,30000.0,False,False,False,15467287000 -2021,Table 1.4,T,16,business_net_profits,All,25000.0,30000.0,True,False,False,1060963 -2021,Table 1.4,U,17,business_net_profits,All,30000.0,40000.0,False,False,False,26647935000 -2021,Table 1.4,T,17,business_net_profits,All,30000.0,40000.0,True,False,False,1633405 -2021,Table 1.4,U,18,business_net_profits,All,40000.0,50000.0,False,False,False,22811556000 -2021,Table 1.4,T,18,business_net_profits,All,40000.0,50000.0,True,False,False,1255792 -2021,Table 1.4,U,19,business_net_profits,All,50000.0,75000.0,False,False,False,48371161000 -2021,Table 1.4,T,19,business_net_profits,All,50000.0,75000.0,True,False,False,2395327 -2021,Table 1.4,U,20,business_net_profits,All,75000.0,100000.0,False,False,False,36692610000 -2021,Table 1.4,T,20,business_net_profits,All,75000.0,100000.0,True,False,False,1620171 -2021,Table 1.4,U,21,business_net_profits,All,100000.0,200000.0,False,False,False,97740921000 -2021,Table 1.4,T,21,business_net_profits,All,100000.0,200000.0,True,False,False,3193268 -2021,Table 1.4,U,22,business_net_profits,All,200000.0,500000.0,False,False,False,98370059000 -2021,Table 1.4,T,22,business_net_profits,All,200000.0,500000.0,True,False,False,1464231 -2021,Table 1.4,U,23,business_net_profits,All,500000.0,1000000.0,False,False,False,40285196000 -2021,Table 1.4,T,23,business_net_profits,All,500000.0,1000000.0,True,False,False,310202 -2021,Table 1.4,U,24,business_net_profits,All,1000000.0,1500000.0,False,False,False,14533100000 -2021,Table 1.4,T,24,business_net_profits,All,1000000.0,1500000.0,True,False,False,72615 -2021,Table 1.4,U,25,business_net_profits,All,1500000.0,2000000.0,False,False,False,8245025000 -2021,Table 1.4,T,25,business_net_profits,All,1500000.0,2000000.0,True,False,False,29373 -2021,Table 1.4,U,26,business_net_profits,All,2000000.0,5000000.0,False,False,False,16755437000 -2021,Table 1.4,T,26,business_net_profits,All,2000000.0,5000000.0,True,False,False,43498 -2021,Table 1.4,U,27,business_net_profits,All,5000000.0,10000000.0,False,False,False,7274231000 -2021,Table 1.4,T,27,business_net_profits,All,5000000.0,10000000.0,True,False,False,11675 -2021,Table 1.4,U,28,business_net_profits,All,10000000.0,inf,False,False,False,11005486000 -2021,Table 1.4,T,28,business_net_profits,All,10000000.0,inf,True,False,False,8271 -2021,Table 1.4,Y,10,capital_gains_distributions,All,-inf,0.0,False,False,False,65371000 -2021,Table 1.4,X,10,capital_gains_distributions,All,-inf,0.0,True,False,False,22086 -2021,Table 1.4,Y,9,capital_gains_distributions,All,-inf,inf,False,False,True,23889533000 -2021,Table 1.4,X,9,capital_gains_distributions,All,-inf,inf,True,False,True,4505544 -2021,Table 1.4,Y,11,capital_gains_distributions,All,1.0,5000.0,False,False,False,113762000 -2021,Table 1.4,X,11,capital_gains_distributions,All,1.0,5000.0,True,False,False,147555 -2021,Table 1.4,Y,12,capital_gains_distributions,All,5000.0,10000.0,False,False,False,245186000 -2021,Table 1.4,X,12,capital_gains_distributions,All,5000.0,10000.0,True,False,False,156516 -2021,Table 1.4,Y,13,capital_gains_distributions,All,10000.0,15000.0,False,False,False,280333000 -2021,Table 1.4,X,13,capital_gains_distributions,All,10000.0,15000.0,True,False,False,130377 -2021,Table 1.4,Y,14,capital_gains_distributions,All,15000.0,20000.0,False,False,False,295710000 -2021,Table 1.4,X,14,capital_gains_distributions,All,15000.0,20000.0,True,False,False,116943 -2021,Table 1.4,Y,15,capital_gains_distributions,All,20000.0,25000.0,False,False,False,240785000 -2021,Table 1.4,X,15,capital_gains_distributions,All,20000.0,25000.0,True,False,False,129200 -2021,Table 1.4,Y,16,capital_gains_distributions,All,25000.0,30000.0,False,False,False,259495000 -2021,Table 1.4,X,16,capital_gains_distributions,All,25000.0,30000.0,True,False,False,103882 -2021,Table 1.4,Y,17,capital_gains_distributions,All,30000.0,40000.0,False,False,False,639548000 -2021,Table 1.4,X,17,capital_gains_distributions,All,30000.0,40000.0,True,False,False,242939 -2021,Table 1.4,Y,18,capital_gains_distributions,All,40000.0,50000.0,False,False,False,778440000 -2021,Table 1.4,X,18,capital_gains_distributions,All,40000.0,50000.0,True,False,False,262877 -2021,Table 1.4,Y,19,capital_gains_distributions,All,50000.0,75000.0,False,False,False,2211122000 -2021,Table 1.4,X,19,capital_gains_distributions,All,50000.0,75000.0,True,False,False,690766 -2021,Table 1.4,Y,20,capital_gains_distributions,All,75000.0,100000.0,False,False,False,2396707000 -2021,Table 1.4,X,20,capital_gains_distributions,All,75000.0,100000.0,True,False,False,576208 -2021,Table 1.4,Y,21,capital_gains_distributions,All,100000.0,200000.0,False,False,False,7791104000 -2021,Table 1.4,X,21,capital_gains_distributions,All,100000.0,200000.0,True,False,False,1277399 -2021,Table 1.4,Y,22,capital_gains_distributions,All,200000.0,500000.0,False,False,False,6797511000 -2021,Table 1.4,X,22,capital_gains_distributions,All,200000.0,500000.0,True,False,False,570826 -2021,Table 1.4,Y,23,capital_gains_distributions,All,500000.0,1000000.0,False,False,False,1132318000 -2021,Table 1.4,X,23,capital_gains_distributions,All,500000.0,1000000.0,True,False,False,62560 -2021,Table 1.4,Y,24,capital_gains_distributions,All,1000000.0,1500000.0,False,False,False,365803000 -2021,Table 1.4,X,24,capital_gains_distributions,All,1000000.0,1500000.0,True,False,False,9603 -2021,Table 1.4,Y,25,capital_gains_distributions,All,1500000.0,2000000.0,False,False,False,50466000 -2021,Table 1.4,X,25,capital_gains_distributions,All,1500000.0,2000000.0,True,False,False,2394 -2021,Table 1.4,Y,26,capital_gains_distributions,All,2000000.0,5000000.0,False,False,False,117583000 -2021,Table 1.4,X,26,capital_gains_distributions,All,2000000.0,5000000.0,True,False,False,2895 -2021,Table 1.4,Y,27,capital_gains_distributions,All,5000000.0,10000000.0,False,False,False,32557000 -2021,Table 1.4,X,27,capital_gains_distributions,All,5000000.0,10000000.0,True,False,False,392 -2021,Table 1.4,Y,28,capital_gains_distributions,All,10000000.0,inf,False,False,False,75734000 -2021,Table 1.4,X,28,capital_gains_distributions,All,10000000.0,inf,True,False,False,127 -2021,Table 1.4,AA,10,capital_gains_gross,All,-inf,0.0,False,False,False,19015791000 -2021,Table 1.4,Z,10,capital_gains_gross,All,-inf,0.0,True,False,False,168588 -2021,Table 1.4,AA,9,capital_gains_gross,All,-inf,inf,False,False,True,2048795356000 -2021,Table 1.4,Z,9,capital_gains_gross,All,-inf,inf,True,False,True,20497375 -2021,Table 1.4,AA,11,capital_gains_gross,All,1.0,5000.0,False,False,False,594696000 -2021,Table 1.4,Z,11,capital_gains_gross,All,1.0,5000.0,True,False,False,329154 -2021,Table 1.4,AA,12,capital_gains_gross,All,5000.0,10000.0,False,False,False,1350615000 -2021,Table 1.4,Z,12,capital_gains_gross,All,5000.0,10000.0,True,False,False,332066 -2021,Table 1.4,AA,13,capital_gains_gross,All,10000.0,15000.0,False,False,False,1733569000 -2021,Table 1.4,Z,13,capital_gains_gross,All,10000.0,15000.0,True,False,False,374844 -2021,Table 1.4,AA,14,capital_gains_gross,All,15000.0,20000.0,False,False,False,2147651000 -2021,Table 1.4,Z,14,capital_gains_gross,All,15000.0,20000.0,True,False,False,419502 -2021,Table 1.4,AA,15,capital_gains_gross,All,20000.0,25000.0,False,False,False,2033390000 -2021,Table 1.4,Z,15,capital_gains_gross,All,20000.0,25000.0,True,False,False,392742 -2021,Table 1.4,AA,16,capital_gains_gross,All,25000.0,30000.0,False,False,False,2354104000 -2021,Table 1.4,Z,16,capital_gains_gross,All,25000.0,30000.0,True,False,False,422949 -2021,Table 1.4,AA,17,capital_gains_gross,All,30000.0,40000.0,False,False,False,5913774000 -2021,Table 1.4,Z,17,capital_gains_gross,All,30000.0,40000.0,True,False,False,907889 -2021,Table 1.4,AA,18,capital_gains_gross,All,40000.0,50000.0,False,False,False,6347528000 -2021,Table 1.4,Z,18,capital_gains_gross,All,40000.0,50000.0,True,False,False,975226 -2021,Table 1.4,AA,19,capital_gains_gross,All,50000.0,75000.0,False,False,False,20655401000 -2021,Table 1.4,Z,19,capital_gains_gross,All,50000.0,75000.0,True,False,False,2364604 -2021,Table 1.4,AA,20,capital_gains_gross,All,75000.0,100000.0,False,False,False,27763563000 -2021,Table 1.4,Z,20,capital_gains_gross,All,75000.0,100000.0,True,False,False,2289026 -2021,Table 1.4,AA,21,capital_gains_gross,All,100000.0,200000.0,False,False,False,126157757000 -2021,Table 1.4,Z,21,capital_gains_gross,All,100000.0,200000.0,True,False,False,5731237 -2021,Table 1.4,AA,22,capital_gains_gross,All,200000.0,500000.0,False,False,False,239861626000 -2021,Table 1.4,Z,22,capital_gains_gross,All,200000.0,500000.0,True,False,False,4062046 -2021,Table 1.4,AA,23,capital_gains_gross,All,500000.0,1000000.0,False,False,False,185067883000 -2021,Table 1.4,Z,23,capital_gains_gross,All,500000.0,1000000.0,True,False,False,1052486 -2021,Table 1.4,AA,24,capital_gains_gross,All,1000000.0,1500000.0,False,False,False,98605526000 -2021,Table 1.4,Z,24,capital_gains_gross,All,1000000.0,1500000.0,True,False,False,276029 -2021,Table 1.4,AA,25,capital_gains_gross,All,1500000.0,2000000.0,False,False,False,67058929000 -2021,Table 1.4,Z,25,capital_gains_gross,All,1500000.0,2000000.0,True,False,False,119345 -2021,Table 1.4,AA,26,capital_gains_gross,All,2000000.0,5000000.0,False,False,False,216578879000 -2021,Table 1.4,Z,26,capital_gains_gross,All,2000000.0,5000000.0,True,False,False,185600 -2021,Table 1.4,AA,27,capital_gains_gross,All,5000000.0,10000000.0,False,False,False,175240752000 -2021,Table 1.4,Z,27,capital_gains_gross,All,5000000.0,10000000.0,True,False,False,53600 -2021,Table 1.4,AA,28,capital_gains_gross,All,10000000.0,inf,False,False,False,850313922000 -2021,Table 1.4,Z,28,capital_gains_gross,All,10000000.0,inf,True,False,False,40444 -2021,Table 1.4,AC,10,capital_gains_losses,All,-inf,0.0,False,False,False,860874000 -2021,Table 1.4,AB,10,capital_gains_losses,All,-inf,0.0,True,False,False,347354 -2021,Table 1.4,AC,9,capital_gains_losses,All,-inf,inf,False,False,True,16241889000 -2021,Table 1.4,AB,9,capital_gains_losses,All,-inf,inf,True,False,True,8074079 -2021,Table 1.4,AC,11,capital_gains_losses,All,1.0,5000.0,False,False,False,454913000 -2021,Table 1.4,AB,11,capital_gains_losses,All,1.0,5000.0,True,False,False,232283 -2021,Table 1.4,AC,12,capital_gains_losses,All,5000.0,10000.0,False,False,False,482569000 -2021,Table 1.4,AB,12,capital_gains_losses,All,5000.0,10000.0,True,False,False,254651 -2021,Table 1.4,AC,13,capital_gains_losses,All,10000.0,15000.0,False,False,False,501628000 -2021,Table 1.4,AB,13,capital_gains_losses,All,10000.0,15000.0,True,False,False,261320 -2021,Table 1.4,AC,14,capital_gains_losses,All,15000.0,20000.0,False,False,False,506220000 -2021,Table 1.4,AB,14,capital_gains_losses,All,15000.0,20000.0,True,False,False,277969 -2021,Table 1.4,AC,15,capital_gains_losses,All,20000.0,25000.0,False,False,False,429782000 -2021,Table 1.4,AB,15,capital_gains_losses,All,20000.0,25000.0,True,False,False,236185 -2021,Table 1.4,AC,16,capital_gains_losses,All,25000.0,30000.0,False,False,False,453545000 -2021,Table 1.4,AB,16,capital_gains_losses,All,25000.0,30000.0,True,False,False,248004 -2021,Table 1.4,AC,17,capital_gains_losses,All,30000.0,40000.0,False,False,False,811885000 -2021,Table 1.4,AB,17,capital_gains_losses,All,30000.0,40000.0,True,False,False,466004 -2021,Table 1.4,AC,18,capital_gains_losses,All,40000.0,50000.0,False,False,False,764543000 -2021,Table 1.4,AB,18,capital_gains_losses,All,40000.0,50000.0,True,False,False,414682 -2021,Table 1.4,AC,19,capital_gains_losses,All,50000.0,75000.0,False,False,False,1890497000 -2021,Table 1.4,AB,19,capital_gains_losses,All,50000.0,75000.0,True,False,False,1009155 -2021,Table 1.4,AC,20,capital_gains_losses,All,75000.0,100000.0,False,False,False,1644525000 -2021,Table 1.4,AB,20,capital_gains_losses,All,75000.0,100000.0,True,False,False,853928 -2021,Table 1.4,AC,21,capital_gains_losses,All,100000.0,200000.0,False,False,False,3937902000 -2021,Table 1.4,AB,21,capital_gains_losses,All,100000.0,200000.0,True,False,False,1948252 -2021,Table 1.4,AC,22,capital_gains_losses,All,200000.0,500000.0,False,False,False,2553466000 -2021,Table 1.4,AB,22,capital_gains_losses,All,200000.0,500000.0,True,False,False,1153231 -2021,Table 1.4,AC,23,capital_gains_losses,All,500000.0,1000000.0,False,False,False,621321000 -2021,Table 1.4,AB,23,capital_gains_losses,All,500000.0,1000000.0,True,False,False,250020 -2021,Table 1.4,AC,24,capital_gains_losses,All,1000000.0,1500000.0,False,False,False,147697000 -2021,Table 1.4,AB,24,capital_gains_losses,All,1000000.0,1500000.0,True,False,False,55654 -2021,Table 1.4,AC,25,capital_gains_losses,All,1500000.0,2000000.0,False,False,False,60591000 -2021,Table 1.4,AB,25,capital_gains_losses,All,1500000.0,2000000.0,True,False,False,22285 -2021,Table 1.4,AC,26,capital_gains_losses,All,2000000.0,5000000.0,False,False,False,87792000 -2021,Table 1.4,AB,26,capital_gains_losses,All,2000000.0,5000000.0,True,False,False,31810 -2021,Table 1.4,AC,27,capital_gains_losses,All,5000000.0,10000000.0,False,False,False,20661000 -2021,Table 1.4,AB,27,capital_gains_losses,All,5000000.0,10000000.0,True,False,False,7274 -2021,Table 1.4,AC,28,capital_gains_losses,All,10000000.0,inf,False,False,False,11481000 -2021,Table 1.4,AB,28,capital_gains_losses,All,10000000.0,inf,True,False,False,4018 -2021,Table 2.1,CX,10,charitable_contributions_deductions,All,-inf,inf,False,False,True,263250541000 -2021,Table 2.1,CW,10,charitable_contributions_deductions,All,-inf,inf,True,False,True,12117590 -2021,Table 2.1,CX,11,charitable_contributions_deductions,All,0.0,5000.0,False,False,False,27412000 -2021,Table 2.1,CW,11,charitable_contributions_deductions,All,0.0,5000.0,True,False,False,36897 -2021,Table 2.1,CX,12,charitable_contributions_deductions,All,5000.0,10000.0,False,False,False,96560000 -2021,Table 2.1,CW,12,charitable_contributions_deductions,All,5000.0,10000.0,True,False,False,50340 -2021,Table 2.1,CX,13,charitable_contributions_deductions,All,10000.0,15000.0,False,False,False,155840000 -2021,Table 2.1,CW,13,charitable_contributions_deductions,All,10000.0,15000.0,True,False,False,64125 -2021,Table 2.1,CX,14,charitable_contributions_deductions,All,15000.0,20000.0,False,False,False,277664000 -2021,Table 2.1,CW,14,charitable_contributions_deductions,All,15000.0,20000.0,True,False,False,97378 -2021,Table 2.1,CX,15,charitable_contributions_deductions,All,20000.0,25000.0,False,False,False,419994000 -2021,Table 2.1,CW,15,charitable_contributions_deductions,All,20000.0,25000.0,True,False,False,108446 -2021,Table 2.1,CX,16,charitable_contributions_deductions,All,25000.0,30000.0,False,False,False,706756000 -2021,Table 2.1,CW,16,charitable_contributions_deductions,All,25000.0,30000.0,True,False,False,144537 -2021,Table 2.1,CX,17,charitable_contributions_deductions,All,30000.0,35000.0,False,False,False,904472000 -2021,Table 2.1,CW,17,charitable_contributions_deductions,All,30000.0,35000.0,True,False,False,174762 -2021,Table 2.1,CX,18,charitable_contributions_deductions,All,35000.0,40000.0,False,False,False,903908000 -2021,Table 2.1,CW,18,charitable_contributions_deductions,All,35000.0,40000.0,True,False,False,163203 -2021,Table 2.1,CX,19,charitable_contributions_deductions,All,40000.0,45000.0,False,False,False,1110681000 -2021,Table 2.1,CW,19,charitable_contributions_deductions,All,40000.0,45000.0,True,False,False,212594 -2021,Table 2.1,CX,20,charitable_contributions_deductions,All,45000.0,50000.0,False,False,False,1105708000 -2021,Table 2.1,CW,20,charitable_contributions_deductions,All,45000.0,50000.0,True,False,False,232425 -2021,Table 2.1,CX,21,charitable_contributions_deductions,All,50000.0,55000.0,False,False,False,1349600000 -2021,Table 2.1,CW,21,charitable_contributions_deductions,All,50000.0,55000.0,True,False,False,239594 -2021,Table 2.1,CX,22,charitable_contributions_deductions,All,55000.0,60000.0,False,False,False,1438248000 -2021,Table 2.1,CW,22,charitable_contributions_deductions,All,55000.0,60000.0,True,False,False,267505 -2021,Table 2.1,CX,23,charitable_contributions_deductions,All,60000.0,75000.0,False,False,False,4778416000 -2021,Table 2.1,CW,23,charitable_contributions_deductions,All,60000.0,75000.0,True,False,False,876462 -2021,Table 2.1,CX,24,charitable_contributions_deductions,All,75000.0,100000.0,False,False,False,9765308000 -2021,Table 2.1,CW,24,charitable_contributions_deductions,All,75000.0,100000.0,True,False,False,1533838 -2021,Table 2.1,CX,25,charitable_contributions_deductions,All,100000.0,200000.0,False,False,False,32601479000 -2021,Table 2.1,CW,25,charitable_contributions_deductions,All,100000.0,200000.0,True,False,False,3779220 -2021,Table 2.1,CX,26,charitable_contributions_deductions,All,200000.0,500000.0,False,False,False,36617094000 -2021,Table 2.1,CW,26,charitable_contributions_deductions,All,200000.0,500000.0,True,False,False,2772371 -2021,Table 2.1,CX,27,charitable_contributions_deductions,All,500000.0,1000000.0,False,False,False,20410026000 -2021,Table 2.1,CW,27,charitable_contributions_deductions,All,500000.0,1000000.0,True,False,False,792642 -2021,Table 2.1,CX,28,charitable_contributions_deductions,All,1000000.0,1500000.0,False,False,False,10362710000 -2021,Table 2.1,CW,28,charitable_contributions_deductions,All,1000000.0,1500000.0,True,False,False,220383 -2021,Table 2.1,CX,29,charitable_contributions_deductions,All,1500000.0,2000000.0,False,False,False,6878704000 -2021,Table 2.1,CW,29,charitable_contributions_deductions,All,1500000.0,2000000.0,True,False,False,100341 -2021,Table 2.1,CX,30,charitable_contributions_deductions,All,2000000.0,5000000.0,False,False,False,20644770000 -2021,Table 2.1,CW,30,charitable_contributions_deductions,All,2000000.0,5000000.0,True,False,False,162976 -2021,Table 2.1,CX,31,charitable_contributions_deductions,All,5000000.0,10000000.0,False,False,False,14896310000 -2021,Table 2.1,CW,31,charitable_contributions_deductions,All,5000000.0,10000000.0,True,False,False,49077 -2021,Table 2.1,CX,32,charitable_contributions_deductions,All,10000000.0,inf,False,False,False,97798882000 -2021,Table 2.1,CW,32,charitable_contributions_deductions,All,10000000.0,inf,True,False,False,38473 -2021,Table 1.1,B,11,count,All,-inf,0.0,True,False,False,4098522 -2021,Table 1.1,B,10,count,All,-inf,inf,True,False,True,160824340 -2021,Table 1.1,B,12,count,All,1.0,5000.0,True,False,False,8487025 -2021,Table 1.1,B,13,count,All,5000.0,10000.0,True,False,False,8944908 -2021,Table 1.1,B,14,count,All,10000.0,15000.0,True,False,False,10056377 -2021,Table 1.1,B,15,count,All,15000.0,20000.0,True,False,False,9786580 -2021,Table 1.1,B,16,count,All,20000.0,25000.0,True,False,False,8863570 -2021,Table 1.1,B,17,count,All,25000.0,30000.0,True,False,False,8787576 -2021,Table 1.1,B,18,count,All,30000.0,40000.0,True,False,False,16123068 -2021,Table 1.1,B,19,count,All,40000.0,50000.0,True,False,False,12782334 -2021,Table 1.1,B,20,count,All,50000.0,75000.0,True,False,False,22653934 -2021,Table 1.1,B,21,count,All,75000.0,100000.0,True,False,False,14657726 -2021,Table 1.1,B,22,count,All,100000.0,200000.0,True,False,False,24044481 -2021,Table 1.1,B,23,count,All,200000.0,500000.0,True,False,False,9045567 -2021,Table 1.1,B,24,count,All,500000.0,1000000.0,True,False,False,1617144 -2021,Table 1.1,B,25,count,All,1000000.0,1500000.0,True,False,False,376859 -2021,Table 1.1,B,26,count,All,1500000.0,2000000.0,True,False,False,156020 -2021,Table 1.1,B,27,count,All,2000000.0,5000000.0,True,False,False,233838 -2021,Table 1.1,B,28,count,All,5000000.0,10000000.0,True,False,False,63406 -2021,Table 1.1,B,29,count,All,10000000.0,inf,True,False,False,45404 -2021,Table 1.2,AL,10,count,Head of Household,-inf,0.0,True,False,False,418044 -2021,Table 1.2,AL,9,count,Head of Household,-inf,inf,True,False,False,21240317 -2021,Table 1.2,AL,11,count,Head of Household,1.0,5000.0,True,False,False,644578 -2021,Table 1.2,AL,12,count,Head of Household,5000.0,10000.0,True,False,False,905840 -2021,Table 1.2,AL,13,count,Head of Household,10000.0,15000.0,True,False,False,1606806 -2021,Table 1.2,AL,14,count,Head of Household,15000.0,20000.0,True,False,False,1906721 -2021,Table 1.2,AL,15,count,Head of Household,20000.0,25000.0,True,False,False,1870213 -2021,Table 1.2,AL,16,count,Head of Household,25000.0,30000.0,True,False,False,1947419 -2021,Table 1.2,AL,17,count,Head of Household,30000.0,40000.0,True,False,False,3546653 -2021,Table 1.2,AL,18,count,Head of Household,40000.0,50000.0,True,False,False,2232401 -2021,Table 1.2,AL,19,count,Head of Household,50000.0,75000.0,True,False,False,3130763 -2021,Table 1.2,AL,20,count,Head of Household,75000.0,100000.0,True,False,False,1418570 -2021,Table 1.2,AL,21,count,Head of Household,100000.0,200000.0,True,False,False,1289413 -2021,Table 1.2,AL,22,count,Head of Household,200000.0,500000.0,True,False,False,260151 -2021,Table 1.2,AL,23,count,Head of Household,500000.0,1000000.0,True,False,False,42124 -2021,Table 1.2,AL,24,count,Head of Household,1000000.0,1500000.0,True,False,False,8811 -2021,Table 1.2,AL,25,count,Head of Household,1500000.0,2000000.0,True,False,False,3695 -2021,Table 1.2,AL,26,count,Head of Household,2000000.0,5000000.0,True,False,False,5488 -2021,Table 1.2,AL,27,count,Head of Household,5000000.0,10000000.0,True,False,False,1505 -2021,Table 1.2,AL,28,count,Head of Household,10000000.0,inf,True,False,False,1125 -2021,Table 1.2,N,10,count,Married Filing Jointly/Surviving Spouse,-inf,0.0,True,False,False,706064 -2021,Table 1.2,N,9,count,Married Filing Jointly/Surviving Spouse,-inf,inf,True,False,False,54248325 -2021,Table 1.2,N,11,count,Married Filing Jointly/Surviving Spouse,1.0,5000.0,True,False,False,709447 -2021,Table 1.2,N,12,count,Married Filing Jointly/Surviving Spouse,5000.0,10000.0,True,False,False,735637 -2021,Table 1.2,N,13,count,Married Filing Jointly/Surviving Spouse,10000.0,15000.0,True,False,False,954527 -2021,Table 1.2,N,14,count,Married Filing Jointly/Surviving Spouse,15000.0,20000.0,True,False,False,1035746 -2021,Table 1.2,N,15,count,Married Filing Jointly/Surviving Spouse,20000.0,25000.0,True,False,False,1239738 -2021,Table 1.2,N,16,count,Married Filing Jointly/Surviving Spouse,25000.0,30000.0,True,False,False,1346593 -2021,Table 1.2,N,17,count,Married Filing Jointly/Surviving Spouse,30000.0,40000.0,True,False,False,2792745 -2021,Table 1.2,N,18,count,Married Filing Jointly/Surviving Spouse,40000.0,50000.0,True,False,False,2878772 -2021,Table 1.2,N,19,count,Married Filing Jointly/Surviving Spouse,50000.0,75000.0,True,False,False,7435237 -2021,Table 1.2,N,20,count,Married Filing Jointly/Surviving Spouse,75000.0,100000.0,True,False,False,7735156 -2021,Table 1.2,N,21,count,Married Filing Jointly/Surviving Spouse,100000.0,200000.0,True,False,False,17274270 -2021,Table 1.2,N,22,count,Married Filing Jointly/Surviving Spouse,200000.0,500000.0,True,False,False,7335493 -2021,Table 1.2,N,23,count,Married Filing Jointly/Surviving Spouse,500000.0,1000000.0,True,False,False,1342189 -2021,Table 1.2,N,24,count,Married Filing Jointly/Surviving Spouse,1000000.0,1500000.0,True,False,False,317361 -2021,Table 1.2,N,25,count,Married Filing Jointly/Surviving Spouse,1500000.0,2000000.0,True,False,False,129835 -2021,Table 1.2,N,26,count,Married Filing Jointly/Surviving Spouse,2000000.0,5000000.0,True,False,False,191346 -2021,Table 1.2,N,27,count,Married Filing Jointly/Surviving Spouse,5000000.0,10000000.0,True,False,False,51648 -2021,Table 1.2,N,28,count,Married Filing Jointly/Surviving Spouse,10000000.0,inf,True,False,False,36520 -2021,Table 1.2,Z,10,count,Married Filing Separately,-inf,0.0,True,False,False,123238 -2021,Table 1.2,Z,9,count,Married Filing Separately,-inf,inf,True,False,False,3912940 -2021,Table 1.2,Z,11,count,Married Filing Separately,1.0,5000.0,True,False,False,154821 -2021,Table 1.2,Z,12,count,Married Filing Separately,5000.0,10000.0,True,False,False,142096 -2021,Table 1.2,Z,13,count,Married Filing Separately,10000.0,15000.0,True,False,False,157599 -2021,Table 1.2,Z,14,count,Married Filing Separately,15000.0,20000.0,True,False,False,161811 -2021,Table 1.2,Z,15,count,Married Filing Separately,20000.0,25000.0,True,False,False,181840 -2021,Table 1.2,Z,16,count,Married Filing Separately,25000.0,30000.0,True,False,False,220057 -2021,Table 1.2,Z,17,count,Married Filing Separately,30000.0,40000.0,True,False,False,491569 -2021,Table 1.2,Z,18,count,Married Filing Separately,40000.0,50000.0,True,False,False,478125 -2021,Table 1.2,Z,19,count,Married Filing Separately,50000.0,75000.0,True,False,False,860888 -2021,Table 1.2,Z,20,count,Married Filing Separately,75000.0,100000.0,True,False,False,351192 -2021,Table 1.2,Z,21,count,Married Filing Separately,100000.0,200000.0,True,False,False,455335 -2021,Table 1.2,Z,22,count,Married Filing Separately,200000.0,500000.0,True,False,False,97466 -2021,Table 1.2,Z,23,count,Married Filing Separately,500000.0,1000000.0,True,False,False,19437 -2021,Table 1.2,Z,24,count,Married Filing Separately,1000000.0,1500000.0,True,False,False,5761 -2021,Table 1.2,Z,25,count,Married Filing Separately,1500000.0,2000000.0,True,False,False,2947 -2021,Table 1.2,Z,26,count,Married Filing Separately,2000000.0,5000000.0,True,False,False,5365 -2021,Table 1.2,Z,27,count,Married Filing Separately,5000000.0,10000000.0,True,False,False,1687 -2021,Table 1.2,Z,28,count,Married Filing Separately,10000000.0,inf,True,False,False,1707 -2021,Table 1.2,AX,10,count,Single,-inf,0.0,True,False,False,2851176 -2021,Table 1.2,AX,9,count,Single,-inf,inf,True,False,False,81422759 -2021,Table 1.2,AX,11,count,Single,1.0,5000.0,True,False,False,6978179 -2021,Table 1.2,AX,12,count,Single,5000.0,10000.0,True,False,False,7161336 -2021,Table 1.2,AX,13,count,Single,10000.0,15000.0,True,False,False,7337444 -2021,Table 1.2,AX,14,count,Single,15000.0,20000.0,True,False,False,6682302 -2021,Table 1.2,AX,15,count,Single,20000.0,25000.0,True,False,False,5571779 -2021,Table 1.2,AX,16,count,Single,25000.0,30000.0,True,False,False,5273508 -2021,Table 1.2,AX,17,count,Single,30000.0,40000.0,True,False,False,9292101 -2021,Table 1.2,AX,18,count,Single,40000.0,50000.0,True,False,False,7193036 -2021,Table 1.2,AX,19,count,Single,50000.0,75000.0,True,False,False,11227046 -2021,Table 1.2,AX,20,count,Single,75000.0,100000.0,True,False,False,5152809 -2021,Table 1.2,AX,21,count,Single,100000.0,200000.0,True,False,False,5025462 -2021,Table 1.2,AX,22,count,Single,200000.0,500000.0,True,False,False,1352457 -2021,Table 1.2,AX,23,count,Single,500000.0,1000000.0,True,False,False,213394 -2021,Table 1.2,AX,24,count,Single,1000000.0,1500000.0,True,False,False,44926 -2021,Table 1.2,AX,25,count,Single,1500000.0,2000000.0,True,False,False,19543 -2021,Table 1.2,AX,26,count,Single,2000000.0,5000000.0,True,False,False,31640 -2021,Table 1.2,AX,27,count,Single,5000000.0,10000000.0,True,False,False,8567 -2021,Table 1.2,AX,28,count,Single,10000000.0,inf,True,False,False,6052 -2021,Table 1.4,G,10,employment_income,All,-inf,0.0,False,False,False,23670507000 -2021,Table 1.4,F,10,employment_income,All,-inf,0.0,True,False,False,488212 -2021,Table 1.4,G,9,employment_income,All,-inf,inf,False,False,True,9022352941000 -2021,Table 1.4,F,9,employment_income,All,-inf,inf,True,False,True,126082290 -2021,Table 1.4,G,11,employment_income,All,1.0,5000.0,False,False,False,20132275000 -2021,Table 1.4,F,11,employment_income,All,1.0,5000.0,True,False,False,4990145 -2021,Table 1.4,G,12,employment_income,All,5000.0,10000.0,False,False,False,48844902000 -2021,Table 1.4,F,12,employment_income,All,5000.0,10000.0,True,False,False,6353567 -2021,Table 1.4,G,13,employment_income,All,10000.0,15000.0,False,False,False,83858745000 -2021,Table 1.4,F,13,employment_income,All,10000.0,15000.0,True,False,False,6943210 -2021,Table 1.4,G,14,employment_income,All,15000.0,20000.0,False,False,False,112149988000 -2021,Table 1.4,F,14,employment_income,All,15000.0,20000.0,True,False,False,6925718 -2021,Table 1.4,G,15,employment_income,All,20000.0,25000.0,False,False,False,140010172000 -2021,Table 1.4,F,15,employment_income,All,20000.0,25000.0,True,False,False,6845285 -2021,Table 1.4,G,16,employment_income,All,25000.0,30000.0,False,False,False,181173976000 -2021,Table 1.4,F,16,employment_income,All,25000.0,30000.0,True,False,False,7155012 -2021,Table 1.4,G,17,employment_income,All,30000.0,40000.0,False,False,False,445172100000 -2021,Table 1.4,F,17,employment_income,All,30000.0,40000.0,True,False,False,13754153 -2021,Table 1.4,G,18,employment_income,All,40000.0,50000.0,False,False,False,456243382000 -2021,Table 1.4,F,18,employment_income,All,40000.0,50000.0,True,False,False,10991851 -2021,Table 1.4,G,19,employment_income,All,50000.0,75000.0,False,False,False,1063075172000 -2021,Table 1.4,F,19,employment_income,All,50000.0,75000.0,True,False,False,19109110 -2021,Table 1.4,G,20,employment_income,All,75000.0,100000.0,False,False,False,933327679000 -2021,Table 1.4,F,20,employment_income,All,75000.0,100000.0,True,False,False,12291548 -2021,Table 1.4,G,21,employment_income,All,100000.0,200000.0,False,False,False,2355845184000 -2021,Table 1.4,F,21,employment_income,All,100000.0,200000.0,True,False,False,20368720 -2021,Table 1.4,G,22,employment_income,All,200000.0,500000.0,False,False,False,1713498524000 -2021,Table 1.4,F,22,employment_income,All,200000.0,500000.0,True,False,False,7776331 -2021,Table 1.4,G,23,employment_income,All,500000.0,1000000.0,False,False,False,593531858000 -2021,Table 1.4,F,23,employment_income,All,500000.0,1000000.0,True,False,False,1371980 -2021,Table 1.4,G,24,employment_income,All,1000000.0,1500000.0,False,False,False,202146931000 -2021,Table 1.4,F,24,employment_income,All,1000000.0,1500000.0,True,False,False,314686 -2021,Table 1.4,G,25,employment_income,All,1500000.0,2000000.0,False,False,False,104008030000 -2021,Table 1.4,F,25,employment_income,All,1500000.0,2000000.0,True,False,False,127464 -2021,Table 1.4,G,26,employment_income,All,2000000.0,5000000.0,False,False,False,220575715000 -2021,Table 1.4,F,26,employment_income,All,2000000.0,5000000.0,True,False,False,188625 -2021,Table 1.4,G,27,employment_income,All,5000000.0,10000000.0,False,False,False,108085376000 -2021,Table 1.4,F,27,employment_income,All,5000000.0,10000000.0,True,False,False,50463 -2021,Table 1.4,G,28,employment_income,All,10000000.0,inf,False,False,False,217002426000 -2021,Table 1.4,F,28,employment_income,All,10000000.0,inf,True,False,False,36210 -2021,Table 1.4,BM,10,estate_income,All,-inf,0.0,False,False,False,488912000 -2021,Table 1.4,BL,10,estate_income,All,-inf,0.0,True,False,False,10588 -2021,Table 1.4,BM,9,estate_income,All,-inf,inf,False,False,True,49387898000 -2021,Table 1.4,BL,9,estate_income,All,-inf,inf,True,False,True,624529 -2021,Table 1.4,BM,11,estate_income,All,1.0,5000.0,False,False,False,10954000 -2021,Table 1.4,BL,11,estate_income,All,1.0,5000.0,True,False,False,4262 -2021,Table 1.4,BM,12,estate_income,All,5000.0,10000.0,False,False,False,59889000 -2021,Table 1.4,BL,12,estate_income,All,5000.0,10000.0,True,False,False,7292 -2021,Table 1.4,BM,13,estate_income,All,10000.0,15000.0,False,False,False,58657000 -2021,Table 1.4,BL,13,estate_income,All,10000.0,15000.0,True,False,False,6417 -2021,Table 1.4,BM,14,estate_income,All,15000.0,20000.0,False,False,False,143010000 -2021,Table 1.4,BL,14,estate_income,All,15000.0,20000.0,True,False,False,17044 -2021,Table 1.4,BM,15,estate_income,All,20000.0,25000.0,False,False,False,69961000 -2021,Table 1.4,BL,15,estate_income,All,20000.0,25000.0,True,False,False,10425 -2021,Table 1.4,BM,16,estate_income,All,25000.0,30000.0,False,False,False,91435000 -2021,Table 1.4,BL,16,estate_income,All,25000.0,30000.0,True,False,False,9174 -2021,Table 1.4,BM,17,estate_income,All,30000.0,40000.0,False,False,False,128784000 -2021,Table 1.4,BL,17,estate_income,All,30000.0,40000.0,True,False,False,17740 -2021,Table 1.4,BM,18,estate_income,All,40000.0,50000.0,False,False,False,201827000 -2021,Table 1.4,BL,18,estate_income,All,40000.0,50000.0,True,False,False,15074 -2021,Table 1.4,BM,19,estate_income,All,50000.0,75000.0,False,False,False,600148000 -2021,Table 1.4,BL,19,estate_income,All,50000.0,75000.0,True,False,False,45850 -2021,Table 1.4,BM,20,estate_income,All,75000.0,100000.0,False,False,False,889093000 -2021,Table 1.4,BL,20,estate_income,All,75000.0,100000.0,True,False,False,66873 -2021,Table 1.4,BM,21,estate_income,All,100000.0,200000.0,False,False,False,4607196000 -2021,Table 1.4,BL,21,estate_income,All,100000.0,200000.0,True,False,False,179736 -2021,Table 1.4,BM,22,estate_income,All,200000.0,500000.0,False,False,False,7211565000 -2021,Table 1.4,BL,22,estate_income,All,200000.0,500000.0,True,False,False,146691 -2021,Table 1.4,BM,23,estate_income,All,500000.0,1000000.0,False,False,False,4549574000 -2021,Table 1.4,BL,23,estate_income,All,500000.0,1000000.0,True,False,False,44278 -2021,Table 1.4,BM,24,estate_income,All,1000000.0,1500000.0,False,False,False,2716098000 -2021,Table 1.4,BL,24,estate_income,All,1000000.0,1500000.0,True,False,False,13733 -2021,Table 1.4,BM,25,estate_income,All,1500000.0,2000000.0,False,False,False,1539241000 -2021,Table 1.4,BL,25,estate_income,All,1500000.0,2000000.0,True,False,False,6620 -2021,Table 1.4,BM,26,estate_income,All,2000000.0,5000000.0,False,False,False,6203776000 -2021,Table 1.4,BL,26,estate_income,All,2000000.0,5000000.0,True,False,False,13765 -2021,Table 1.4,BM,27,estate_income,All,5000000.0,10000000.0,False,False,False,4243588000 -2021,Table 1.4,BL,27,estate_income,All,5000000.0,10000000.0,True,False,False,4783 -2021,Table 1.4,BM,28,estate_income,All,10000000.0,inf,False,False,False,15574190000 -2021,Table 1.4,BL,28,estate_income,All,10000000.0,inf,True,False,False,4186 -2021,Table 1.4,BO,10,estate_losses,All,-inf,0.0,False,False,False,1259085000 -2021,Table 1.4,BN,10,estate_losses,All,-inf,0.0,True,False,False,4170 -2021,Table 1.4,BO,9,estate_losses,All,-inf,inf,False,False,True,5899376000 -2021,Table 1.4,BN,9,estate_losses,All,-inf,inf,True,False,True,49450 -2021,Table 1.4,BO,11,estate_losses,All,1.0,5000.0,False,False,False,3360000 -2021,Table 1.4,BN,11,estate_losses,All,1.0,5000.0,True,False,False,2616 -2021,Table 1.4,BO,12,estate_losses,All,5000.0,10000.0,False,False,False,121000 -2021,Table 1.4,BN,12,estate_losses,All,5000.0,10000.0,True,False,False,31 -2021,Table 1.4,BO,13,estate_losses,All,10000.0,15000.0,False,False,False,34976000 -2021,Table 1.4,BN,13,estate_losses,All,10000.0,15000.0,True,False,False,1375 -2021,Table 1.4,BO,14,estate_losses,All,15000.0,20000.0,False,False,False,6988000 -2021,Table 1.4,BN,14,estate_losses,All,15000.0,20000.0,True,False,False,16 -2021,Table 1.4,BO,15,estate_losses,All,20000.0,25000.0,False,False,False,3736000 -2021,Table 1.4,BN,15,estate_losses,All,20000.0,25000.0,True,False,False,16 -2021,Table 1.4,BO,16,estate_losses,All,25000.0,30000.0,False,False,False,833000 -2021,Table 1.4,BN,16,estate_losses,All,25000.0,30000.0,True,False,False,54 -2021,Table 1.4,BO,17,estate_losses,All,30000.0,40000.0,False,False,False,39521000 -2021,Table 1.4,BN,17,estate_losses,All,30000.0,40000.0,True,False,False,2217 -2021,Table 1.4,BO,18,estate_losses,All,40000.0,50000.0,False,False,False,10079000 -2021,Table 1.4,BN,18,estate_losses,All,40000.0,50000.0,True,False,False,368 -2021,Table 1.4,BO,19,estate_losses,All,50000.0,75000.0,False,False,False,93978000 -2021,Table 1.4,BN,19,estate_losses,All,50000.0,75000.0,True,False,False,1337 -2021,Table 1.4,BO,20,estate_losses,All,75000.0,100000.0,False,False,False,35427000 -2021,Table 1.4,BN,20,estate_losses,All,75000.0,100000.0,True,False,False,4539 -2021,Table 1.4,BO,21,estate_losses,All,100000.0,200000.0,False,False,False,99732000 -2021,Table 1.4,BN,21,estate_losses,All,100000.0,200000.0,True,False,False,11440 -2021,Table 1.4,BO,22,estate_losses,All,200000.0,500000.0,False,False,False,278211000 -2021,Table 1.4,BN,22,estate_losses,All,200000.0,500000.0,True,False,False,8183 -2021,Table 1.4,BO,23,estate_losses,All,500000.0,1000000.0,False,False,False,243152000 -2021,Table 1.4,BN,23,estate_losses,All,500000.0,1000000.0,True,False,False,3901 -2021,Table 1.4,BO,24,estate_losses,All,1000000.0,1500000.0,False,False,False,209182000 -2021,Table 1.4,BN,24,estate_losses,All,1000000.0,1500000.0,True,False,False,2120 -2021,Table 1.4,BO,25,estate_losses,All,1500000.0,2000000.0,False,False,False,123348000 -2021,Table 1.4,BN,25,estate_losses,All,1500000.0,2000000.0,True,False,False,1229 -2021,Table 1.4,BO,26,estate_losses,All,2000000.0,5000000.0,False,False,False,490805000 -2021,Table 1.4,BN,26,estate_losses,All,2000000.0,5000000.0,True,False,False,2632 -2021,Table 1.4,BO,27,estate_losses,All,5000000.0,10000000.0,False,False,False,298217000 -2021,Table 1.4,BN,27,estate_losses,All,5000000.0,10000000.0,True,False,False,1387 -2021,Table 1.4,BO,28,estate_losses,All,10000000.0,inf,False,False,False,2668626000 -2021,Table 1.4,BN,28,estate_losses,All,10000000.0,inf,True,False,False,1817 -2021,Table 1.4,K,10,exempt_interest,All,-inf,0.0,False,False,False,958274000 -2021,Table 1.4,J,10,exempt_interest,All,-inf,0.0,True,False,False,57924 -2021,Table 1.4,K,9,exempt_interest,All,-inf,inf,False,False,True,55518422000 -2021,Table 1.4,J,9,exempt_interest,All,-inf,inf,True,False,True,6569327 -2021,Table 1.4,K,11,exempt_interest,All,1.0,5000.0,False,False,False,88126000 -2021,Table 1.4,J,11,exempt_interest,All,1.0,5000.0,True,False,False,81923 -2021,Table 1.4,K,12,exempt_interest,All,5000.0,10000.0,False,False,False,202799000 -2021,Table 1.4,J,12,exempt_interest,All,5000.0,10000.0,True,False,False,73701 -2021,Table 1.4,K,13,exempt_interest,All,10000.0,15000.0,False,False,False,190552000 -2021,Table 1.4,J,13,exempt_interest,All,10000.0,15000.0,True,False,False,88828 -2021,Table 1.4,K,14,exempt_interest,All,15000.0,20000.0,False,False,False,166021000 -2021,Table 1.4,J,14,exempt_interest,All,15000.0,20000.0,True,False,False,86676 -2021,Table 1.4,K,15,exempt_interest,All,20000.0,25000.0,False,False,False,254288000 -2021,Table 1.4,J,15,exempt_interest,All,20000.0,25000.0,True,False,False,83587 -2021,Table 1.4,K,16,exempt_interest,All,25000.0,30000.0,False,False,False,183046000 -2021,Table 1.4,J,16,exempt_interest,All,25000.0,30000.0,True,False,False,84213 -2021,Table 1.4,K,17,exempt_interest,All,30000.0,40000.0,False,False,False,485953000 -2021,Table 1.4,J,17,exempt_interest,All,30000.0,40000.0,True,False,False,185185 -2021,Table 1.4,K,18,exempt_interest,All,40000.0,50000.0,False,False,False,674362000 -2021,Table 1.4,J,18,exempt_interest,All,40000.0,50000.0,True,False,False,241353 -2021,Table 1.4,K,19,exempt_interest,All,50000.0,75000.0,False,False,False,1839498000 -2021,Table 1.4,J,19,exempt_interest,All,50000.0,75000.0,True,False,False,639872 -2021,Table 1.4,K,20,exempt_interest,All,75000.0,100000.0,False,False,False,1906837000 -2021,Table 1.4,J,20,exempt_interest,All,75000.0,100000.0,True,False,False,630282 -2021,Table 1.4,K,21,exempt_interest,All,100000.0,200000.0,False,False,False,8917871000 -2021,Table 1.4,J,21,exempt_interest,All,100000.0,200000.0,True,False,False,1867180 -2021,Table 1.4,K,22,exempt_interest,All,200000.0,500000.0,False,False,False,11404390000 -2021,Table 1.4,J,22,exempt_interest,All,200000.0,500000.0,True,False,False,1535001 -2021,Table 1.4,K,23,exempt_interest,All,500000.0,1000000.0,False,False,False,7414214000 -2021,Table 1.4,J,23,exempt_interest,All,500000.0,1000000.0,True,False,False,509107 -2021,Table 1.4,K,24,exempt_interest,All,1000000.0,1500000.0,False,False,False,3473707000 -2021,Table 1.4,J,24,exempt_interest,All,1000000.0,1500000.0,True,False,False,148862 -2021,Table 1.4,K,25,exempt_interest,All,1500000.0,2000000.0,False,False,False,2253316000 -2021,Table 1.4,J,25,exempt_interest,All,1500000.0,2000000.0,True,False,False,69529 -2021,Table 1.4,K,26,exempt_interest,All,2000000.0,5000000.0,False,False,False,5638265000 -2021,Table 1.4,J,26,exempt_interest,All,2000000.0,5000000.0,True,False,False,118422 -2021,Table 1.4,K,27,exempt_interest,All,5000000.0,10000000.0,False,False,False,3138614000 -2021,Table 1.4,J,27,exempt_interest,All,5000000.0,10000000.0,True,False,False,37253 -2021,Table 1.4,K,28,exempt_interest,All,10000000.0,inf,False,False,False,6328290000 -2021,Table 1.4,J,28,exempt_interest,All,10000000.0,inf,True,False,False,30429 -2021,Table 2.1,BT,10,idpitgst,All,-inf,inf,False,False,True,258639729000 -2021,Table 2.1,BS,10,idpitgst,All,-inf,inf,True,False,True,14310685 -2021,Table 2.1,BT,11,idpitgst,All,0.0,5000.0,False,False,False,69882000 -2021,Table 2.1,BS,11,idpitgst,All,0.0,5000.0,True,False,False,59673 -2021,Table 2.1,BT,12,idpitgst,All,5000.0,10000.0,False,False,False,81243000 -2021,Table 2.1,BS,12,idpitgst,All,5000.0,10000.0,True,False,False,77467 -2021,Table 2.1,BT,13,idpitgst,All,10000.0,15000.0,False,False,False,138219000 -2021,Table 2.1,BS,13,idpitgst,All,10000.0,15000.0,True,False,False,95224 -2021,Table 2.1,BT,14,idpitgst,All,15000.0,20000.0,False,False,False,257632000 -2021,Table 2.1,BS,14,idpitgst,All,15000.0,20000.0,True,False,False,140720 -2021,Table 2.1,BT,15,idpitgst,All,20000.0,25000.0,False,False,False,210001000 -2021,Table 2.1,BS,15,idpitgst,All,20000.0,25000.0,True,False,False,148879 -2021,Table 2.1,BT,16,idpitgst,All,25000.0,30000.0,False,False,False,255442000 -2021,Table 2.1,BS,16,idpitgst,All,25000.0,30000.0,True,False,False,171887 -2021,Table 2.1,BT,17,idpitgst,All,30000.0,35000.0,False,False,False,431455000 -2021,Table 2.1,BS,17,idpitgst,All,30000.0,35000.0,True,False,False,210230 -2021,Table 2.1,BT,18,idpitgst,All,35000.0,40000.0,False,False,False,530692000 -2021,Table 2.1,BS,18,idpitgst,All,35000.0,40000.0,True,False,False,223618 -2021,Table 2.1,BT,19,idpitgst,All,40000.0,45000.0,False,False,False,532141000 -2021,Table 2.1,BS,19,idpitgst,All,40000.0,45000.0,True,False,False,273874 -2021,Table 2.1,BT,20,idpitgst,All,45000.0,50000.0,False,False,False,673870000 -2021,Table 2.1,BS,20,idpitgst,All,45000.0,50000.0,True,False,False,299887 -2021,Table 2.1,BT,21,idpitgst,All,50000.0,55000.0,False,False,False,675232000 -2021,Table 2.1,BS,21,idpitgst,All,50000.0,55000.0,True,False,False,320975 -2021,Table 2.1,BT,22,idpitgst,All,55000.0,60000.0,False,False,False,881913000 -2021,Table 2.1,BS,22,idpitgst,All,55000.0,60000.0,True,False,False,338591 -2021,Table 2.1,BT,23,idpitgst,All,60000.0,75000.0,False,False,False,3276349000 -2021,Table 2.1,BS,23,idpitgst,All,60000.0,75000.0,True,False,False,1077460 -2021,Table 2.1,BT,24,idpitgst,All,75000.0,100000.0,False,False,False,7653268000 -2021,Table 2.1,BS,24,idpitgst,All,75000.0,100000.0,True,False,False,1924416 -2021,Table 2.1,BT,25,idpitgst,All,100000.0,200000.0,False,False,False,28735921000 -2021,Table 2.1,BS,25,idpitgst,All,100000.0,200000.0,True,False,False,4404055 -2021,Table 2.1,BT,26,idpitgst,All,200000.0,500000.0,False,False,False,46625081000 -2021,Table 2.1,BS,26,idpitgst,All,200000.0,500000.0,True,False,False,3081442 -2021,Table 2.1,BT,27,idpitgst,All,500000.0,1000000.0,False,False,False,30844141000 -2021,Table 2.1,BS,27,idpitgst,All,500000.0,1000000.0,True,False,False,861508 -2021,Table 2.1,BT,28,idpitgst,All,1000000.0,1500000.0,False,False,False,15821676000 -2021,Table 2.1,BS,28,idpitgst,All,1000000.0,1500000.0,True,False,False,234575 -2021,Table 2.1,BT,29,idpitgst,All,1500000.0,2000000.0,False,False,False,10263972000 -2021,Table 2.1,BS,29,idpitgst,All,1500000.0,2000000.0,True,False,False,106426 -2021,Table 2.1,BT,30,idpitgst,All,2000000.0,5000000.0,False,False,False,29251689000 -2021,Table 2.1,BS,30,idpitgst,All,2000000.0,5000000.0,True,False,False,170243 -2021,Table 2.1,BT,31,idpitgst,All,5000000.0,10000000.0,False,False,False,18617713000 -2021,Table 2.1,BS,31,idpitgst,All,5000000.0,10000000.0,True,False,False,50405 -2021,Table 2.1,BT,32,idpitgst,All,10000000.0,inf,False,False,False,62812195000 -2021,Table 2.1,BS,32,idpitgst,All,10000000.0,inf,True,False,False,39130 -2021,Table 1.2,K,10,income_tax_after_credits,All,-inf,0.0,False,False,False,186617000 -2021,Table 1.2,J,10,income_tax_after_credits,All,-inf,0.0,True,False,False,4361 -2021,Table 1.2,K,9,income_tax_after_credits,All,-inf,inf,False,False,True,2136650742000 -2021,Table 1.2,J,9,income_tax_after_credits,All,-inf,inf,True,False,True,104549808 -2021,Table 1.2,K,11,income_tax_after_credits,All,1.0,5000.0,False,False,False,73072000 -2021,Table 1.2,J,11,income_tax_after_credits,All,1.0,5000.0,True,False,False,142544 -2021,Table 1.2,K,12,income_tax_after_credits,All,5000.0,10000.0,False,False,False,78223000 -2021,Table 1.2,J,12,income_tax_after_credits,All,5000.0,10000.0,True,False,False,184757 -2021,Table 1.2,K,13,income_tax_after_credits,All,10000.0,15000.0,False,False,False,211113000 -2021,Table 1.2,J,13,income_tax_after_credits,All,10000.0,15000.0,True,False,False,1055682 -2021,Table 1.2,K,14,income_tax_after_credits,All,15000.0,20000.0,False,False,False,1247479000 -2021,Table 1.2,J,14,income_tax_after_credits,All,15000.0,20000.0,True,False,False,3224915 -2021,Table 1.2,K,15,income_tax_after_credits,All,20000.0,25000.0,False,False,False,4047553000 -2021,Table 1.2,J,15,income_tax_after_credits,All,20000.0,25000.0,True,False,False,4511505 -2021,Table 1.2,K,16,income_tax_after_credits,All,25000.0,30000.0,False,False,False,6837013000 -2021,Table 1.2,J,16,income_tax_after_credits,All,25000.0,30000.0,True,False,False,5152093 -2021,Table 1.2,K,17,income_tax_after_credits,All,30000.0,40000.0,False,False,False,21563554000 -2021,Table 1.2,J,17,income_tax_after_credits,All,30000.0,40000.0,True,False,False,10941846 -2021,Table 1.2,K,18,income_tax_after_credits,All,40000.0,50000.0,False,False,False,28872618000 -2021,Table 1.2,J,18,income_tax_after_credits,All,40000.0,50000.0,True,False,False,10178852 -2021,Table 1.2,K,19,income_tax_after_credits,All,50000.0,75000.0,False,False,False,93196258000 -2021,Table 1.2,J,19,income_tax_after_credits,All,50000.0,75000.0,True,False,False,20079918 -2021,Table 1.2,K,20,income_tax_after_credits,All,75000.0,100000.0,False,False,False,105625288000 -2021,Table 1.2,J,20,income_tax_after_credits,All,75000.0,100000.0,True,False,False,13899298 -2021,Table 1.2,K,21,income_tax_after_credits,All,100000.0,200000.0,False,False,False,365139832000 -2021,Table 1.2,J,21,income_tax_after_credits,All,100000.0,200000.0,True,False,False,23678030 -2021,Table 1.2,K,22,income_tax_after_credits,All,200000.0,500000.0,False,False,False,437089172000 -2021,Table 1.2,J,22,income_tax_after_credits,All,200000.0,500000.0,True,False,False,9011428 -2021,Table 1.2,K,23,income_tax_after_credits,All,500000.0,1000000.0,False,False,False,244827113000 -2021,Table 1.2,J,23,income_tax_after_credits,All,500000.0,1000000.0,True,False,False,1612396 -2021,Table 1.2,K,24,income_tax_after_credits,All,1000000.0,1500000.0,False,False,False,115008024000 -2021,Table 1.2,J,24,income_tax_after_credits,All,1000000.0,1500000.0,True,False,False,375593 -2021,Table 1.2,K,25,income_tax_after_credits,All,1500000.0,2000000.0,False,False,False,70041765000 -2021,Table 1.2,J,25,income_tax_after_credits,All,1500000.0,2000000.0,True,False,False,155353 -2021,Table 1.2,K,26,income_tax_after_credits,All,2000000.0,5000000.0,False,False,False,184436241000 -2021,Table 1.2,J,26,income_tax_after_credits,All,2000000.0,5000000.0,True,False,False,232933 -2021,Table 1.2,K,27,income_tax_after_credits,All,5000000.0,10000000.0,False,False,False,112972811000 -2021,Table 1.2,J,27,income_tax_after_credits,All,5000000.0,10000000.0,True,False,False,63155 -2021,Table 1.2,K,28,income_tax_after_credits,All,10000000.0,inf,False,False,False,345196995000 -2021,Table 1.2,J,28,income_tax_after_credits,All,10000000.0,inf,True,False,False,45149 -2021,Table 1.4,EI,10,income_tax_before_credits,All,-inf,0.0,False,False,False,225572000 -2021,Table 1.4,EH,10,income_tax_before_credits,All,-inf,0.0,True,False,False,29216 -2021,Table 1.4,EI,9,income_tax_before_credits,All,-inf,inf,False,False,True,2290478645000 -2021,Table 1.4,EH,9,income_tax_before_credits,All,-inf,inf,True,False,True,127874599 -2021,Table 1.4,EI,11,income_tax_before_credits,All,1.0,5000.0,False,False,False,85408000 -2021,Table 1.4,EH,11,income_tax_before_credits,All,1.0,5000.0,True,False,False,181180 -2021,Table 1.4,EI,12,income_tax_before_credits,All,5000.0,10000.0,False,False,False,95009000 -2021,Table 1.4,EH,12,income_tax_before_credits,All,5000.0,10000.0,True,False,False,230722 -2021,Table 1.4,EI,13,income_tax_before_credits,All,10000.0,15000.0,False,False,False,491367000 -2021,Table 1.4,EH,13,income_tax_before_credits,All,10000.0,15000.0,True,False,False,3245394 -2021,Table 1.4,EI,14,income_tax_before_credits,All,15000.0,20000.0,False,False,False,3112114000 -2021,Table 1.4,EH,14,income_tax_before_credits,All,15000.0,20000.0,True,False,False,7085512 -2021,Table 1.4,EI,15,income_tax_before_credits,All,20000.0,25000.0,False,False,False,6155804000 -2021,Table 1.4,EH,15,income_tax_before_credits,All,20000.0,25000.0,True,False,False,7525781 -2021,Table 1.4,EI,16,income_tax_before_credits,All,25000.0,30000.0,False,False,False,10227467000 -2021,Table 1.4,EH,16,income_tax_before_credits,All,25000.0,30000.0,True,False,False,8333779 -2021,Table 1.4,EI,17,income_tax_before_credits,All,30000.0,40000.0,False,False,False,31177700000 -2021,Table 1.4,EH,17,income_tax_before_credits,All,30000.0,40000.0,True,False,False,15914155 -2021,Table 1.4,EI,18,income_tax_before_credits,All,40000.0,50000.0,False,False,False,38366413000 -2021,Table 1.4,EH,18,income_tax_before_credits,All,40000.0,50000.0,True,False,False,12678971 -2021,Table 1.4,EI,19,income_tax_before_credits,All,50000.0,75000.0,False,False,False,115766605000 -2021,Table 1.4,EH,19,income_tax_before_credits,All,50000.0,75000.0,True,False,False,22515023 -2021,Table 1.4,EI,20,income_tax_before_credits,All,75000.0,100000.0,False,False,False,124411058000 -2021,Table 1.4,EH,20,income_tax_before_credits,All,75000.0,100000.0,True,False,False,14601342 -2021,Table 1.4,EI,21,income_tax_before_credits,All,100000.0,200000.0,False,False,False,405668074000 -2021,Table 1.4,EH,21,income_tax_before_credits,All,100000.0,200000.0,True,False,False,24006476 -2021,Table 1.4,EI,22,income_tax_before_credits,All,200000.0,500000.0,False,False,False,451924178000 -2021,Table 1.4,EH,22,income_tax_before_credits,All,200000.0,500000.0,True,False,False,9036803 -2021,Table 1.4,EI,23,income_tax_before_credits,All,500000.0,1000000.0,False,False,False,250471738000 -2021,Table 1.4,EH,23,income_tax_before_credits,All,500000.0,1000000.0,True,False,False,1615890 -2021,Table 1.4,EI,24,income_tax_before_credits,All,1000000.0,1500000.0,False,False,False,117790037000 -2021,Table 1.4,EH,24,income_tax_before_credits,All,1000000.0,1500000.0,True,False,False,376494 -2021,Table 1.4,EI,25,income_tax_before_credits,All,1500000.0,2000000.0,False,False,False,71950793000 -2021,Table 1.4,EH,25,income_tax_before_credits,All,1500000.0,2000000.0,True,False,False,155831 -2021,Table 1.4,EI,26,income_tax_before_credits,All,2000000.0,5000000.0,False,False,False,189909559000 -2021,Table 1.4,EH,26,income_tax_before_credits,All,2000000.0,5000000.0,True,False,False,233468 -2021,Table 1.4,EI,27,income_tax_before_credits,All,5000000.0,10000000.0,False,False,False,116498227000 -2021,Table 1.4,EH,27,income_tax_before_credits,All,5000000.0,10000000.0,True,False,False,63288 -2021,Table 1.4,EI,28,income_tax_before_credits,All,10000000.0,inf,False,False,False,356151525000 -2021,Table 1.4,EH,28,income_tax_before_credits,All,10000000.0,inf,True,False,False,45273 -2021,Table 2.1,CH,10,interest_paid_deductions,All,-inf,inf,False,False,True,163273742000 -2021,Table 2.1,CG,10,interest_paid_deductions,All,-inf,inf,True,False,True,11754235 -2021,Table 2.1,CH,11,interest_paid_deductions,All,0.0,5000.0,False,False,False,351878000 -2021,Table 2.1,CG,11,interest_paid_deductions,All,0.0,5000.0,True,False,False,34775 -2021,Table 2.1,CH,12,interest_paid_deductions,All,5000.0,10000.0,False,False,False,505199000 -2021,Table 2.1,CG,12,interest_paid_deductions,All,5000.0,10000.0,True,False,False,42464 -2021,Table 2.1,CH,13,interest_paid_deductions,All,10000.0,15000.0,False,False,False,661032000 -2021,Table 2.1,CG,13,interest_paid_deductions,All,10000.0,15000.0,True,False,False,58324 -2021,Table 2.1,CH,14,interest_paid_deductions,All,15000.0,20000.0,False,False,False,795523000 -2021,Table 2.1,CG,14,interest_paid_deductions,All,15000.0,20000.0,True,False,False,78442 -2021,Table 2.1,CH,15,interest_paid_deductions,All,20000.0,25000.0,False,False,False,975865000 -2021,Table 2.1,CG,15,interest_paid_deductions,All,20000.0,25000.0,True,False,False,92849 -2021,Table 2.1,CH,16,interest_paid_deductions,All,25000.0,30000.0,False,False,False,964858000 -2021,Table 2.1,CG,16,interest_paid_deductions,All,25000.0,30000.0,True,False,False,97966 -2021,Table 2.1,CH,17,interest_paid_deductions,All,30000.0,35000.0,False,False,False,1300974000 -2021,Table 2.1,CG,17,interest_paid_deductions,All,30000.0,35000.0,True,False,False,128477 -2021,Table 2.1,CH,18,interest_paid_deductions,All,35000.0,40000.0,False,False,False,1472192000 -2021,Table 2.1,CG,18,interest_paid_deductions,All,35000.0,40000.0,True,False,False,151067 -2021,Table 2.1,CH,19,interest_paid_deductions,All,40000.0,45000.0,False,False,False,1942763000 -2021,Table 2.1,CG,19,interest_paid_deductions,All,40000.0,45000.0,True,False,False,178110 -2021,Table 2.1,CH,20,interest_paid_deductions,All,45000.0,50000.0,False,False,False,2040007000 -2021,Table 2.1,CG,20,interest_paid_deductions,All,45000.0,50000.0,True,False,False,197093 -2021,Table 2.1,CH,21,interest_paid_deductions,All,50000.0,55000.0,False,False,False,2236435000 -2021,Table 2.1,CG,21,interest_paid_deductions,All,50000.0,55000.0,True,False,False,237857 -2021,Table 2.1,CH,22,interest_paid_deductions,All,55000.0,60000.0,False,False,False,2296099000 -2021,Table 2.1,CG,22,interest_paid_deductions,All,55000.0,60000.0,True,False,False,240249 -2021,Table 2.1,CH,23,interest_paid_deductions,All,60000.0,75000.0,False,False,False,8299830000 -2021,Table 2.1,CG,23,interest_paid_deductions,All,60000.0,75000.0,True,False,False,880459 -2021,Table 2.1,CH,24,interest_paid_deductions,All,75000.0,100000.0,False,False,False,16691350000 -2021,Table 2.1,CG,24,interest_paid_deductions,All,75000.0,100000.0,True,False,False,1615876 -2021,Table 2.1,CH,25,interest_paid_deductions,All,100000.0,200000.0,False,False,False,42043244000 -2021,Table 2.1,CG,25,interest_paid_deductions,All,100000.0,200000.0,True,False,False,3736970 -2021,Table 2.1,CH,26,interest_paid_deductions,All,200000.0,500000.0,False,False,False,41669568000 -2021,Table 2.1,CG,26,interest_paid_deductions,All,200000.0,500000.0,True,False,False,2711961 -2021,Table 2.1,CH,27,interest_paid_deductions,All,500000.0,1000000.0,False,False,False,14990473000 -2021,Table 2.1,CG,27,interest_paid_deductions,All,500000.0,1000000.0,True,False,False,761726 -2021,Table 2.1,CH,28,interest_paid_deductions,All,1000000.0,1500000.0,False,False,False,4571747000 -2021,Table 2.1,CG,28,interest_paid_deductions,All,1000000.0,1500000.0,True,False,False,202243 -2021,Table 2.1,CH,29,interest_paid_deductions,All,1500000.0,2000000.0,False,False,False,2376237000 -2021,Table 2.1,CG,29,interest_paid_deductions,All,1500000.0,2000000.0,True,False,False,89958 -2021,Table 2.1,CH,30,interest_paid_deductions,All,2000000.0,5000000.0,False,False,False,4793545000 -2021,Table 2.1,CG,30,interest_paid_deductions,All,2000000.0,5000000.0,True,False,False,141920 -2021,Table 2.1,CH,31,interest_paid_deductions,All,5000000.0,10000000.0,False,False,False,2504179000 -2021,Table 2.1,CG,31,interest_paid_deductions,All,5000000.0,10000000.0,True,False,False,42161 -2021,Table 2.1,CH,32,interest_paid_deductions,All,10000000.0,inf,False,False,False,9790742000 -2021,Table 2.1,CG,32,interest_paid_deductions,All,10000000.0,inf,True,False,False,33287 -2021,Table 1.4,AI,10,ira_distributions,All,-inf,0.0,False,False,False,1992887000 -2021,Table 1.4,AH,10,ira_distributions,All,-inf,0.0,True,False,False,114208 -2021,Table 1.4,AI,9,ira_distributions,All,-inf,inf,False,False,True,408382461000 -2021,Table 1.4,AH,9,ira_distributions,All,-inf,inf,True,False,True,15584165 -2021,Table 1.4,AI,11,ira_distributions,All,1.0,5000.0,False,False,False,803551000 -2021,Table 1.4,AH,11,ira_distributions,All,1.0,5000.0,True,False,False,291248 -2021,Table 1.4,AI,12,ira_distributions,All,5000.0,10000.0,False,False,False,2565706000 -2021,Table 1.4,AH,12,ira_distributions,All,5000.0,10000.0,True,False,False,505204 -2021,Table 1.4,AI,13,ira_distributions,All,10000.0,15000.0,False,False,False,3938974000 -2021,Table 1.4,AH,13,ira_distributions,All,10000.0,15000.0,True,False,False,557286 -2021,Table 1.4,AI,14,ira_distributions,All,15000.0,20000.0,False,False,False,4783292000 -2021,Table 1.4,AH,14,ira_distributions,All,15000.0,20000.0,True,False,False,545318 -2021,Table 1.4,AI,15,ira_distributions,All,20000.0,25000.0,False,False,False,4888488000 -2021,Table 1.4,AH,15,ira_distributions,All,20000.0,25000.0,True,False,False,490238 -2021,Table 1.4,AI,16,ira_distributions,All,25000.0,30000.0,False,False,False,5079260000 -2021,Table 1.4,AH,16,ira_distributions,All,25000.0,30000.0,True,False,False,509524 -2021,Table 1.4,AI,17,ira_distributions,All,30000.0,40000.0,False,False,False,9886903000 -2021,Table 1.4,AH,17,ira_distributions,All,30000.0,40000.0,True,False,False,887479 -2021,Table 1.4,AI,18,ira_distributions,All,40000.0,50000.0,False,False,False,11265236000 -2021,Table 1.4,AH,18,ira_distributions,All,40000.0,50000.0,True,False,False,926489 -2021,Table 1.4,AI,19,ira_distributions,All,50000.0,75000.0,False,False,False,32852491000 -2021,Table 1.4,AH,19,ira_distributions,All,50000.0,75000.0,True,False,False,2255659 -2021,Table 1.4,AI,20,ira_distributions,All,75000.0,100000.0,False,False,False,39055981000 -2021,Table 1.4,AH,20,ira_distributions,All,75000.0,100000.0,True,False,False,2007006 -2021,Table 1.4,AI,21,ira_distributions,All,100000.0,200000.0,False,False,False,131891844000 -2021,Table 1.4,AH,21,ira_distributions,All,100000.0,200000.0,True,False,False,4181158 -2021,Table 1.4,AI,22,ira_distributions,All,200000.0,500000.0,False,False,False,108787482000 -2021,Table 1.4,AH,22,ira_distributions,All,200000.0,500000.0,True,False,False,1849303 -2021,Table 1.4,AI,23,ira_distributions,All,500000.0,1000000.0,False,False,False,25693093000 -2021,Table 1.4,AH,23,ira_distributions,All,500000.0,1000000.0,True,False,False,308885 -2021,Table 1.4,AI,24,ira_distributions,All,1000000.0,1500000.0,False,False,False,6573862000 -2021,Table 1.4,AH,24,ira_distributions,All,1000000.0,1500000.0,True,False,False,67779 -2021,Table 1.4,AI,25,ira_distributions,All,1500000.0,2000000.0,False,False,False,3313664000 -2021,Table 1.4,AH,25,ira_distributions,All,1500000.0,2000000.0,True,False,False,28426 -2021,Table 1.4,AI,26,ira_distributions,All,2000000.0,5000000.0,False,False,False,7074590000 -2021,Table 1.4,AH,26,ira_distributions,All,2000000.0,5000000.0,True,False,False,41232 -2021,Table 1.4,AI,27,ira_distributions,All,5000000.0,10000000.0,False,False,False,3128843000 -2021,Table 1.4,AH,27,ira_distributions,All,5000000.0,10000000.0,True,False,False,10727 -2021,Table 1.4,AI,28,ira_distributions,All,10000000.0,inf,False,False,False,4806315000 -2021,Table 1.4,AH,28,ira_distributions,All,10000000.0,inf,True,False,False,6996 -2021,Table 1.2,E,10,itemized_deductions,All,-inf,0.0,False,False,False,0 -2021,Table 1.2,D,10,itemized_deductions,All,-inf,0.0,True,False,False,0 -2021,Table 1.2,E,9,itemized_deductions,All,-inf,inf,False,False,True,659680547000 -2021,Table 1.2,D,9,itemized_deductions,All,-inf,inf,True,False,True,14842685 -2021,Table 1.2,E,11,itemized_deductions,All,1.0,5000.0,False,False,False,1871637000 -2021,Table 1.2,D,11,itemized_deductions,All,1.0,5000.0,True,False,False,80236 -2021,Table 1.2,E,12,itemized_deductions,All,5000.0,10000.0,False,False,False,2292492000 -2021,Table 1.2,D,12,itemized_deductions,All,5000.0,10000.0,True,False,False,93583 -2021,Table 1.2,E,13,itemized_deductions,All,10000.0,15000.0,False,False,False,2804369000 -2021,Table 1.2,D,13,itemized_deductions,All,10000.0,15000.0,True,False,False,109149 -2021,Table 1.2,E,14,itemized_deductions,All,15000.0,20000.0,False,False,False,4775555000 -2021,Table 1.2,D,14,itemized_deductions,All,15000.0,20000.0,True,False,False,161030 -2021,Table 1.2,E,15,itemized_deductions,All,20000.0,25000.0,False,False,False,4285472000 -2021,Table 1.2,D,15,itemized_deductions,All,20000.0,25000.0,True,False,False,167731 -2021,Table 1.2,E,16,itemized_deductions,All,25000.0,30000.0,False,False,False,4765016000 -2021,Table 1.2,D,16,itemized_deductions,All,25000.0,30000.0,True,False,False,193007 -2021,Table 1.2,E,17,itemized_deductions,All,30000.0,40000.0,False,False,False,12606528000 -2021,Table 1.2,D,17,itemized_deductions,All,30000.0,40000.0,True,False,False,467215 -2021,Table 1.2,E,18,itemized_deductions,All,40000.0,50000.0,False,False,False,15706593000 -2021,Table 1.2,D,18,itemized_deductions,All,40000.0,50000.0,True,False,False,614463 -2021,Table 1.2,E,19,itemized_deductions,All,50000.0,75000.0,False,False,False,47466699000 -2021,Table 1.2,D,19,itemized_deductions,All,50000.0,75000.0,True,False,False,1841364 -2021,Table 1.2,E,20,itemized_deductions,All,75000.0,100000.0,False,False,False,54706812000 -2021,Table 1.2,D,20,itemized_deductions,All,75000.0,100000.0,True,False,False,1985056 -2021,Table 1.2,E,21,itemized_deductions,All,100000.0,200000.0,False,False,False,138751518000 -2021,Table 1.2,D,21,itemized_deductions,All,100000.0,200000.0,True,False,False,4513652 -2021,Table 1.2,E,22,itemized_deductions,All,200000.0,500000.0,False,False,False,124480962000 -2021,Table 1.2,D,22,itemized_deductions,All,200000.0,500000.0,True,False,False,3134769 -2021,Table 1.2,E,23,itemized_deductions,All,500000.0,1000000.0,False,False,False,49971545000 -2021,Table 1.2,D,23,itemized_deductions,All,500000.0,1000000.0,True,False,False,874181 -2021,Table 1.2,E,24,itemized_deductions,All,1000000.0,1500000.0,False,False,False,20103248000 -2021,Table 1.2,D,24,itemized_deductions,All,1000000.0,1500000.0,True,False,False,236902 -2021,Table 1.2,E,25,itemized_deductions,All,1500000.0,2000000.0,False,False,False,11864113000 -2021,Table 1.2,D,25,itemized_deductions,All,1500000.0,2000000.0,True,False,False,107470 -2021,Table 1.2,E,26,itemized_deductions,All,2000000.0,5000000.0,False,False,False,31470281000 -2021,Table 1.2,D,26,itemized_deductions,All,2000000.0,5000000.0,True,False,False,172234 -2021,Table 1.2,E,27,itemized_deductions,All,5000000.0,10000000.0,False,False,False,19991637000 -2021,Table 1.2,D,27,itemized_deductions,All,5000000.0,10000000.0,True,False,False,51030 -2021,Table 1.2,E,28,itemized_deductions,All,10000000.0,inf,False,False,False,111766070000 -2021,Table 1.2,D,28,itemized_deductions,All,10000000.0,inf,True,False,False,39613 -2021,Table 2.1,BX,10,itemized_general_sales_tax_deduction,All,-inf,inf,False,False,True,7642643000 -2021,Table 2.1,BW,10,itemized_general_sales_tax_deduction,All,-inf,inf,True,False,True,3540640 -2021,Table 2.1,BX,11,itemized_general_sales_tax_deduction,All,0.0,5000.0,False,False,False,20064000 -2021,Table 2.1,BW,11,itemized_general_sales_tax_deduction,All,0.0,5000.0,True,False,False,42999 -2021,Table 2.1,BX,12,itemized_general_sales_tax_deduction,All,5000.0,10000.0,False,False,False,28935000 -2021,Table 2.1,BW,12,itemized_general_sales_tax_deduction,All,5000.0,10000.0,True,False,False,54451 -2021,Table 2.1,BX,13,itemized_general_sales_tax_deduction,All,10000.0,15000.0,False,False,False,34004000 -2021,Table 2.1,BW,13,itemized_general_sales_tax_deduction,All,10000.0,15000.0,True,False,False,58735 -2021,Table 2.1,BX,14,itemized_general_sales_tax_deduction,All,15000.0,20000.0,False,False,False,73684000 -2021,Table 2.1,BW,14,itemized_general_sales_tax_deduction,All,15000.0,20000.0,True,False,False,85755 -2021,Table 2.1,BX,15,itemized_general_sales_tax_deduction,All,20000.0,25000.0,False,False,False,85770000 -2021,Table 2.1,BW,15,itemized_general_sales_tax_deduction,All,20000.0,25000.0,True,False,False,80697 -2021,Table 2.1,BX,16,itemized_general_sales_tax_deduction,All,25000.0,30000.0,False,False,False,99703000 -2021,Table 2.1,BW,16,itemized_general_sales_tax_deduction,All,25000.0,30000.0,True,False,False,84858 -2021,Table 2.1,BX,17,itemized_general_sales_tax_deduction,All,30000.0,35000.0,False,False,False,148397000 -2021,Table 2.1,BW,17,itemized_general_sales_tax_deduction,All,30000.0,35000.0,True,False,False,87722 -2021,Table 2.1,BX,18,itemized_general_sales_tax_deduction,All,35000.0,40000.0,False,False,False,127765000 -2021,Table 2.1,BW,18,itemized_general_sales_tax_deduction,All,35000.0,40000.0,True,False,False,91605 -2021,Table 2.1,BX,19,itemized_general_sales_tax_deduction,All,40000.0,45000.0,False,False,False,138996000 -2021,Table 2.1,BW,19,itemized_general_sales_tax_deduction,All,40000.0,45000.0,True,False,False,104970 -2021,Table 2.1,BX,20,itemized_general_sales_tax_deduction,All,45000.0,50000.0,False,False,False,140861000 -2021,Table 2.1,BW,20,itemized_general_sales_tax_deduction,All,45000.0,50000.0,True,False,False,96072 -2021,Table 2.1,BX,21,itemized_general_sales_tax_deduction,All,50000.0,55000.0,False,False,False,146664000 -2021,Table 2.1,BW,21,itemized_general_sales_tax_deduction,All,50000.0,55000.0,True,False,False,117197 -2021,Table 2.1,BX,22,itemized_general_sales_tax_deduction,All,55000.0,60000.0,False,False,False,124418000 -2021,Table 2.1,BW,22,itemized_general_sales_tax_deduction,All,55000.0,60000.0,True,False,False,104878 -2021,Table 2.1,BX,23,itemized_general_sales_tax_deduction,All,60000.0,75000.0,False,False,False,484758000 -2021,Table 2.1,BW,23,itemized_general_sales_tax_deduction,All,60000.0,75000.0,True,False,False,282627 -2021,Table 2.1,BX,24,itemized_general_sales_tax_deduction,All,75000.0,100000.0,False,False,False,848993000 -2021,Table 2.1,BW,24,itemized_general_sales_tax_deduction,All,75000.0,100000.0,True,False,False,435436 -2021,Table 2.1,BX,25,itemized_general_sales_tax_deduction,All,100000.0,200000.0,False,False,False,1957484000 -2021,Table 2.1,BW,25,itemized_general_sales_tax_deduction,All,100000.0,200000.0,True,False,False,895878 -2021,Table 2.1,BX,26,itemized_general_sales_tax_deduction,All,200000.0,500000.0,False,False,False,1859432000 -2021,Table 2.1,BW,26,itemized_general_sales_tax_deduction,All,200000.0,500000.0,True,False,False,617892 -2021,Table 2.1,BX,27,itemized_general_sales_tax_deduction,All,500000.0,1000000.0,False,False,False,629114000 -2021,Table 2.1,BW,27,itemized_general_sales_tax_deduction,All,500000.0,1000000.0,True,False,False,184506 -2021,Table 2.1,BX,28,itemized_general_sales_tax_deduction,All,1000000.0,1500000.0,False,False,False,163249000 -2021,Table 2.1,BW,28,itemized_general_sales_tax_deduction,All,1000000.0,1500000.0,True,False,False,47719 -2021,Table 2.1,BX,29,itemized_general_sales_tax_deduction,All,1500000.0,2000000.0,False,False,False,80089000 -2021,Table 2.1,BW,29,itemized_general_sales_tax_deduction,All,1500000.0,2000000.0,True,False,False,21394 -2021,Table 2.1,BX,30,itemized_general_sales_tax_deduction,All,2000000.0,5000000.0,False,False,False,138735000 -2021,Table 2.1,BW,30,itemized_general_sales_tax_deduction,All,2000000.0,5000000.0,True,False,False,31424 -2021,Table 2.1,BX,31,itemized_general_sales_tax_deduction,All,5000000.0,10000000.0,False,False,False,55981000 -2021,Table 2.1,BW,31,itemized_general_sales_tax_deduction,All,5000000.0,10000000.0,True,False,False,8332 -2021,Table 2.1,BX,32,itemized_general_sales_tax_deduction,All,10000000.0,inf,False,False,False,255548000 -2021,Table 2.1,BW,32,itemized_general_sales_tax_deduction,All,10000000.0,inf,True,False,False,5492 -2021,Table 2.1,BZ,10,itemized_real_estate_tax_deductions,All,-inf,inf,False,False,True,99984344000 -2021,Table 2.1,BY,10,itemized_real_estate_tax_deductions,All,-inf,inf,True,False,True,12779463 -2021,Table 2.1,BZ,11,itemized_real_estate_tax_deductions,All,0.0,5000.0,False,False,False,256216000 -2021,Table 2.1,BY,11,itemized_real_estate_tax_deductions,All,0.0,5000.0,True,False,False,46424 -2021,Table 2.1,BZ,12,itemized_real_estate_tax_deductions,All,5000.0,10000.0,False,False,False,294963000 -2021,Table 2.1,BY,12,itemized_real_estate_tax_deductions,All,5000.0,10000.0,True,False,False,60133 -2021,Table 2.1,BZ,13,itemized_real_estate_tax_deductions,All,10000.0,15000.0,False,False,False,423838000 -2021,Table 2.1,BY,13,itemized_real_estate_tax_deductions,All,10000.0,15000.0,True,False,False,75943 -2021,Table 2.1,BZ,14,itemized_real_estate_tax_deductions,All,15000.0,20000.0,False,False,False,556597000 -2021,Table 2.1,BY,14,itemized_real_estate_tax_deductions,All,15000.0,20000.0,True,False,False,97224 -2021,Table 2.1,BZ,15,itemized_real_estate_tax_deductions,All,20000.0,25000.0,False,False,False,565930000 -2021,Table 2.1,BY,15,itemized_real_estate_tax_deductions,All,20000.0,25000.0,True,False,False,112133 -2021,Table 2.1,BZ,16,itemized_real_estate_tax_deductions,All,25000.0,30000.0,False,False,False,525455000 -2021,Table 2.1,BY,16,itemized_real_estate_tax_deductions,All,25000.0,30000.0,True,False,False,110828 -2021,Table 2.1,BZ,17,itemized_real_estate_tax_deductions,All,30000.0,35000.0,False,False,False,740176000 -2021,Table 2.1,BY,17,itemized_real_estate_tax_deductions,All,30000.0,35000.0,True,False,False,141234 -2021,Table 2.1,BZ,18,itemized_real_estate_tax_deductions,All,35000.0,40000.0,False,False,False,773900000 -2021,Table 2.1,BY,18,itemized_real_estate_tax_deductions,All,35000.0,40000.0,True,False,False,169721 -2021,Table 2.1,BZ,19,itemized_real_estate_tax_deductions,All,40000.0,45000.0,False,False,False,1014207000 -2021,Table 2.1,BY,19,itemized_real_estate_tax_deductions,All,40000.0,45000.0,True,False,False,200465 -2021,Table 2.1,BZ,20,itemized_real_estate_tax_deductions,All,45000.0,50000.0,False,False,False,1129842000 -2021,Table 2.1,BY,20,itemized_real_estate_tax_deductions,All,45000.0,50000.0,True,False,False,224009 -2021,Table 2.1,BZ,21,itemized_real_estate_tax_deductions,All,50000.0,55000.0,False,False,False,1251885000 -2021,Table 2.1,BY,21,itemized_real_estate_tax_deductions,All,50000.0,55000.0,True,False,False,266129 -2021,Table 2.1,BZ,22,itemized_real_estate_tax_deductions,All,55000.0,60000.0,False,False,False,1322707000 -2021,Table 2.1,BY,22,itemized_real_estate_tax_deductions,All,55000.0,60000.0,True,False,False,270434 -2021,Table 2.1,BZ,23,itemized_real_estate_tax_deductions,All,60000.0,75000.0,False,False,False,4541711000 -2021,Table 2.1,BY,23,itemized_real_estate_tax_deductions,All,60000.0,75000.0,True,False,False,948235 -2021,Table 2.1,BZ,24,itemized_real_estate_tax_deductions,All,75000.0,100000.0,False,False,False,8792062000 -2021,Table 2.1,BY,24,itemized_real_estate_tax_deductions,All,75000.0,100000.0,True,False,False,1737166 -2021,Table 2.1,BZ,25,itemized_real_estate_tax_deductions,All,100000.0,200000.0,False,False,False,24647914000 -2021,Table 2.1,BY,25,itemized_real_estate_tax_deductions,All,100000.0,200000.0,True,False,False,4074023 -2021,Table 2.1,BZ,26,itemized_real_estate_tax_deductions,All,200000.0,500000.0,False,False,False,26891746000 -2021,Table 2.1,BY,26,itemized_real_estate_tax_deductions,All,200000.0,500000.0,True,False,False,2894851 -2021,Table 2.1,BZ,27,itemized_real_estate_tax_deductions,All,500000.0,1000000.0,False,False,False,11588950000 -2021,Table 2.1,BY,27,itemized_real_estate_tax_deductions,All,500000.0,1000000.0,True,False,False,804340 -2021,Table 2.1,BZ,28,itemized_real_estate_tax_deductions,All,1000000.0,1500000.0,False,False,False,4093373000 -2021,Table 2.1,BY,28,itemized_real_estate_tax_deductions,All,1000000.0,1500000.0,True,False,False,216368 -2021,Table 2.1,BZ,29,itemized_real_estate_tax_deductions,All,1500000.0,2000000.0,False,False,False,2067297000 -2021,Table 2.1,BY,29,itemized_real_estate_tax_deductions,All,1500000.0,2000000.0,True,False,False,96934 -2021,Table 2.1,BZ,30,itemized_real_estate_tax_deductions,All,2000000.0,5000000.0,False,False,False,4228788000 -2021,Table 2.1,BY,30,itemized_real_estate_tax_deductions,All,2000000.0,5000000.0,True,False,False,153461 -2021,Table 2.1,BZ,31,itemized_real_estate_tax_deductions,All,5000000.0,10000000.0,False,False,False,1781149000 -2021,Table 2.1,BY,31,itemized_real_estate_tax_deductions,All,5000000.0,10000000.0,True,False,False,45063 -2021,Table 2.1,BZ,32,itemized_real_estate_tax_deductions,All,10000000.0,inf,False,False,False,2495637000 -2021,Table 2.1,BY,32,itemized_real_estate_tax_deductions,All,10000000.0,inf,True,False,False,34347 -2021,Table 2.1,BV,10,itemized_state_income_tax_deductions,All,-inf,inf,False,False,True,250997086000 -2021,Table 2.1,BU,10,itemized_state_income_tax_deductions,All,-inf,inf,True,False,True,10770045 -2021,Table 2.1,BV,11,itemized_state_income_tax_deductions,All,0.0,5000.0,False,False,False,49819000 -2021,Table 2.1,BU,11,itemized_state_income_tax_deductions,All,0.0,5000.0,True,False,False,16674 -2021,Table 2.1,BV,12,itemized_state_income_tax_deductions,All,5000.0,10000.0,False,False,False,52308000 -2021,Table 2.1,BU,12,itemized_state_income_tax_deductions,All,5000.0,10000.0,True,False,False,23016 -2021,Table 2.1,BV,13,itemized_state_income_tax_deductions,All,10000.0,15000.0,False,False,False,104215000 -2021,Table 2.1,BU,13,itemized_state_income_tax_deductions,All,10000.0,15000.0,True,False,False,36489 -2021,Table 2.1,BV,14,itemized_state_income_tax_deductions,All,15000.0,20000.0,False,False,False,183949000 -2021,Table 2.1,BU,14,itemized_state_income_tax_deductions,All,15000.0,20000.0,True,False,False,54965 -2021,Table 2.1,BV,15,itemized_state_income_tax_deductions,All,20000.0,25000.0,False,False,False,124232000 -2021,Table 2.1,BU,15,itemized_state_income_tax_deductions,All,20000.0,25000.0,True,False,False,68182 -2021,Table 2.1,BV,16,itemized_state_income_tax_deductions,All,25000.0,30000.0,False,False,False,155739000 -2021,Table 2.1,BU,16,itemized_state_income_tax_deductions,All,25000.0,30000.0,True,False,False,87029 -2021,Table 2.1,BV,17,itemized_state_income_tax_deductions,All,30000.0,35000.0,False,False,False,283058000 -2021,Table 2.1,BU,17,itemized_state_income_tax_deductions,All,30000.0,35000.0,True,False,False,122508 -2021,Table 2.1,BV,18,itemized_state_income_tax_deductions,All,35000.0,40000.0,False,False,False,402927000 -2021,Table 2.1,BU,18,itemized_state_income_tax_deductions,All,35000.0,40000.0,True,False,False,132013 -2021,Table 2.1,BV,19,itemized_state_income_tax_deductions,All,40000.0,45000.0,False,False,False,393145000 -2021,Table 2.1,BU,19,itemized_state_income_tax_deductions,All,40000.0,45000.0,True,False,False,168904 -2021,Table 2.1,BV,20,itemized_state_income_tax_deductions,All,45000.0,50000.0,False,False,False,533009000 -2021,Table 2.1,BU,20,itemized_state_income_tax_deductions,All,45000.0,50000.0,True,False,False,203815 -2021,Table 2.1,BV,21,itemized_state_income_tax_deductions,All,50000.0,55000.0,False,False,False,528568000 -2021,Table 2.1,BU,21,itemized_state_income_tax_deductions,All,50000.0,55000.0,True,False,False,203778 -2021,Table 2.1,BV,22,itemized_state_income_tax_deductions,All,55000.0,60000.0,False,False,False,757495000 -2021,Table 2.1,BU,22,itemized_state_income_tax_deductions,All,55000.0,60000.0,True,False,False,233712 -2021,Table 2.1,BV,23,itemized_state_income_tax_deductions,All,60000.0,75000.0,False,False,False,2791591000 -2021,Table 2.1,BU,23,itemized_state_income_tax_deductions,All,60000.0,75000.0,True,False,False,794833 -2021,Table 2.1,BV,24,itemized_state_income_tax_deductions,All,75000.0,100000.0,False,False,False,6804275000 -2021,Table 2.1,BU,24,itemized_state_income_tax_deductions,All,75000.0,100000.0,True,False,False,1488980 -2021,Table 2.1,BV,25,itemized_state_income_tax_deductions,All,100000.0,200000.0,False,False,False,26778437000 -2021,Table 2.1,BU,25,itemized_state_income_tax_deductions,All,100000.0,200000.0,True,False,False,3508177 -2021,Table 2.1,BV,26,itemized_state_income_tax_deductions,All,200000.0,500000.0,False,False,False,44765649000 -2021,Table 2.1,BU,26,itemized_state_income_tax_deductions,All,200000.0,500000.0,True,False,False,2463551 -2021,Table 2.1,BV,27,itemized_state_income_tax_deductions,All,500000.0,1000000.0,False,False,False,30215027000 -2021,Table 2.1,BU,27,itemized_state_income_tax_deductions,All,500000.0,1000000.0,True,False,False,677002 -2021,Table 2.1,BV,28,itemized_state_income_tax_deductions,All,1000000.0,1500000.0,False,False,False,15658427000 -2021,Table 2.1,BU,28,itemized_state_income_tax_deductions,All,1000000.0,1500000.0,True,False,False,186856 -2021,Table 2.1,BV,29,itemized_state_income_tax_deductions,All,1500000.0,2000000.0,False,False,False,10183883000 -2021,Table 2.1,BU,29,itemized_state_income_tax_deductions,All,1500000.0,2000000.0,True,False,False,85032 -2021,Table 2.1,BV,30,itemized_state_income_tax_deductions,All,2000000.0,5000000.0,False,False,False,29112954000 -2021,Table 2.1,BU,30,itemized_state_income_tax_deductions,All,2000000.0,5000000.0,True,False,False,138820 -2021,Table 2.1,BV,31,itemized_state_income_tax_deductions,All,5000000.0,10000000.0,False,False,False,18561732000 -2021,Table 2.1,BU,31,itemized_state_income_tax_deductions,All,5000000.0,10000000.0,True,False,False,42074 -2021,Table 2.1,BV,32,itemized_state_income_tax_deductions,All,10000000.0,inf,False,False,False,62556646000 -2021,Table 2.1,BU,32,itemized_state_income_tax_deductions,All,10000000.0,inf,True,False,False,33638 -2021,Table 2.1,BP,10,itemized_taxes_paid_deductions,All,-inf,inf,False,False,True,119541517000 -2021,Table 2.1,BO,10,itemized_taxes_paid_deductions,All,-inf,inf,True,False,True,14687846 -2021,Table 2.1,BP,11,itemized_taxes_paid_deductions,All,0.0,5000.0,False,False,False,300355000 -2021,Table 2.1,BO,11,itemized_taxes_paid_deductions,All,0.0,5000.0,True,False,False,72393 -2021,Table 2.1,BP,12,itemized_taxes_paid_deductions,All,5000.0,10000.0,False,False,False,346915000 -2021,Table 2.1,BO,12,itemized_taxes_paid_deductions,All,5000.0,10000.0,True,False,False,89055 -2021,Table 2.1,BP,13,itemized_taxes_paid_deductions,All,10000.0,15000.0,False,False,False,519125000 -2021,Table 2.1,BO,13,itemized_taxes_paid_deductions,All,10000.0,15000.0,True,False,False,103125 -2021,Table 2.1,BP,14,itemized_taxes_paid_deductions,All,15000.0,20000.0,False,False,False,687462000 -2021,Table 2.1,BO,14,itemized_taxes_paid_deductions,All,15000.0,20000.0,True,False,False,149922 -2021,Table 2.1,BP,15,itemized_taxes_paid_deductions,All,20000.0,25000.0,False,False,False,753305000 -2021,Table 2.1,BO,15,itemized_taxes_paid_deductions,All,20000.0,25000.0,True,False,False,156017 -2021,Table 2.1,BP,16,itemized_taxes_paid_deductions,All,25000.0,30000.0,False,False,False,781930000 -2021,Table 2.1,BO,16,itemized_taxes_paid_deductions,All,25000.0,30000.0,True,False,False,184790 -2021,Table 2.1,BP,17,itemized_taxes_paid_deductions,All,30000.0,35000.0,False,False,False,1100170000 -2021,Table 2.1,BO,17,itemized_taxes_paid_deductions,All,30000.0,35000.0,True,False,False,222604 -2021,Table 2.1,BP,18,itemized_taxes_paid_deductions,All,35000.0,40000.0,False,False,False,1143800000 -2021,Table 2.1,BO,18,itemized_taxes_paid_deductions,All,35000.0,40000.0,True,False,False,234031 -2021,Table 2.1,BP,19,itemized_taxes_paid_deductions,All,40000.0,45000.0,False,False,False,1466305000 -2021,Table 2.1,BO,19,itemized_taxes_paid_deductions,All,40000.0,45000.0,True,False,False,289986 -2021,Table 2.1,BP,20,itemized_taxes_paid_deductions,All,45000.0,50000.0,False,False,False,1819849000 -2021,Table 2.1,BO,20,itemized_taxes_paid_deductions,All,45000.0,50000.0,True,False,False,314349 -2021,Table 2.1,BP,21,itemized_taxes_paid_deductions,All,50000.0,55000.0,False,False,False,1886129000 -2021,Table 2.1,BO,21,itemized_taxes_paid_deductions,All,50000.0,55000.0,True,False,False,337954 -2021,Table 2.1,BP,22,itemized_taxes_paid_deductions,All,55000.0,60000.0,False,False,False,2093207000 -2021,Table 2.1,BO,22,itemized_taxes_paid_deductions,All,55000.0,60000.0,True,False,False,349713 -2021,Table 2.1,BP,23,itemized_taxes_paid_deductions,All,60000.0,75000.0,False,False,False,7407751000 -2021,Table 2.1,BO,23,itemized_taxes_paid_deductions,All,60000.0,75000.0,True,False,False,1117975 -2021,Table 2.1,BP,24,itemized_taxes_paid_deductions,All,75000.0,100000.0,False,False,False,14864227000 -2021,Table 2.1,BO,24,itemized_taxes_paid_deductions,All,75000.0,100000.0,True,False,False,1973087 -2021,Table 2.1,BP,25,itemized_taxes_paid_deductions,All,100000.0,200000.0,False,False,False,39290771000 -2021,Table 2.1,BO,25,itemized_taxes_paid_deductions,All,100000.0,200000.0,True,False,False,4488763 -2021,Table 2.1,BP,26,itemized_taxes_paid_deductions,All,200000.0,500000.0,False,False,False,30133315000 -2021,Table 2.1,BO,26,itemized_taxes_paid_deductions,All,200000.0,500000.0,True,False,False,3125969 -2021,Table 2.1,BP,27,itemized_taxes_paid_deductions,All,500000.0,1000000.0,False,False,False,8552942000 -2021,Table 2.1,BO,27,itemized_taxes_paid_deductions,All,500000.0,1000000.0,True,False,False,871926 -2021,Table 2.1,BP,28,itemized_taxes_paid_deductions,All,1000000.0,1500000.0,False,False,False,2335291000 -2021,Table 2.1,BO,28,itemized_taxes_paid_deductions,All,1000000.0,1500000.0,True,False,False,236528 -2021,Table 2.1,BP,29,itemized_taxes_paid_deductions,All,1500000.0,2000000.0,False,False,False,1067749000 -2021,Table 2.1,BO,29,itemized_taxes_paid_deductions,All,1500000.0,2000000.0,True,False,False,107271 -2021,Table 2.1,BP,30,itemized_taxes_paid_deductions,All,2000000.0,5000000.0,False,False,False,1755888000 -2021,Table 2.1,BO,30,itemized_taxes_paid_deductions,All,2000000.0,5000000.0,True,False,False,171946 -2021,Table 2.1,BP,31,itemized_taxes_paid_deductions,All,5000000.0,10000000.0,False,False,False,552034000 -2021,Table 2.1,BO,31,itemized_taxes_paid_deductions,All,5000000.0,10000000.0,True,False,False,50927 -2021,Table 2.1,BP,32,itemized_taxes_paid_deductions,All,10000000.0,inf,False,False,False,682998000 -2021,Table 2.1,BO,32,itemized_taxes_paid_deductions,All,10000000.0,inf,True,False,False,39516 -2021,Table 2.1,BJ,10,medical_expense_deductions_capped,All,-inf,inf,False,False,True,75886325000 -2021,Table 2.1,BI,10,medical_expense_deductions_capped,All,-inf,inf,True,False,True,3693434 -2021,Table 2.1,BJ,11,medical_expense_deductions_capped,All,0.0,5000.0,False,False,False,1182428000 -2021,Table 2.1,BI,11,medical_expense_deductions_capped,All,0.0,5000.0,True,False,False,64071 -2021,Table 2.1,BJ,12,medical_expense_deductions_capped,All,5000.0,10000.0,False,False,False,1290734000 -2021,Table 2.1,BI,12,medical_expense_deductions_capped,All,5000.0,10000.0,True,False,False,67090 -2021,Table 2.1,BJ,13,medical_expense_deductions_capped,All,10000.0,15000.0,False,False,False,1366812000 -2021,Table 2.1,BI,13,medical_expense_deductions_capped,All,10000.0,15000.0,True,False,False,74656 -2021,Table 2.1,BJ,14,medical_expense_deductions_capped,All,15000.0,20000.0,False,False,False,2885547000 -2021,Table 2.1,BI,14,medical_expense_deductions_capped,All,15000.0,20000.0,True,False,False,126081 -2021,Table 2.1,BJ,15,medical_expense_deductions_capped,All,20000.0,25000.0,False,False,False,2057325000 -2021,Table 2.1,BI,15,medical_expense_deductions_capped,All,20000.0,25000.0,True,False,False,120657 -2021,Table 2.1,BJ,16,medical_expense_deductions_capped,All,25000.0,30000.0,False,False,False,2142120000 -2021,Table 2.1,BI,16,medical_expense_deductions_capped,All,25000.0,30000.0,True,False,False,128192 -2021,Table 2.1,BJ,17,medical_expense_deductions_capped,All,30000.0,35000.0,False,False,False,2492152000 -2021,Table 2.1,BI,17,medical_expense_deductions_capped,All,30000.0,35000.0,True,False,False,135437 -2021,Table 2.1,BJ,18,medical_expense_deductions_capped,All,35000.0,40000.0,False,False,False,2572548000 -2021,Table 2.1,BI,18,medical_expense_deductions_capped,All,35000.0,40000.0,True,False,False,133583 -2021,Table 2.1,BJ,19,medical_expense_deductions_capped,All,40000.0,45000.0,False,False,False,2397784000 -2021,Table 2.1,BI,19,medical_expense_deductions_capped,All,40000.0,45000.0,True,False,False,148065 -2021,Table 2.1,BJ,20,medical_expense_deductions_capped,All,45000.0,50000.0,False,False,False,3270037000 -2021,Table 2.1,BI,20,medical_expense_deductions_capped,All,45000.0,50000.0,True,False,False,169056 -2021,Table 2.1,BJ,21,medical_expense_deductions_capped,All,50000.0,55000.0,False,False,False,3052627000 -2021,Table 2.1,BI,21,medical_expense_deductions_capped,All,50000.0,55000.0,True,False,False,163599 -2021,Table 2.1,BJ,22,medical_expense_deductions_capped,All,55000.0,60000.0,False,False,False,2517256000 -2021,Table 2.1,BI,22,medical_expense_deductions_capped,All,55000.0,60000.0,True,False,False,152888 -2021,Table 2.1,BJ,23,medical_expense_deductions_capped,All,60000.0,75000.0,False,False,False,7867927000 -2021,Table 2.1,BI,23,medical_expense_deductions_capped,All,60000.0,75000.0,True,False,False,416631 -2021,Table 2.1,BJ,24,medical_expense_deductions_capped,All,75000.0,100000.0,False,False,False,11251902000 -2021,Table 2.1,BI,24,medical_expense_deductions_capped,All,75000.0,100000.0,True,False,False,568901 -2021,Table 2.1,BJ,25,medical_expense_deductions_capped,All,100000.0,200000.0,False,False,False,18438486000 -2021,Table 2.1,BI,25,medical_expense_deductions_capped,All,100000.0,200000.0,True,False,False,930719 -2021,Table 2.1,BJ,26,medical_expense_deductions_capped,All,200000.0,500000.0,False,False,False,9442173000 -2021,Table 2.1,BI,26,medical_expense_deductions_capped,All,200000.0,500000.0,True,False,False,274102 -2021,Table 2.1,BJ,27,medical_expense_deductions_capped,All,500000.0,1000000.0,False,False,False,1198745000 -2021,Table 2.1,BI,27,medical_expense_deductions_capped,All,500000.0,1000000.0,True,False,False,16117 -2021,Table 2.1,BJ,28,medical_expense_deductions_capped,All,1000000.0,1500000.0,False,False,False,263035000 -2021,Table 2.1,BI,28,medical_expense_deductions_capped,All,1000000.0,1500000.0,True,False,False,2294 -2021,Table 2.1,BJ,29,medical_expense_deductions_capped,All,1500000.0,2000000.0,False,False,False,72898000 -2021,Table 2.1,BI,29,medical_expense_deductions_capped,All,1500000.0,2000000.0,True,False,False,567 -2021,Table 2.1,BJ,30,medical_expense_deductions_capped,All,2000000.0,5000000.0,False,False,False,114862000 -2021,Table 2.1,BI,30,medical_expense_deductions_capped,All,2000000.0,5000000.0,True,False,False,700 -2021,Table 2.1,BJ,31,medical_expense_deductions_capped,All,5000000.0,10000000.0,False,False,False,8927000 -2021,Table 2.1,BI,31,medical_expense_deductions_capped,All,5000000.0,10000000.0,True,False,False,27 -2021,Table 2.1,BJ,32,medical_expense_deductions_capped,All,10000000.0,inf,False,False,False,0 -2021,Table 2.1,BI,32,medical_expense_deductions_capped,All,10000000.0,inf,True,False,False,0 -2021,Table 2.1,BL,10,medical_expense_deductions_uncapped,All,-inf,inf,False,False,True,101860682000 -2021,Table 2.1,BK,10,medical_expense_deductions_uncapped,All,-inf,inf,True,False,True,3693434 -2021,Table 2.1,BL,11,medical_expense_deductions_uncapped,All,0.0,5000.0,False,False,False,1191945000 -2021,Table 2.1,BK,11,medical_expense_deductions_uncapped,All,0.0,5000.0,True,False,False,64071 -2021,Table 2.1,BL,12,medical_expense_deductions_uncapped,All,5000.0,10000.0,False,False,False,1328511000 -2021,Table 2.1,BK,12,medical_expense_deductions_uncapped,All,5000.0,10000.0,True,False,False,67090 -2021,Table 2.1,BL,13,medical_expense_deductions_uncapped,All,10000.0,15000.0,False,False,False,1436712000 -2021,Table 2.1,BK,13,medical_expense_deductions_uncapped,All,10000.0,15000.0,True,False,False,74656 -2021,Table 2.1,BL,14,medical_expense_deductions_uncapped,All,15000.0,20000.0,False,False,False,3049836000 -2021,Table 2.1,BK,14,medical_expense_deductions_uncapped,All,15000.0,20000.0,True,False,False,126081 -2021,Table 2.1,BL,15,medical_expense_deductions_uncapped,All,20000.0,25000.0,False,False,False,2262637000 -2021,Table 2.1,BK,15,medical_expense_deductions_uncapped,All,20000.0,25000.0,True,False,False,120657 -2021,Table 2.1,BL,16,medical_expense_deductions_uncapped,All,25000.0,30000.0,False,False,False,2408161000 -2021,Table 2.1,BK,16,medical_expense_deductions_uncapped,All,25000.0,30000.0,True,False,False,128192 -2021,Table 2.1,BL,17,medical_expense_deductions_uncapped,All,30000.0,35000.0,False,False,False,2824184000 -2021,Table 2.1,BK,17,medical_expense_deductions_uncapped,All,30000.0,35000.0,True,False,False,135437 -2021,Table 2.1,BL,18,medical_expense_deductions_uncapped,All,35000.0,40000.0,False,False,False,2949560000 -2021,Table 2.1,BK,18,medical_expense_deductions_uncapped,All,35000.0,40000.0,True,False,False,133583 -2021,Table 2.1,BL,19,medical_expense_deductions_uncapped,All,40000.0,45000.0,False,False,False,2869363000 -2021,Table 2.1,BK,19,medical_expense_deductions_uncapped,All,40000.0,45000.0,True,False,False,148065 -2021,Table 2.1,BL,20,medical_expense_deductions_uncapped,All,45000.0,50000.0,False,False,False,3869434000 -2021,Table 2.1,BK,20,medical_expense_deductions_uncapped,All,45000.0,50000.0,True,False,False,169056 -2021,Table 2.1,BL,21,medical_expense_deductions_uncapped,All,50000.0,55000.0,False,False,False,3696666000 -2021,Table 2.1,BK,21,medical_expense_deductions_uncapped,All,50000.0,55000.0,True,False,False,163599 -2021,Table 2.1,BL,22,medical_expense_deductions_uncapped,All,55000.0,60000.0,False,False,False,3175555000 -2021,Table 2.1,BK,22,medical_expense_deductions_uncapped,All,55000.0,60000.0,True,False,False,152888 -2021,Table 2.1,BL,23,medical_expense_deductions_uncapped,All,60000.0,75000.0,False,False,False,9961801000 -2021,Table 2.1,BK,23,medical_expense_deductions_uncapped,All,60000.0,75000.0,True,False,False,416631 -2021,Table 2.1,BL,24,medical_expense_deductions_uncapped,All,75000.0,100000.0,False,False,False,14967597000 -2021,Table 2.1,BK,24,medical_expense_deductions_uncapped,All,75000.0,100000.0,True,False,False,568901 -2021,Table 2.1,BL,25,medical_expense_deductions_uncapped,All,100000.0,200000.0,False,False,False,27979072000 -2021,Table 2.1,BK,25,medical_expense_deductions_uncapped,All,100000.0,200000.0,True,False,False,930719 -2021,Table 2.1,BL,26,medical_expense_deductions_uncapped,All,200000.0,500000.0,False,False,False,15009041000 -2021,Table 2.1,BK,26,medical_expense_deductions_uncapped,All,200000.0,500000.0,True,False,False,274102 -2021,Table 2.1,BL,27,medical_expense_deductions_uncapped,All,500000.0,1000000.0,False,False,False,1982643000 -2021,Table 2.1,BK,27,medical_expense_deductions_uncapped,All,500000.0,1000000.0,True,False,False,16117 -2021,Table 2.1,BL,28,medical_expense_deductions_uncapped,All,1000000.0,1500000.0,False,False,False,462885000 -2021,Table 2.1,BK,28,medical_expense_deductions_uncapped,All,1000000.0,1500000.0,True,False,False,2294 -2021,Table 2.1,BL,29,medical_expense_deductions_uncapped,All,1500000.0,2000000.0,False,False,False,146817000 -2021,Table 2.1,BK,29,medical_expense_deductions_uncapped,All,1500000.0,2000000.0,True,False,False,567 -2021,Table 2.1,BL,30,medical_expense_deductions_uncapped,All,2000000.0,5000000.0,False,False,False,264656000 -2021,Table 2.1,BK,30,medical_expense_deductions_uncapped,All,2000000.0,5000000.0,True,False,False,700 -2021,Table 2.1,BL,31,medical_expense_deductions_uncapped,All,5000000.0,10000000.0,False,False,False,23606000 -2021,Table 2.1,BK,31,medical_expense_deductions_uncapped,All,5000000.0,10000000.0,True,False,False,27 -2021,Table 2.1,BL,32,medical_expense_deductions_uncapped,All,10000000.0,inf,False,False,False,0 -2021,Table 2.1,BK,32,medical_expense_deductions_uncapped,All,10000000.0,inf,True,False,False,0 -2021,Table 2.1,CJ,10,mortgage_interest_deductions,All,-inf,inf,False,False,True,143469233000 -2021,Table 2.1,CI,10,mortgage_interest_deductions,All,-inf,inf,True,False,True,11538228 -2021,Table 2.1,CJ,11,mortgage_interest_deductions,All,0.0,5000.0,False,False,False,349116000 -2021,Table 2.1,CI,11,mortgage_interest_deductions,All,0.0,5000.0,True,False,False,33207 -2021,Table 2.1,CJ,12,mortgage_interest_deductions,All,5000.0,10000.0,False,False,False,504725000 -2021,Table 2.1,CI,12,mortgage_interest_deductions,All,5000.0,10000.0,True,False,False,42439 -2021,Table 2.1,CJ,13,mortgage_interest_deductions,All,10000.0,15000.0,False,False,False,654059000 -2021,Table 2.1,CI,13,mortgage_interest_deductions,All,10000.0,15000.0,True,False,False,55732 -2021,Table 2.1,CJ,14,mortgage_interest_deductions,All,15000.0,20000.0,False,False,False,793827000 -2021,Table 2.1,CI,14,mortgage_interest_deductions,All,15000.0,20000.0,True,False,False,77595 -2021,Table 2.1,CJ,15,mortgage_interest_deductions,All,20000.0,25000.0,False,False,False,966376000 -2021,Table 2.1,CI,15,mortgage_interest_deductions,All,20000.0,25000.0,True,False,False,91706 -2021,Table 2.1,CJ,16,mortgage_interest_deductions,All,25000.0,30000.0,False,False,False,958030000 -2021,Table 2.1,CI,16,mortgage_interest_deductions,All,25000.0,30000.0,True,False,False,96818 -2021,Table 2.1,CJ,17,mortgage_interest_deductions,All,30000.0,35000.0,False,False,False,1296531000 -2021,Table 2.1,CI,17,mortgage_interest_deductions,All,30000.0,35000.0,True,False,False,125957 -2021,Table 2.1,CJ,18,mortgage_interest_deductions,All,35000.0,40000.0,False,False,False,1465880000 -2021,Table 2.1,CI,18,mortgage_interest_deductions,All,35000.0,40000.0,True,False,False,150651 -2021,Table 2.1,CJ,19,mortgage_interest_deductions,All,40000.0,45000.0,False,False,False,1933451000 -2021,Table 2.1,CI,19,mortgage_interest_deductions,All,40000.0,45000.0,True,False,False,176842 -2021,Table 2.1,CJ,20,mortgage_interest_deductions,All,45000.0,50000.0,False,False,False,2030291000 -2021,Table 2.1,CI,20,mortgage_interest_deductions,All,45000.0,50000.0,True,False,False,196700 -2021,Table 2.1,CJ,21,mortgage_interest_deductions,All,50000.0,55000.0,False,False,False,2224423000 -2021,Table 2.1,CI,21,mortgage_interest_deductions,All,50000.0,55000.0,True,False,False,235397 -2021,Table 2.1,CJ,22,mortgage_interest_deductions,All,55000.0,60000.0,False,False,False,2286536000 -2021,Table 2.1,CI,22,mortgage_interest_deductions,All,55000.0,60000.0,True,False,False,239179 -2021,Table 2.1,CJ,23,mortgage_interest_deductions,All,60000.0,75000.0,False,False,False,8263595000 -2021,Table 2.1,CI,23,mortgage_interest_deductions,All,60000.0,75000.0,True,False,False,879564 -2021,Table 2.1,CJ,24,mortgage_interest_deductions,All,75000.0,100000.0,False,False,False,16552940000 -2021,Table 2.1,CI,24,mortgage_interest_deductions,All,75000.0,100000.0,True,False,False,1605710 -2021,Table 2.1,CJ,25,mortgage_interest_deductions,All,100000.0,200000.0,False,False,False,41472589000 -2021,Table 2.1,CI,25,mortgage_interest_deductions,All,100000.0,200000.0,True,False,False,3707749 -2021,Table 2.1,CJ,26,mortgage_interest_deductions,All,200000.0,500000.0,False,False,False,40001465000 -2021,Table 2.1,CI,26,mortgage_interest_deductions,All,200000.0,500000.0,True,False,False,2664041 -2021,Table 2.1,CJ,27,mortgage_interest_deductions,All,500000.0,1000000.0,False,False,False,13291073000 -2021,Table 2.1,CI,27,mortgage_interest_deductions,All,500000.0,1000000.0,True,False,False,728125 -2021,Table 2.1,CJ,28,mortgage_interest_deductions,All,1000000.0,1500000.0,False,False,False,3564332000 -2021,Table 2.1,CI,28,mortgage_interest_deductions,All,1000000.0,1500000.0,True,False,False,184775 -2021,Table 2.1,CJ,29,mortgage_interest_deductions,All,1500000.0,2000000.0,False,False,False,1547029000 -2021,Table 2.1,CI,29,mortgage_interest_deductions,All,1500000.0,2000000.0,True,False,False,78662 -2021,Table 2.1,CJ,30,mortgage_interest_deductions,All,2000000.0,5000000.0,False,False,False,2275375000 -2021,Table 2.1,CI,30,mortgage_interest_deductions,All,2000000.0,5000000.0,True,False,False,115934 -2021,Table 2.1,CJ,31,mortgage_interest_deductions,All,5000000.0,10000000.0,False,False,False,623376000 -2021,Table 2.1,CI,31,mortgage_interest_deductions,All,5000000.0,10000000.0,True,False,False,31004 -2021,Table 2.1,CJ,32,mortgage_interest_deductions,All,10000000.0,inf,False,False,False,414211000 -2021,Table 2.1,CI,32,mortgage_interest_deductions,All,10000000.0,inf,True,False,False,20442 -2021,Table 1.4,M,10,ordinary_dividends,All,-inf,0.0,False,False,False,3366312000 -2021,Table 1.4,L,10,ordinary_dividends,All,-inf,0.0,True,False,False,375055 -2021,Table 1.4,M,9,ordinary_dividends,All,-inf,inf,False,False,True,386961461000 -2021,Table 1.4,L,9,ordinary_dividends,All,-inf,inf,True,False,True,32247057 -2021,Table 1.4,M,11,ordinary_dividends,All,1.0,5000.0,False,False,False,717653000 -2021,Table 1.4,L,11,ordinary_dividends,All,1.0,5000.0,True,False,False,790696 -2021,Table 1.4,M,12,ordinary_dividends,All,5000.0,10000.0,False,False,False,1068899000 -2021,Table 1.4,L,12,ordinary_dividends,All,5000.0,10000.0,True,False,False,776574 -2021,Table 1.4,M,13,ordinary_dividends,All,10000.0,15000.0,False,False,False,1183718000 -2021,Table 1.4,L,13,ordinary_dividends,All,10000.0,15000.0,True,False,False,714119 -2021,Table 1.4,M,14,ordinary_dividends,All,15000.0,20000.0,False,False,False,1521595000 -2021,Table 1.4,L,14,ordinary_dividends,All,15000.0,20000.0,True,False,False,757406 -2021,Table 1.4,M,15,ordinary_dividends,All,20000.0,25000.0,False,False,False,1464978000 -2021,Table 1.4,L,15,ordinary_dividends,All,20000.0,25000.0,True,False,False,685968 -2021,Table 1.4,M,16,ordinary_dividends,All,25000.0,30000.0,False,False,False,1551754000 -2021,Table 1.4,L,16,ordinary_dividends,All,25000.0,30000.0,True,False,False,686838 -2021,Table 1.4,M,17,ordinary_dividends,All,30000.0,40000.0,False,False,False,3306237000 -2021,Table 1.4,L,17,ordinary_dividends,All,30000.0,40000.0,True,False,False,1480384 -2021,Table 1.4,M,18,ordinary_dividends,All,40000.0,50000.0,False,False,False,3821977000 -2021,Table 1.4,L,18,ordinary_dividends,All,40000.0,50000.0,True,False,False,1585276 -2021,Table 1.4,M,19,ordinary_dividends,All,50000.0,75000.0,False,False,False,12460005000 -2021,Table 1.4,L,19,ordinary_dividends,All,50000.0,75000.0,True,False,False,3974772 -2021,Table 1.4,M,20,ordinary_dividends,All,75000.0,100000.0,False,False,False,13739836000 -2021,Table 1.4,L,20,ordinary_dividends,All,75000.0,100000.0,True,False,False,3723238 -2021,Table 1.4,M,21,ordinary_dividends,All,100000.0,200000.0,False,False,False,51096349000 -2021,Table 1.4,L,21,ordinary_dividends,All,100000.0,200000.0,True,False,False,8972329 -2021,Table 1.4,M,22,ordinary_dividends,All,200000.0,500000.0,False,False,False,74408554000 -2021,Table 1.4,L,22,ordinary_dividends,All,200000.0,500000.0,True,False,False,5657743 -2021,Table 1.4,M,23,ordinary_dividends,All,500000.0,1000000.0,False,False,False,44870842000 -2021,Table 1.4,L,23,ordinary_dividends,All,500000.0,1000000.0,True,False,False,1299171 -2021,Table 1.4,M,24,ordinary_dividends,All,1000000.0,1500000.0,False,False,False,20107920000 -2021,Table 1.4,L,24,ordinary_dividends,All,1000000.0,1500000.0,True,False,False,320718 -2021,Table 1.4,M,25,ordinary_dividends,All,1500000.0,2000000.0,False,False,False,12094139000 -2021,Table 1.4,L,25,ordinary_dividends,All,1500000.0,2000000.0,True,False,False,136624 -2021,Table 1.4,M,26,ordinary_dividends,All,2000000.0,5000000.0,False,False,False,34574922000 -2021,Table 1.4,L,26,ordinary_dividends,All,2000000.0,5000000.0,True,False,False,208955 -2021,Table 1.4,M,27,ordinary_dividends,All,5000000.0,10000000.0,False,False,False,22076152000 -2021,Table 1.4,L,27,ordinary_dividends,All,5000000.0,10000000.0,True,False,False,58225 -2021,Table 1.4,M,28,ordinary_dividends,All,10000000.0,inf,False,False,False,83529618000 -2021,Table 1.4,L,28,ordinary_dividends,All,10000000.0,inf,True,False,False,42967 -2021,Table 1.4,BE,10,partnership_and_s_corp_income,All,-inf,0.0,False,False,False,7887066000 -2021,Table 1.4,BD,10,partnership_and_s_corp_income,All,-inf,0.0,True,False,False,81198 -2021,Table 1.4,BE,9,partnership_and_s_corp_income,All,-inf,inf,False,False,True,1236497548000 -2021,Table 1.4,BD,9,partnership_and_s_corp_income,All,-inf,inf,True,False,True,7080387 -2021,Table 1.4,BE,11,partnership_and_s_corp_income,All,1.0,5000.0,False,False,False,283607000 -2021,Table 1.4,BD,11,partnership_and_s_corp_income,All,1.0,5000.0,True,False,False,47856 -2021,Table 1.4,BE,12,partnership_and_s_corp_income,All,5000.0,10000.0,False,False,False,586238000 -2021,Table 1.4,BD,12,partnership_and_s_corp_income,All,5000.0,10000.0,True,False,False,68157 -2021,Table 1.4,BE,13,partnership_and_s_corp_income,All,10000.0,15000.0,False,False,False,909688000 -2021,Table 1.4,BD,13,partnership_and_s_corp_income,All,10000.0,15000.0,True,False,False,80211 -2021,Table 1.4,BE,14,partnership_and_s_corp_income,All,15000.0,20000.0,False,False,False,1103007000 -2021,Table 1.4,BD,14,partnership_and_s_corp_income,All,15000.0,20000.0,True,False,False,103979 -2021,Table 1.4,BE,15,partnership_and_s_corp_income,All,20000.0,25000.0,False,False,False,1305887000 -2021,Table 1.4,BD,15,partnership_and_s_corp_income,All,20000.0,25000.0,True,False,False,102791 -2021,Table 1.4,BE,16,partnership_and_s_corp_income,All,25000.0,30000.0,False,False,False,1922619000 -2021,Table 1.4,BD,16,partnership_and_s_corp_income,All,25000.0,30000.0,True,False,False,115715 -2021,Table 1.4,BE,17,partnership_and_s_corp_income,All,30000.0,40000.0,False,False,False,3983255000 -2021,Table 1.4,BD,17,partnership_and_s_corp_income,All,30000.0,40000.0,True,False,False,236011 -2021,Table 1.4,BE,18,partnership_and_s_corp_income,All,40000.0,50000.0,False,False,False,4619794000 -2021,Table 1.4,BD,18,partnership_and_s_corp_income,All,40000.0,50000.0,True,False,False,228209 -2021,Table 1.4,BE,19,partnership_and_s_corp_income,All,50000.0,75000.0,False,False,False,15009727000 -2021,Table 1.4,BD,19,partnership_and_s_corp_income,All,50000.0,75000.0,True,False,False,606696 -2021,Table 1.4,BE,20,partnership_and_s_corp_income,All,75000.0,100000.0,False,False,False,18667765000 -2021,Table 1.4,BD,20,partnership_and_s_corp_income,All,75000.0,100000.0,True,False,False,578825 -2021,Table 1.4,BE,21,partnership_and_s_corp_income,All,100000.0,200000.0,False,False,False,78156489000 -2021,Table 1.4,BD,21,partnership_and_s_corp_income,All,100000.0,200000.0,True,False,False,1785491 -2021,Table 1.4,BE,22,partnership_and_s_corp_income,All,200000.0,500000.0,False,False,False,181930698000 -2021,Table 1.4,BD,22,partnership_and_s_corp_income,All,200000.0,500000.0,True,False,False,1753402 -2021,Table 1.4,BE,23,partnership_and_s_corp_income,All,500000.0,1000000.0,False,False,False,173728789000 -2021,Table 1.4,BD,23,partnership_and_s_corp_income,All,500000.0,1000000.0,True,False,False,694433 -2021,Table 1.4,BE,24,partnership_and_s_corp_income,All,1000000.0,1500000.0,False,False,False,104846418000 -2021,Table 1.4,BD,24,partnership_and_s_corp_income,All,1000000.0,1500000.0,True,False,False,227981 -2021,Table 1.4,BE,25,partnership_and_s_corp_income,All,1500000.0,2000000.0,False,False,False,69068636000 -2021,Table 1.4,BD,25,partnership_and_s_corp_income,All,1500000.0,2000000.0,True,False,False,105458 -2021,Table 1.4,BE,26,partnership_and_s_corp_income,All,2000000.0,5000000.0,False,False,False,191186000000 -2021,Table 1.4,BD,26,partnership_and_s_corp_income,All,2000000.0,5000000.0,True,False,False,174470 -2021,Table 1.4,BE,27,partnership_and_s_corp_income,All,5000000.0,10000000.0,False,False,False,111698107000 -2021,Table 1.4,BD,27,partnership_and_s_corp_income,All,5000000.0,10000000.0,True,False,False,51294 -2021,Table 1.4,BE,28,partnership_and_s_corp_income,All,10000000.0,inf,False,False,False,269603756000 -2021,Table 1.4,BD,28,partnership_and_s_corp_income,All,10000000.0,inf,True,False,False,38208 -2021,Table 1.4,BG,10,partnership_and_s_corp_losses,All,-inf,0.0,False,False,False,71077341000 -2021,Table 1.4,BF,10,partnership_and_s_corp_losses,All,-inf,0.0,True,False,False,338591 -2021,Table 1.4,BG,9,partnership_and_s_corp_losses,All,-inf,inf,False,False,True,260841147000 -2021,Table 1.4,BF,9,partnership_and_s_corp_losses,All,-inf,inf,True,False,True,3444331 -2021,Table 1.4,BG,11,partnership_and_s_corp_losses,All,1.0,5000.0,False,False,False,1075829000 -2021,Table 1.4,BF,11,partnership_and_s_corp_losses,All,1.0,5000.0,True,False,False,42742 -2021,Table 1.4,BG,12,partnership_and_s_corp_losses,All,5000.0,10000.0,False,False,False,1526643000 -2021,Table 1.4,BF,12,partnership_and_s_corp_losses,All,5000.0,10000.0,True,False,False,54467 -2021,Table 1.4,BG,13,partnership_and_s_corp_losses,All,10000.0,15000.0,False,False,False,1287709000 -2021,Table 1.4,BF,13,partnership_and_s_corp_losses,All,10000.0,15000.0,True,False,False,50193 -2021,Table 1.4,BG,14,partnership_and_s_corp_losses,All,15000.0,20000.0,False,False,False,1612436000 -2021,Table 1.4,BF,14,partnership_and_s_corp_losses,All,15000.0,20000.0,True,False,False,70310 -2021,Table 1.4,BG,15,partnership_and_s_corp_losses,All,20000.0,25000.0,False,False,False,1138604000 -2021,Table 1.4,BF,15,partnership_and_s_corp_losses,All,20000.0,25000.0,True,False,False,60158 -2021,Table 1.4,BG,16,partnership_and_s_corp_losses,All,25000.0,30000.0,False,False,False,1372282000 -2021,Table 1.4,BF,16,partnership_and_s_corp_losses,All,25000.0,30000.0,True,False,False,63849 -2021,Table 1.4,BG,17,partnership_and_s_corp_losses,All,30000.0,40000.0,False,False,False,2643384000 -2021,Table 1.4,BF,17,partnership_and_s_corp_losses,All,30000.0,40000.0,True,False,False,123148 -2021,Table 1.4,BG,18,partnership_and_s_corp_losses,All,40000.0,50000.0,False,False,False,1998743000 -2021,Table 1.4,BF,18,partnership_and_s_corp_losses,All,40000.0,50000.0,True,False,False,118522 -2021,Table 1.4,BG,19,partnership_and_s_corp_losses,All,50000.0,75000.0,False,False,False,7096586000 -2021,Table 1.4,BF,19,partnership_and_s_corp_losses,All,50000.0,75000.0,True,False,False,315753 -2021,Table 1.4,BG,20,partnership_and_s_corp_losses,All,75000.0,100000.0,False,False,False,6088365000 -2021,Table 1.4,BF,20,partnership_and_s_corp_losses,All,75000.0,100000.0,True,False,False,289414 -2021,Table 1.4,BG,21,partnership_and_s_corp_losses,All,100000.0,200000.0,False,False,False,18194486000 -2021,Table 1.4,BF,21,partnership_and_s_corp_losses,All,100000.0,200000.0,True,False,False,818577 -2021,Table 1.4,BG,22,partnership_and_s_corp_losses,All,200000.0,500000.0,False,False,False,24100077000 -2021,Table 1.4,BF,22,partnership_and_s_corp_losses,All,200000.0,500000.0,True,False,False,633067 -2021,Table 1.4,BG,23,partnership_and_s_corp_losses,All,500000.0,1000000.0,False,False,False,17044916000 -2021,Table 1.4,BF,23,partnership_and_s_corp_losses,All,500000.0,1000000.0,True,False,False,243058 -2021,Table 1.4,BG,24,partnership_and_s_corp_losses,All,1000000.0,1500000.0,False,False,False,8770210000 -2021,Table 1.4,BF,24,partnership_and_s_corp_losses,All,1000000.0,1500000.0,True,False,False,76758 -2021,Table 1.4,BG,25,partnership_and_s_corp_losses,All,1500000.0,2000000.0,False,False,False,5542594000 -2021,Table 1.4,BF,25,partnership_and_s_corp_losses,All,1500000.0,2000000.0,True,False,False,37017 -2021,Table 1.4,BG,26,partnership_and_s_corp_losses,All,2000000.0,5000000.0,False,False,False,18083170000 -2021,Table 1.4,BF,26,partnership_and_s_corp_losses,All,2000000.0,5000000.0,True,False,False,66284 -2021,Table 1.4,BG,27,partnership_and_s_corp_losses,All,5000000.0,10000000.0,False,False,False,11883221000 -2021,Table 1.4,BF,27,partnership_and_s_corp_losses,All,5000000.0,10000000.0,True,False,False,22375 -2021,Table 1.4,BG,28,partnership_and_s_corp_losses,All,10000000.0,inf,False,False,False,60304551000 -2021,Table 1.4,BF,28,partnership_and_s_corp_losses,All,10000000.0,inf,True,False,False,20051 -2021,Table 1.4,DY,10,qualified_business_income_deduction,All,-inf,0.0,False,False,False,0 -2021,Table 1.4,DX,10,qualified_business_income_deduction,All,-inf,0.0,True,False,False,0 -2021,Table 1.4,DY,9,qualified_business_income_deduction,All,-inf,inf,False,False,True,205779729000 -2021,Table 1.4,DX,9,qualified_business_income_deduction,All,-inf,inf,True,False,True,25924668 -2021,Table 1.4,DY,11,qualified_business_income_deduction,All,1.0,5000.0,False,False,False,3109000 -2021,Table 1.4,DX,11,qualified_business_income_deduction,All,1.0,5000.0,True,False,False,20887 -2021,Table 1.4,DY,12,qualified_business_income_deduction,All,5000.0,10000.0,False,False,False,15105000 -2021,Table 1.4,DX,12,qualified_business_income_deduction,All,5000.0,10000.0,True,False,False,39486 -2021,Table 1.4,DY,13,qualified_business_income_deduction,All,10000.0,15000.0,False,False,False,98223000 -2021,Table 1.4,DX,13,qualified_business_income_deduction,All,10000.0,15000.0,True,False,False,438355 -2021,Table 1.4,DY,14,qualified_business_income_deduction,All,15000.0,20000.0,False,False,False,586769000 -2021,Table 1.4,DX,14,qualified_business_income_deduction,All,15000.0,20000.0,True,False,False,970408 -2021,Table 1.4,DY,15,qualified_business_income_deduction,All,20000.0,25000.0,False,False,False,914224000 -2021,Table 1.4,DX,15,qualified_business_income_deduction,All,20000.0,25000.0,True,False,False,946007 -2021,Table 1.4,DY,16,qualified_business_income_deduction,All,25000.0,30000.0,False,False,False,1222867000 -2021,Table 1.4,DX,16,qualified_business_income_deduction,All,25000.0,30000.0,True,False,False,1073605 -2021,Table 1.4,DY,17,qualified_business_income_deduction,All,30000.0,40000.0,False,False,False,2872968000 -2021,Table 1.4,DX,17,qualified_business_income_deduction,All,30000.0,40000.0,True,False,False,1812616 -2021,Table 1.4,DY,18,qualified_business_income_deduction,All,40000.0,50000.0,False,False,False,3191541000 -2021,Table 1.4,DX,18,qualified_business_income_deduction,All,40000.0,50000.0,True,False,False,1609597 -2021,Table 1.4,DY,19,qualified_business_income_deduction,All,50000.0,75000.0,False,False,False,9015688000 -2021,Table 1.4,DX,19,qualified_business_income_deduction,All,50000.0,75000.0,True,False,False,3515828 -2021,Table 1.4,DY,20,qualified_business_income_deduction,All,75000.0,100000.0,False,False,False,8543742000 -2021,Table 1.4,DX,20,qualified_business_income_deduction,All,75000.0,100000.0,True,False,False,2824372 -2021,Table 1.4,DY,21,qualified_business_income_deduction,All,100000.0,200000.0,False,False,False,29732755000 -2021,Table 1.4,DX,21,qualified_business_income_deduction,All,100000.0,200000.0,True,False,False,6739276 -2021,Table 1.4,DY,22,qualified_business_income_deduction,All,200000.0,500000.0,False,False,False,39509153000 -2021,Table 1.4,DX,22,qualified_business_income_deduction,All,200000.0,500000.0,True,False,False,4297046 -2021,Table 1.4,DY,23,qualified_business_income_deduction,All,500000.0,1000000.0,False,False,False,18882845000 -2021,Table 1.4,DX,23,qualified_business_income_deduction,All,500000.0,1000000.0,True,False,False,995853 -2021,Table 1.4,DY,24,qualified_business_income_deduction,All,1000000.0,1500000.0,False,False,False,11281864000 -2021,Table 1.4,DX,24,qualified_business_income_deduction,All,1000000.0,1500000.0,True,False,False,265528 -2021,Table 1.4,DY,25,qualified_business_income_deduction,All,1500000.0,2000000.0,False,False,False,7932390000 -2021,Table 1.4,DX,25,qualified_business_income_deduction,All,1500000.0,2000000.0,True,False,False,114452 -2021,Table 1.4,DY,26,qualified_business_income_deduction,All,2000000.0,5000000.0,False,False,False,23312146000 -2021,Table 1.4,DX,26,qualified_business_income_deduction,All,2000000.0,5000000.0,True,False,False,178739 -2021,Table 1.4,DY,27,qualified_business_income_deduction,All,5000000.0,10000000.0,False,False,False,14234309000 -2021,Table 1.4,DX,27,qualified_business_income_deduction,All,5000000.0,10000000.0,True,False,False,48998 -2021,Table 1.4,DY,28,qualified_business_income_deduction,All,10000000.0,inf,False,False,False,34430031000 -2021,Table 1.4,DX,28,qualified_business_income_deduction,All,10000000.0,inf,True,False,False,33615 -2021,Table 1.4,O,10,qualified_dividends,All,-inf,0.0,False,False,False,2343007000 -2021,Table 1.4,N,10,qualified_dividends,All,-inf,0.0,True,False,False,340668 -2021,Table 1.4,O,9,qualified_dividends,All,-inf,inf,False,False,True,295906194000 -2021,Table 1.4,N,9,qualified_dividends,All,-inf,inf,True,False,True,30524800 -2021,Table 1.4,O,11,qualified_dividends,All,1.0,5000.0,False,False,False,466517000 -2021,Table 1.4,N,11,qualified_dividends,All,1.0,5000.0,True,False,False,712438 -2021,Table 1.4,O,12,qualified_dividends,All,5000.0,10000.0,False,False,False,667944000 -2021,Table 1.4,N,12,qualified_dividends,All,5000.0,10000.0,True,False,False,708724 -2021,Table 1.4,O,13,qualified_dividends,All,10000.0,15000.0,False,False,False,721307000 -2021,Table 1.4,N,13,qualified_dividends,All,10000.0,15000.0,True,False,False,653265 -2021,Table 1.4,O,14,qualified_dividends,All,15000.0,20000.0,False,False,False,1060701000 -2021,Table 1.4,N,14,qualified_dividends,All,15000.0,20000.0,True,False,False,703804 -2021,Table 1.4,O,15,qualified_dividends,All,20000.0,25000.0,False,False,False,895825000 -2021,Table 1.4,N,15,qualified_dividends,All,20000.0,25000.0,True,False,False,618604 -2021,Table 1.4,O,16,qualified_dividends,All,25000.0,30000.0,False,False,False,934172000 -2021,Table 1.4,N,16,qualified_dividends,All,25000.0,30000.0,True,False,False,628482 -2021,Table 1.4,O,17,qualified_dividends,All,30000.0,40000.0,False,False,False,2196487000 -2021,Table 1.4,N,17,qualified_dividends,All,30000.0,40000.0,True,False,False,1363506 -2021,Table 1.4,O,18,qualified_dividends,All,40000.0,50000.0,False,False,False,2523390000 -2021,Table 1.4,N,18,qualified_dividends,All,40000.0,50000.0,True,False,False,1474068 -2021,Table 1.4,O,19,qualified_dividends,All,50000.0,75000.0,False,False,False,8599225000 -2021,Table 1.4,N,19,qualified_dividends,All,50000.0,75000.0,True,False,False,3723163 -2021,Table 1.4,O,20,qualified_dividends,All,75000.0,100000.0,False,False,False,9314082000 -2021,Table 1.4,N,20,qualified_dividends,All,75000.0,100000.0,True,False,False,3518585 -2021,Table 1.4,O,21,qualified_dividends,All,100000.0,200000.0,False,False,False,36162406000 -2021,Table 1.4,N,21,qualified_dividends,All,100000.0,200000.0,True,False,False,8568560 -2021,Table 1.4,O,22,qualified_dividends,All,200000.0,500000.0,False,False,False,54930379000 -2021,Table 1.4,N,22,qualified_dividends,All,200000.0,500000.0,True,False,False,5491717 -2021,Table 1.4,O,23,qualified_dividends,All,500000.0,1000000.0,False,False,False,34477019000 -2021,Table 1.4,N,23,qualified_dividends,All,500000.0,1000000.0,True,False,False,1266819 -2021,Table 1.4,O,24,qualified_dividends,All,1000000.0,1500000.0,False,False,False,15503762000 -2021,Table 1.4,N,24,qualified_dividends,All,1000000.0,1500000.0,True,False,False,314136 -2021,Table 1.4,O,25,qualified_dividends,All,1500000.0,2000000.0,False,False,False,9363207000 -2021,Table 1.4,N,25,qualified_dividends,All,1500000.0,2000000.0,True,False,False,133787 -2021,Table 1.4,O,26,qualified_dividends,All,2000000.0,5000000.0,False,False,False,27212821000 -2021,Table 1.4,N,26,qualified_dividends,All,2000000.0,5000000.0,True,False,False,205033 -2021,Table 1.4,O,27,qualified_dividends,All,5000000.0,10000000.0,False,False,False,17867740000 -2021,Table 1.4,N,27,qualified_dividends,All,5000000.0,10000000.0,True,False,False,57194 -2021,Table 1.4,O,28,qualified_dividends,All,10000000.0,inf,False,False,False,70666204000 -2021,Table 1.4,N,28,qualified_dividends,All,10000000.0,inf,True,False,False,42247 -2021,Table 1.4,BA,10,rent_and_royalty_net_income,All,-inf,0.0,False,False,False,2442565000 -2021,Table 1.4,AZ,10,rent_and_royalty_net_income,All,-inf,0.0,True,False,False,127457 -2021,Table 1.4,BA,9,rent_and_royalty_net_income,All,-inf,inf,False,False,True,125168233000 -2021,Table 1.4,AZ,9,rent_and_royalty_net_income,All,-inf,inf,True,False,True,6305037 -2021,Table 1.4,BA,11,rent_and_royalty_net_income,All,1.0,5000.0,False,False,False,252165000 -2021,Table 1.4,AZ,11,rent_and_royalty_net_income,All,1.0,5000.0,True,False,False,105186 -2021,Table 1.4,BA,12,rent_and_royalty_net_income,All,5000.0,10000.0,False,False,False,810504000 -2021,Table 1.4,AZ,12,rent_and_royalty_net_income,All,5000.0,10000.0,True,False,False,177352 -2021,Table 1.4,BA,13,rent_and_royalty_net_income,All,10000.0,15000.0,False,False,False,1400866000 -2021,Table 1.4,AZ,13,rent_and_royalty_net_income,All,10000.0,15000.0,True,False,False,206801 -2021,Table 1.4,BA,14,rent_and_royalty_net_income,All,15000.0,20000.0,False,False,False,1359444000 -2021,Table 1.4,AZ,14,rent_and_royalty_net_income,All,15000.0,20000.0,True,False,False,192320 -2021,Table 1.4,BA,15,rent_and_royalty_net_income,All,20000.0,25000.0,False,False,False,1326092000 -2021,Table 1.4,AZ,15,rent_and_royalty_net_income,All,20000.0,25000.0,True,False,False,173129 -2021,Table 1.4,BA,16,rent_and_royalty_net_income,All,25000.0,30000.0,False,False,False,1243079000 -2021,Table 1.4,AZ,16,rent_and_royalty_net_income,All,25000.0,30000.0,True,False,False,163891 -2021,Table 1.4,BA,17,rent_and_royalty_net_income,All,30000.0,40000.0,False,False,False,2333608000 -2021,Table 1.4,AZ,17,rent_and_royalty_net_income,All,30000.0,40000.0,True,False,False,271019 -2021,Table 1.4,BA,18,rent_and_royalty_net_income,All,40000.0,50000.0,False,False,False,2115656000 -2021,Table 1.4,AZ,18,rent_and_royalty_net_income,All,40000.0,50000.0,True,False,False,289556 -2021,Table 1.4,BA,19,rent_and_royalty_net_income,All,50000.0,75000.0,False,False,False,8102192000 -2021,Table 1.4,AZ,19,rent_and_royalty_net_income,All,50000.0,75000.0,True,False,False,759142 -2021,Table 1.4,BA,20,rent_and_royalty_net_income,All,75000.0,100000.0,False,False,False,7488793000 -2021,Table 1.4,AZ,20,rent_and_royalty_net_income,All,75000.0,100000.0,True,False,False,711934 -2021,Table 1.4,BA,21,rent_and_royalty_net_income,All,100000.0,200000.0,False,False,False,23848755000 -2021,Table 1.4,AZ,21,rent_and_royalty_net_income,All,100000.0,200000.0,True,False,False,1629877 -2021,Table 1.4,BA,22,rent_and_royalty_net_income,All,200000.0,500000.0,False,False,False,27515158000 -2021,Table 1.4,AZ,22,rent_and_royalty_net_income,All,200000.0,500000.0,True,False,False,1009957 -2021,Table 1.4,BA,23,rent_and_royalty_net_income,All,500000.0,1000000.0,False,False,False,13796937000 -2021,Table 1.4,AZ,23,rent_and_royalty_net_income,All,500000.0,1000000.0,True,False,False,271737 -2021,Table 1.4,BA,24,rent_and_royalty_net_income,All,1000000.0,1500000.0,False,False,False,5825852000 -2021,Table 1.4,AZ,24,rent_and_royalty_net_income,All,1000000.0,1500000.0,True,False,False,79355 -2021,Table 1.4,BA,25,rent_and_royalty_net_income,All,1500000.0,2000000.0,False,False,False,3571948000 -2021,Table 1.4,AZ,25,rent_and_royalty_net_income,All,1500000.0,2000000.0,True,False,False,36535 -2021,Table 1.4,BA,26,rent_and_royalty_net_income,All,2000000.0,5000000.0,False,False,False,8452529000 -2021,Table 1.4,AZ,26,rent_and_royalty_net_income,All,2000000.0,5000000.0,True,False,False,62357 -2021,Table 1.4,BA,27,rent_and_royalty_net_income,All,5000000.0,10000000.0,False,False,False,3944126000 -2021,Table 1.4,AZ,27,rent_and_royalty_net_income,All,5000000.0,10000000.0,True,False,False,20267 -2021,Table 1.4,BA,28,rent_and_royalty_net_income,All,10000000.0,inf,False,False,False,9337965000 -2021,Table 1.4,AZ,28,rent_and_royalty_net_income,All,10000000.0,inf,True,False,False,17163 -2021,Table 1.4,BC,10,rent_and_royalty_net_losses,All,-inf,0.0,False,False,False,7147339000 -2021,Table 1.4,BB,10,rent_and_royalty_net_losses,All,-inf,0.0,True,False,False,186685 -2021,Table 1.4,BC,9,rent_and_royalty_net_losses,All,-inf,inf,False,False,True,56765983000 -2021,Table 1.4,BB,9,rent_and_royalty_net_losses,All,-inf,inf,True,False,True,3496912 -2021,Table 1.4,BC,11,rent_and_royalty_net_losses,All,1.0,5000.0,False,False,False,450428000 -2021,Table 1.4,BB,11,rent_and_royalty_net_losses,All,1.0,5000.0,True,False,False,47651 -2021,Table 1.4,BC,12,rent_and_royalty_net_losses,All,5000.0,10000.0,False,False,False,423191000 -2021,Table 1.4,BB,12,rent_and_royalty_net_losses,All,5000.0,10000.0,True,False,False,52142 -2021,Table 1.4,BC,13,rent_and_royalty_net_losses,All,10000.0,15000.0,False,False,False,825615000 -2021,Table 1.4,BB,13,rent_and_royalty_net_losses,All,10000.0,15000.0,True,False,False,79992 -2021,Table 1.4,BC,14,rent_and_royalty_net_losses,All,15000.0,20000.0,False,False,False,804625000 -2021,Table 1.4,BB,14,rent_and_royalty_net_losses,All,15000.0,20000.0,True,False,False,71717 -2021,Table 1.4,BC,15,rent_and_royalty_net_losses,All,20000.0,25000.0,False,False,False,958872000 -2021,Table 1.4,BB,15,rent_and_royalty_net_losses,All,20000.0,25000.0,True,False,False,87413 -2021,Table 1.4,BC,16,rent_and_royalty_net_losses,All,25000.0,30000.0,False,False,False,892664000 -2021,Table 1.4,BB,16,rent_and_royalty_net_losses,All,25000.0,30000.0,True,False,False,100383 -2021,Table 1.4,BC,17,rent_and_royalty_net_losses,All,30000.0,40000.0,False,False,False,2145126000 -2021,Table 1.4,BB,17,rent_and_royalty_net_losses,All,30000.0,40000.0,True,False,False,201219 -2021,Table 1.4,BC,18,rent_and_royalty_net_losses,All,40000.0,50000.0,False,False,False,1763351000 -2021,Table 1.4,BB,18,rent_and_royalty_net_losses,All,40000.0,50000.0,True,False,False,188133 -2021,Table 1.4,BC,19,rent_and_royalty_net_losses,All,50000.0,75000.0,False,False,False,5248649000 -2021,Table 1.4,BB,19,rent_and_royalty_net_losses,All,50000.0,75000.0,True,False,False,512458 -2021,Table 1.4,BC,20,rent_and_royalty_net_losses,All,75000.0,100000.0,False,False,False,5334809000 -2021,Table 1.4,BB,20,rent_and_royalty_net_losses,All,75000.0,100000.0,True,False,False,506912 -2021,Table 1.4,BC,21,rent_and_royalty_net_losses,All,100000.0,200000.0,False,False,False,10158810000 -2021,Table 1.4,BB,21,rent_and_royalty_net_losses,All,100000.0,200000.0,True,False,False,928576 -2021,Table 1.4,BC,22,rent_and_royalty_net_losses,All,200000.0,500000.0,False,False,False,8898786000 -2021,Table 1.4,BB,22,rent_and_royalty_net_losses,All,200000.0,500000.0,True,False,False,340074 -2021,Table 1.4,BC,23,rent_and_royalty_net_losses,All,500000.0,1000000.0,False,False,False,4900018000 -2021,Table 1.4,BB,23,rent_and_royalty_net_losses,All,500000.0,1000000.0,True,False,False,109995 -2021,Table 1.4,BC,24,rent_and_royalty_net_losses,All,1000000.0,1500000.0,False,False,False,1804009000 -2021,Table 1.4,BB,24,rent_and_royalty_net_losses,All,1000000.0,1500000.0,True,False,False,31247 -2021,Table 1.4,BC,25,rent_and_royalty_net_losses,All,1500000.0,2000000.0,False,False,False,894747000 -2021,Table 1.4,BB,25,rent_and_royalty_net_losses,All,1500000.0,2000000.0,True,False,False,14592 -2021,Table 1.4,BC,26,rent_and_royalty_net_losses,All,2000000.0,5000000.0,False,False,False,1872901000 -2021,Table 1.4,BB,26,rent_and_royalty_net_losses,All,2000000.0,5000000.0,True,False,False,24066 -2021,Table 1.4,BC,27,rent_and_royalty_net_losses,All,5000000.0,10000000.0,False,False,False,876204000 -2021,Table 1.4,BB,27,rent_and_royalty_net_losses,All,5000000.0,10000000.0,True,False,False,7425 -2021,Table 1.4,BC,28,rent_and_royalty_net_losses,All,10000000.0,inf,False,False,False,1365840000 -2021,Table 1.4,BB,28,rent_and_royalty_net_losses,All,10000000.0,inf,True,False,False,6233 -2021,Table 1.4,BI,10,s_corporation_net_income,All,-inf,0.0,False,False,False,4391548000 -2021,Table 1.4,BH,10,s_corporation_net_income,All,-inf,0.0,True,False,False,29831 -2021,Table 1.4,BI,9,s_corporation_net_income,All,-inf,inf,False,False,True,766681240000 -2021,Table 1.4,BH,9,s_corporation_net_income,All,-inf,inf,True,False,True,3878815 -2021,Table 1.4,BI,11,s_corporation_net_income,All,1.0,5000.0,False,False,False,92564000 -2021,Table 1.4,BH,11,s_corporation_net_income,All,1.0,5000.0,True,False,False,20073 -2021,Table 1.4,BI,12,s_corporation_net_income,All,5000.0,10000.0,False,False,False,347412000 -2021,Table 1.4,BH,12,s_corporation_net_income,All,5000.0,10000.0,True,False,False,35163 -2021,Table 1.4,BI,13,s_corporation_net_income,All,10000.0,15000.0,False,False,False,453016000 -2021,Table 1.4,BH,13,s_corporation_net_income,All,10000.0,15000.0,True,False,False,32367 -2021,Table 1.4,BI,14,s_corporation_net_income,All,15000.0,20000.0,False,False,False,592026000 -2021,Table 1.4,BH,14,s_corporation_net_income,All,15000.0,20000.0,True,False,False,56930 -2021,Table 1.4,BI,15,s_corporation_net_income,All,20000.0,25000.0,False,False,False,779624000 -2021,Table 1.4,BH,15,s_corporation_net_income,All,20000.0,25000.0,True,False,False,57490 -2021,Table 1.4,BI,16,s_corporation_net_income,All,25000.0,30000.0,False,False,False,1069086000 -2021,Table 1.4,BH,16,s_corporation_net_income,All,25000.0,30000.0,True,False,False,67025 -2021,Table 1.4,BI,17,s_corporation_net_income,All,30000.0,40000.0,False,False,False,2553876000 -2021,Table 1.4,BH,17,s_corporation_net_income,All,30000.0,40000.0,True,False,False,146497 -2021,Table 1.4,BI,18,s_corporation_net_income,All,40000.0,50000.0,False,False,False,2703861000 -2021,Table 1.4,BH,18,s_corporation_net_income,All,40000.0,50000.0,True,False,False,127348 -2021,Table 1.4,BI,19,s_corporation_net_income,All,50000.0,75000.0,False,False,False,9980514000 -2021,Table 1.4,BH,19,s_corporation_net_income,All,50000.0,75000.0,True,False,False,351051 -2021,Table 1.4,BI,20,s_corporation_net_income,All,75000.0,100000.0,False,False,False,12626016000 -2021,Table 1.4,BH,20,s_corporation_net_income,All,75000.0,100000.0,True,False,False,344190 -2021,Table 1.4,BI,21,s_corporation_net_income,All,100000.0,200000.0,False,False,False,51717735000 -2021,Table 1.4,BH,21,s_corporation_net_income,All,100000.0,200000.0,True,False,False,1023614 -2021,Table 1.4,BI,22,s_corporation_net_income,All,200000.0,500000.0,False,False,False,118036039000 -2021,Table 1.4,BH,22,s_corporation_net_income,All,200000.0,500000.0,True,False,False,964074 -2021,Table 1.4,BI,23,s_corporation_net_income,All,500000.0,1000000.0,False,False,False,100763796000 -2021,Table 1.4,BH,23,s_corporation_net_income,All,500000.0,1000000.0,True,False,False,341823 -2021,Table 1.4,BI,24,s_corporation_net_income,All,1000000.0,1500000.0,False,False,False,62531757000 -2021,Table 1.4,BH,24,s_corporation_net_income,All,1000000.0,1500000.0,True,False,False,110295 -2021,Table 1.4,BI,25,s_corporation_net_income,All,1500000.0,2000000.0,False,False,False,42085326000 -2021,Table 1.4,BH,25,s_corporation_net_income,All,1500000.0,2000000.0,True,False,False,50221 -2021,Table 1.4,BI,26,s_corporation_net_income,All,2000000.0,5000000.0,False,False,False,116109397000 -2021,Table 1.4,BH,26,s_corporation_net_income,All,2000000.0,5000000.0,True,False,False,80671 -2021,Table 1.4,BI,27,s_corporation_net_income,All,5000000.0,10000000.0,False,False,False,68737430000 -2021,Table 1.4,BH,27,s_corporation_net_income,All,5000000.0,10000000.0,True,False,False,23204 -2021,Table 1.4,BI,28,s_corporation_net_income,All,10000000.0,inf,False,False,False,171110216000 -2021,Table 1.4,BH,28,s_corporation_net_income,All,10000000.0,inf,True,False,False,16948 -2021,Table 1.4,BK,10,s_corporation_net_losses,All,-inf,0.0,False,False,False,29520422000 -2021,Table 1.4,BJ,10,s_corporation_net_losses,All,-inf,0.0,True,False,False,184546 -2021,Table 1.4,BK,9,s_corporation_net_losses,All,-inf,inf,False,False,True,92689104000 -2021,Table 1.4,BJ,9,s_corporation_net_losses,All,-inf,inf,True,False,True,1453974 -2021,Table 1.4,BK,11,s_corporation_net_losses,All,1.0,5000.0,False,False,False,795211000 -2021,Table 1.4,BJ,11,s_corporation_net_losses,All,1.0,5000.0,True,False,False,22633 -2021,Table 1.4,BK,12,s_corporation_net_losses,All,5000.0,10000.0,False,False,False,1043588000 -2021,Table 1.4,BJ,12,s_corporation_net_losses,All,5000.0,10000.0,True,False,False,28589 -2021,Table 1.4,BK,13,s_corporation_net_losses,All,10000.0,15000.0,False,False,False,889474000 -2021,Table 1.4,BJ,13,s_corporation_net_losses,All,10000.0,15000.0,True,False,False,22953 -2021,Table 1.4,BK,14,s_corporation_net_losses,All,15000.0,20000.0,False,False,False,1157717000 -2021,Table 1.4,BJ,14,s_corporation_net_losses,All,15000.0,20000.0,True,False,False,36524 -2021,Table 1.4,BK,15,s_corporation_net_losses,All,20000.0,25000.0,False,False,False,690852000 -2021,Table 1.4,BJ,15,s_corporation_net_losses,All,20000.0,25000.0,True,False,False,28645 -2021,Table 1.4,BK,16,s_corporation_net_losses,All,25000.0,30000.0,False,False,False,896241000 -2021,Table 1.4,BJ,16,s_corporation_net_losses,All,25000.0,30000.0,True,False,False,28773 -2021,Table 1.4,BK,17,s_corporation_net_losses,All,30000.0,40000.0,False,False,False,1582533000 -2021,Table 1.4,BJ,17,s_corporation_net_losses,All,30000.0,40000.0,True,False,False,66998 -2021,Table 1.4,BK,18,s_corporation_net_losses,All,40000.0,50000.0,False,False,False,1062758000 -2021,Table 1.4,BJ,18,s_corporation_net_losses,All,40000.0,50000.0,True,False,False,47866 -2021,Table 1.4,BK,19,s_corporation_net_losses,All,50000.0,75000.0,False,False,False,4382315000 -2021,Table 1.4,BJ,19,s_corporation_net_losses,All,50000.0,75000.0,True,False,False,160626 -2021,Table 1.4,BK,20,s_corporation_net_losses,All,75000.0,100000.0,False,False,False,3469917000 -2021,Table 1.4,BJ,20,s_corporation_net_losses,All,75000.0,100000.0,True,False,False,125252 -2021,Table 1.4,BK,21,s_corporation_net_losses,All,100000.0,200000.0,False,False,False,9417120000 -2021,Table 1.4,BJ,21,s_corporation_net_losses,All,100000.0,200000.0,True,False,False,354264 -2021,Table 1.4,BK,22,s_corporation_net_losses,All,200000.0,500000.0,False,False,False,9774224000 -2021,Table 1.4,BJ,22,s_corporation_net_losses,All,200000.0,500000.0,True,False,False,222459 -2021,Table 1.4,BK,23,s_corporation_net_losses,All,500000.0,1000000.0,False,False,False,5305980000 -2021,Table 1.4,BJ,23,s_corporation_net_losses,All,500000.0,1000000.0,True,False,False,67985 -2021,Table 1.4,BK,24,s_corporation_net_losses,All,1000000.0,1500000.0,False,False,False,2401748000 -2021,Table 1.4,BJ,24,s_corporation_net_losses,All,1000000.0,1500000.0,True,False,False,19489 -2021,Table 1.4,BK,25,s_corporation_net_losses,All,1500000.0,2000000.0,False,False,False,1521322000 -2021,Table 1.4,BJ,25,s_corporation_net_losses,All,1500000.0,2000000.0,True,False,False,9229 -2021,Table 1.4,BK,26,s_corporation_net_losses,All,2000000.0,5000000.0,False,False,False,4389329000 -2021,Table 1.4,BJ,26,s_corporation_net_losses,All,2000000.0,5000000.0,True,False,False,16093 -2021,Table 1.4,BK,27,s_corporation_net_losses,All,5000000.0,10000000.0,False,False,False,2633645000 -2021,Table 1.4,BJ,27,s_corporation_net_losses,All,5000000.0,10000000.0,True,False,False,5688 -2021,Table 1.4,BK,28,s_corporation_net_losses,All,10000000.0,inf,False,False,False,11754707000 -2021,Table 1.4,BJ,28,s_corporation_net_losses,All,10000000.0,inf,True,False,False,5363 -2021,Table 1.2,G,10,standard_deduction,All,-inf,0.0,False,False,False,0 -2021,Table 1.2,F,10,standard_deduction,All,-inf,0.0,True,False,False,0 -2021,Table 1.2,G,9,standard_deduction,All,-inf,inf,False,False,True,2506538615000 -2021,Table 1.2,F,9,standard_deduction,All,-inf,inf,True,False,True,141872935 -2021,Table 1.2,G,11,standard_deduction,All,1.0,5000.0,False,False,False,98120053000 -2021,Table 1.2,F,11,standard_deduction,All,1.0,5000.0,True,False,False,8401693 -2021,Table 1.2,G,12,standard_deduction,All,5000.0,10000.0,False,False,False,116961807000 -2021,Table 1.2,F,12,standard_deduction,All,5000.0,10000.0,True,False,False,8851325 -2021,Table 1.2,G,13,standard_deduction,All,10000.0,15000.0,False,False,False,148143828000 -2021,Table 1.2,F,13,standard_deduction,All,10000.0,15000.0,True,False,False,9946220 -2021,Table 1.2,G,14,standard_deduction,All,15000.0,20000.0,False,False,False,147511432000 -2021,Table 1.2,F,14,standard_deduction,All,15000.0,20000.0,True,False,False,9625550 -2021,Table 1.2,G,15,standard_deduction,All,20000.0,25000.0,False,False,False,138067676000 -2021,Table 1.2,F,15,standard_deduction,All,20000.0,25000.0,True,False,False,8695838 -2021,Table 1.2,G,16,standard_deduction,All,25000.0,30000.0,False,False,False,138563570000 -2021,Table 1.2,F,16,standard_deduction,All,25000.0,30000.0,True,False,False,8593575 -2021,Table 1.2,G,17,standard_deduction,All,30000.0,40000.0,False,False,False,256213310000 -2021,Table 1.2,F,17,standard_deduction,All,30000.0,40000.0,True,False,False,15654845 -2021,Table 1.2,G,18,standard_deduction,All,40000.0,50000.0,False,False,False,204664807000 -2021,Table 1.2,F,18,standard_deduction,All,40000.0,50000.0,True,False,False,12167871 -2021,Table 1.2,G,19,standard_deduction,All,50000.0,75000.0,False,False,False,376778774000 -2021,Table 1.2,F,19,standard_deduction,All,50000.0,75000.0,True,False,False,20810563 -2021,Table 1.2,G,20,standard_deduction,All,75000.0,100000.0,False,False,False,263917424000 -2021,Table 1.2,F,20,standard_deduction,All,75000.0,100000.0,True,False,False,12672652 -2021,Table 1.2,G,21,standard_deduction,All,100000.0,200000.0,False,False,False,451428959000 -2021,Table 1.2,F,21,standard_deduction,All,100000.0,200000.0,True,False,False,19530803 -2021,Table 1.2,G,22,standard_deduction,All,200000.0,500000.0,False,False,False,141816314000 -2021,Table 1.2,F,22,standard_deduction,All,200000.0,500000.0,True,False,False,5910788 -2021,Table 1.2,G,23,standard_deduction,All,500000.0,1000000.0,False,False,False,17931209000 -2021,Table 1.2,F,23,standard_deduction,All,500000.0,1000000.0,True,False,False,742962 -2021,Table 1.2,G,24,standard_deduction,All,1000000.0,1500000.0,False,False,False,3374835000 -2021,Table 1.2,F,24,standard_deduction,All,1000000.0,1500000.0,True,False,False,139954 -2021,Table 1.2,G,25,standard_deduction,All,1500000.0,2000000.0,False,False,False,1162935000 -2021,Table 1.2,F,25,standard_deduction,All,1500000.0,2000000.0,True,False,False,48550 -2021,Table 1.2,G,26,standard_deduction,All,2000000.0,5000000.0,False,False,False,1456808000 -2021,Table 1.2,F,26,standard_deduction,All,2000000.0,5000000.0,True,False,False,61583 -2021,Table 1.2,G,27,standard_deduction,All,5000000.0,10000000.0,False,False,False,290838000 -2021,Table 1.2,F,27,standard_deduction,All,5000000.0,10000000.0,True,False,False,12376 -2021,Table 1.2,G,28,standard_deduction,All,10000000.0,inf,False,False,False,134035000 -2021,Table 1.2,F,28,standard_deduction,All,10000000.0,inf,True,False,False,5789 -2021,Table 2.1,BR,10,state_and_local_tax_deductions,All,-inf,inf,False,False,True,362507801000 -2021,Table 2.1,BQ,10,state_and_local_tax_deductions,All,-inf,inf,True,False,True,14644905 -2021,Table 2.1,BR,11,state_and_local_tax_deductions,All,0.0,5000.0,False,False,False,336650000 -2021,Table 2.1,BQ,11,state_and_local_tax_deductions,All,0.0,5000.0,True,False,False,72301 -2021,Table 2.1,BR,12,state_and_local_tax_deductions,All,5000.0,10000.0,False,False,False,380502000 -2021,Table 2.1,BQ,12,state_and_local_tax_deductions,All,5000.0,10000.0,True,False,False,87056 -2021,Table 2.1,BR,13,state_and_local_tax_deductions,All,10000.0,15000.0,False,False,False,581150000 -2021,Table 2.1,BQ,13,state_and_local_tax_deductions,All,10000.0,15000.0,True,False,False,102025 -2021,Table 2.1,BR,14,state_and_local_tax_deductions,All,15000.0,20000.0,False,False,False,821023000 -2021,Table 2.1,BQ,14,state_and_local_tax_deductions,All,15000.0,20000.0,True,False,False,148557 -2021,Table 2.1,BR,15,state_and_local_tax_deductions,All,20000.0,25000.0,False,False,False,811022000 -2021,Table 2.1,BQ,15,state_and_local_tax_deductions,All,20000.0,25000.0,True,False,False,155007 -2021,Table 2.1,BR,16,state_and_local_tax_deductions,All,25000.0,30000.0,False,False,False,835417000 -2021,Table 2.1,BQ,16,state_and_local_tax_deductions,All,25000.0,30000.0,True,False,False,184738 -2021,Table 2.1,BR,17,state_and_local_tax_deductions,All,30000.0,35000.0,False,False,False,1209086000 -2021,Table 2.1,BQ,17,state_and_local_tax_deductions,All,30000.0,35000.0,True,False,False,220479 -2021,Table 2.1,BR,18,state_and_local_tax_deductions,All,35000.0,40000.0,False,False,False,1372777000 -2021,Table 2.1,BQ,18,state_and_local_tax_deductions,All,35000.0,40000.0,True,False,False,234030 -2021,Table 2.1,BR,19,state_and_local_tax_deductions,All,40000.0,45000.0,False,False,False,1576721000 -2021,Table 2.1,BQ,19,state_and_local_tax_deductions,All,40000.0,45000.0,True,False,False,286943 -2021,Table 2.1,BR,20,state_and_local_tax_deductions,All,45000.0,50000.0,False,False,False,1926544000 -2021,Table 2.1,BQ,20,state_and_local_tax_deductions,All,45000.0,50000.0,True,False,False,312280 -2021,Table 2.1,BR,21,state_and_local_tax_deductions,All,50000.0,55000.0,False,False,False,2041826000 -2021,Table 2.1,BQ,21,state_and_local_tax_deductions,All,50000.0,55000.0,True,False,False,335880 -2021,Table 2.1,BR,22,state_and_local_tax_deductions,All,55000.0,60000.0,False,False,False,2299240000 -2021,Table 2.1,BQ,22,state_and_local_tax_deductions,All,55000.0,60000.0,True,False,False,348695 -2021,Table 2.1,BR,23,state_and_local_tax_deductions,All,60000.0,75000.0,False,False,False,8106733000 -2021,Table 2.1,BQ,23,state_and_local_tax_deductions,All,60000.0,75000.0,True,False,False,1112635 -2021,Table 2.1,BR,24,state_and_local_tax_deductions,All,75000.0,100000.0,False,False,False,16952297000 -2021,Table 2.1,BQ,24,state_and_local_tax_deductions,All,75000.0,100000.0,True,False,False,1962692 -2021,Table 2.1,BR,25,state_and_local_tax_deductions,All,100000.0,200000.0,False,False,False,54478221000 -2021,Table 2.1,BQ,25,state_and_local_tax_deductions,All,100000.0,200000.0,True,False,False,4478609 -2021,Table 2.1,BR,26,state_and_local_tax_deductions,All,200000.0,500000.0,False,False,False,74417699000 -2021,Table 2.1,BQ,26,state_and_local_tax_deductions,All,200000.0,500000.0,True,False,False,3125168 -2021,Table 2.1,BR,27,state_and_local_tax_deductions,All,500000.0,1000000.0,False,False,False,42702238000 -2021,Table 2.1,BQ,27,state_and_local_tax_deductions,All,500000.0,1000000.0,True,False,False,871728 -2021,Table 2.1,BR,28,state_and_local_tax_deductions,All,1000000.0,1500000.0,False,False,False,20002533000 -2021,Table 2.1,BQ,28,state_and_local_tax_deductions,All,1000000.0,1500000.0,True,False,False,236470 -2021,Table 2.1,BR,29,state_and_local_tax_deductions,All,1500000.0,2000000.0,False,False,False,12367696000 -2021,Table 2.1,BQ,29,state_and_local_tax_deductions,All,1500000.0,2000000.0,True,False,False,107265 -2021,Table 2.1,BR,30,state_and_local_tax_deductions,All,2000000.0,5000000.0,False,False,False,33547583000 -2021,Table 2.1,BQ,30,state_and_local_tax_deductions,All,2000000.0,5000000.0,True,False,False,171918 -2021,Table 2.1,BR,31,state_and_local_tax_deductions,All,5000000.0,10000000.0,False,False,False,20421310000 -2021,Table 2.1,BQ,31,state_and_local_tax_deductions,All,5000000.0,10000000.0,True,False,False,50923 -2021,Table 2.1,BR,32,state_and_local_tax_deductions,All,10000000.0,inf,False,False,False,65319533000 -2021,Table 2.1,BQ,32,state_and_local_tax_deductions,All,10000000.0,inf,True,False,False,39505 -2021,Table 1.2,I,10,taxable_income,All,-inf,0.0,False,False,False,0 -2021,Table 1.2,H,10,taxable_income,All,-inf,0.0,True,False,False,0 -2021,Table 1.2,I,9,taxable_income,All,-inf,inf,False,False,True,11767185281000 -2021,Table 1.2,H,9,taxable_income,All,-inf,inf,True,False,True,128519569 -2021,Table 1.2,I,11,taxable_income,All,1.0,5000.0,False,False,False,295328000 -2021,Table 1.2,H,11,taxable_income,All,1.0,5000.0,True,False,False,229950 -2021,Table 1.2,I,12,taxable_income,All,5000.0,10000.0,False,False,False,842819000 -2021,Table 1.2,H,12,taxable_income,All,5000.0,10000.0,True,False,False,256332 -2021,Table 1.2,I,13,taxable_income,All,10000.0,15000.0,False,False,False,4468515000 -2021,Table 1.2,H,13,taxable_income,All,10000.0,15000.0,True,False,False,3274058 -2021,Table 1.2,I,14,taxable_income,All,15000.0,20000.0,False,False,False,31348526000 -2021,Table 1.2,H,14,taxable_income,All,15000.0,20000.0,True,False,False,7213222 -2021,Table 1.2,I,15,taxable_income,All,20000.0,25000.0,False,False,False,61206997000 -2021,Table 1.2,H,15,taxable_income,All,20000.0,25000.0,True,False,False,7565336 -2021,Table 1.2,I,16,taxable_income,All,25000.0,30000.0,False,False,False,97212333000 -2021,Table 1.2,H,16,taxable_income,All,25000.0,30000.0,True,False,False,8419122 -2021,Table 1.2,I,17,taxable_income,All,30000.0,40000.0,False,False,False,289923966000 -2021,Table 1.2,H,17,taxable_income,All,30000.0,40000.0,True,False,False,16053345 -2021,Table 1.2,I,18,taxable_income,All,40000.0,50000.0,False,False,False,348974613000 -2021,Table 1.2,H,18,taxable_income,All,40000.0,50000.0,True,False,False,12742030 -2021,Table 1.2,I,19,taxable_income,All,50000.0,75000.0,False,False,False,957673164000 -2021,Table 1.2,H,19,taxable_income,All,50000.0,75000.0,True,False,False,22580599 -2021,Table 1.2,I,20,taxable_income,All,75000.0,100000.0,False,False,False,943012644000 -2021,Table 1.2,H,20,taxable_income,All,75000.0,100000.0,True,False,False,14628527 -2021,Table 1.2,I,21,taxable_income,All,100000.0,200000.0,False,False,False,2672516594000 -2021,Table 1.2,H,21,taxable_income,All,100000.0,200000.0,True,False,False,24025794 -2021,Table 1.2,I,22,taxable_income,All,200000.0,500000.0,False,False,False,2311714703000 -2021,Table 1.2,H,22,taxable_income,All,200000.0,500000.0,True,False,False,9040733 -2021,Table 1.2,I,23,taxable_income,All,500000.0,1000000.0,False,False,False,1005606850000 -2021,Table 1.2,H,23,taxable_income,All,500000.0,1000000.0,True,False,False,1616070 -2021,Table 1.2,I,24,taxable_income,All,1000000.0,1500000.0,False,False,False,419754109000 -2021,Table 1.2,H,24,taxable_income,All,1000000.0,1500000.0,True,False,False,376559 -2021,Table 1.2,I,25,taxable_income,All,1500000.0,2000000.0,False,False,False,247322898000 -2021,Table 1.2,H,25,taxable_income,All,1500000.0,2000000.0,True,False,False,155853 -2021,Table 1.2,I,26,taxable_income,All,2000000.0,5000000.0,False,False,False,642731428000 -2021,Table 1.2,H,26,taxable_income,All,2000000.0,5000000.0,True,False,False,233500 -2021,Table 1.2,I,27,taxable_income,All,5000000.0,10000000.0,False,False,False,400742701000 -2021,Table 1.2,H,27,taxable_income,All,5000000.0,10000000.0,True,False,False,63280 -2021,Table 1.2,I,28,taxable_income,All,10000000.0,inf,False,False,False,1331837093000 -2021,Table 1.2,H,28,taxable_income,All,10000000.0,inf,True,False,False,45261 -2021,Table 1.4,I,10,taxable_interest_income,All,-inf,0.0,False,False,False,3480795000 -2021,Table 1.4,H,10,taxable_interest_income,All,-inf,0.0,True,False,False,565509 -2021,Table 1.4,I,9,taxable_interest_income,All,-inf,inf,False,False,True,103535203000 -2021,Table 1.4,H,9,taxable_interest_income,All,-inf,inf,True,False,True,48990485 -2021,Table 1.4,I,11,taxable_interest_income,All,1.0,5000.0,False,False,False,448690000 -2021,Table 1.4,H,11,taxable_interest_income,All,1.0,5000.0,True,False,False,1715167 -2021,Table 1.4,I,12,taxable_interest_income,All,5000.0,10000.0,False,False,False,510374000 -2021,Table 1.4,H,12,taxable_interest_income,All,5000.0,10000.0,True,False,False,1132747 -2021,Table 1.4,I,13,taxable_interest_income,All,10000.0,15000.0,False,False,False,647673000 -2021,Table 1.4,H,13,taxable_interest_income,All,10000.0,15000.0,True,False,False,1414387 -2021,Table 1.4,I,14,taxable_interest_income,All,15000.0,20000.0,False,False,False,671713000 -2021,Table 1.4,H,14,taxable_interest_income,All,15000.0,20000.0,True,False,False,1435178 -2021,Table 1.4,I,15,taxable_interest_income,All,20000.0,25000.0,False,False,False,678317000 -2021,Table 1.4,H,15,taxable_interest_income,All,20000.0,25000.0,True,False,False,1439606 -2021,Table 1.4,I,16,taxable_interest_income,All,25000.0,30000.0,False,False,False,739131000 -2021,Table 1.4,H,16,taxable_interest_income,All,25000.0,30000.0,True,False,False,1470320 -2021,Table 1.4,I,17,taxable_interest_income,All,30000.0,40000.0,False,False,False,1349938000 -2021,Table 1.4,H,17,taxable_interest_income,All,30000.0,40000.0,True,False,False,2801612 -2021,Table 1.4,I,18,taxable_interest_income,All,40000.0,50000.0,False,False,False,1523359000 -2021,Table 1.4,H,18,taxable_interest_income,All,40000.0,50000.0,True,False,False,2917116 -2021,Table 1.4,I,19,taxable_interest_income,All,50000.0,75000.0,False,False,False,4385387000 -2021,Table 1.4,H,19,taxable_interest_income,All,50000.0,75000.0,True,False,False,6685822 -2021,Table 1.4,I,20,taxable_interest_income,All,75000.0,100000.0,False,False,False,4173567000 -2021,Table 1.4,H,20,taxable_interest_income,All,75000.0,100000.0,True,False,False,5884358 -2021,Table 1.4,I,21,taxable_interest_income,All,100000.0,200000.0,False,False,False,13402654000 -2021,Table 1.4,H,21,taxable_interest_income,All,100000.0,200000.0,True,False,False,12805970 -2021,Table 1.4,I,22,taxable_interest_income,All,200000.0,500000.0,False,False,False,14439132000 -2021,Table 1.4,H,22,taxable_interest_income,All,200000.0,500000.0,True,False,False,6484175 -2021,Table 1.4,I,23,taxable_interest_income,All,500000.0,1000000.0,False,False,False,8049644000 -2021,Table 1.4,H,23,taxable_interest_income,All,500000.0,1000000.0,True,False,False,1408417 -2021,Table 1.4,I,24,taxable_interest_income,All,1000000.0,1500000.0,False,False,False,4459247000 -2021,Table 1.4,H,24,taxable_interest_income,All,1000000.0,1500000.0,True,False,False,349330 -2021,Table 1.4,I,25,taxable_interest_income,All,1500000.0,2000000.0,False,False,False,2875469000 -2021,Table 1.4,H,25,taxable_interest_income,All,1500000.0,2000000.0,True,False,False,148403 -2021,Table 1.4,I,26,taxable_interest_income,All,2000000.0,5000000.0,False,False,False,9097803000 -2021,Table 1.4,H,26,taxable_interest_income,All,2000000.0,5000000.0,True,False,False,225416 -2021,Table 1.4,I,27,taxable_interest_income,All,5000000.0,10000000.0,False,False,False,6177098000 -2021,Table 1.4,H,27,taxable_interest_income,All,5000000.0,10000000.0,True,False,False,62111 -2021,Table 1.4,I,28,taxable_interest_income,All,10000000.0,inf,False,False,False,26425211000 -2021,Table 1.4,H,28,taxable_interest_income,All,10000000.0,inf,True,False,False,44841 -2021,Table 1.4,AM,10,taxable_pension_income,All,-inf,0.0,False,False,False,3171606000 -2021,Table 1.4,AL,10,taxable_pension_income,All,-inf,0.0,True,False,False,193961 -2021,Table 1.4,AM,9,taxable_pension_income,All,-inf,inf,False,False,True,858038339000 -2021,Table 1.4,AL,9,taxable_pension_income,All,-inf,inf,True,False,True,29357159 -2021,Table 1.4,AM,11,taxable_pension_income,All,1.0,5000.0,False,False,False,2194380000 -2021,Table 1.4,AL,11,taxable_pension_income,All,1.0,5000.0,True,False,False,693782 -2021,Table 1.4,AM,12,taxable_pension_income,All,5000.0,10000.0,False,False,False,5601441000 -2021,Table 1.4,AL,12,taxable_pension_income,All,5000.0,10000.0,True,False,False,944195 -2021,Table 1.4,AM,13,taxable_pension_income,All,10000.0,15000.0,False,False,False,11373258000 -2021,Table 1.4,AL,13,taxable_pension_income,All,10000.0,15000.0,True,False,False,1250111 -2021,Table 1.4,AM,14,taxable_pension_income,All,15000.0,20000.0,False,False,False,14244330000 -2021,Table 1.4,AL,14,taxable_pension_income,All,15000.0,20000.0,True,False,False,1268203 -2021,Table 1.4,AM,15,taxable_pension_income,All,20000.0,25000.0,False,False,False,15028717000 -2021,Table 1.4,AL,15,taxable_pension_income,All,20000.0,25000.0,True,False,False,1195253 -2021,Table 1.4,AM,16,taxable_pension_income,All,25000.0,30000.0,False,False,False,16915492000 -2021,Table 1.4,AL,16,taxable_pension_income,All,25000.0,30000.0,True,False,False,1176711 -2021,Table 1.4,AM,17,taxable_pension_income,All,30000.0,40000.0,False,False,False,36742864000 -2021,Table 1.4,AL,17,taxable_pension_income,All,30000.0,40000.0,True,False,False,2197626 -2021,Table 1.4,AM,18,taxable_pension_income,All,40000.0,50000.0,False,False,False,40461903000 -2021,Table 1.4,AL,18,taxable_pension_income,All,40000.0,50000.0,True,False,False,2079488 -2021,Table 1.4,AM,19,taxable_pension_income,All,50000.0,75000.0,False,False,False,118581365000 -2021,Table 1.4,AL,19,taxable_pension_income,All,50000.0,75000.0,True,False,False,4737483 -2021,Table 1.4,AM,20,taxable_pension_income,All,75000.0,100000.0,False,False,False,122865979000 -2021,Table 1.4,AL,20,taxable_pension_income,All,75000.0,100000.0,True,False,False,3870768 -2021,Table 1.4,AM,21,taxable_pension_income,All,100000.0,200000.0,False,False,False,295456804000 -2021,Table 1.4,AL,21,taxable_pension_income,All,100000.0,200000.0,True,False,False,6914014 -2021,Table 1.4,AM,22,taxable_pension_income,All,200000.0,500000.0,False,False,False,142093107000 -2021,Table 1.4,AL,22,taxable_pension_income,All,200000.0,500000.0,True,False,False,2378973 -2021,Table 1.4,AM,23,taxable_pension_income,All,500000.0,1000000.0,False,False,False,21135234000 -2021,Table 1.4,AL,23,taxable_pension_income,All,500000.0,1000000.0,True,False,False,309957 -2021,Table 1.4,AM,24,taxable_pension_income,All,1000000.0,1500000.0,False,False,False,4286668000 -2021,Table 1.4,AL,24,taxable_pension_income,All,1000000.0,1500000.0,True,False,False,64883 -2021,Table 1.4,AM,25,taxable_pension_income,All,1500000.0,2000000.0,False,False,False,1936068000 -2021,Table 1.4,AL,25,taxable_pension_income,All,1500000.0,2000000.0,True,False,False,26817 -2021,Table 1.4,AM,26,taxable_pension_income,All,2000000.0,5000000.0,False,False,False,3380526000 -2021,Table 1.4,AL,26,taxable_pension_income,All,2000000.0,5000000.0,True,False,False,37790 -2021,Table 1.4,AM,27,taxable_pension_income,All,5000000.0,10000000.0,False,False,False,1268562000 -2021,Table 1.4,AL,27,taxable_pension_income,All,5000000.0,10000000.0,True,False,False,9918 -2021,Table 1.4,AM,28,taxable_pension_income,All,10000000.0,inf,False,False,False,1300036000 -2021,Table 1.4,AL,28,taxable_pension_income,All,10000000.0,inf,True,False,False,7225 -2021,Table 1.4,BY,10,taxable_social_security,All,-inf,0.0,False,False,False,5051000 -2021,Table 1.4,BX,10,taxable_social_security,All,-inf,0.0,True,False,False,1810 -2021,Table 1.4,BY,9,taxable_social_security,All,-inf,inf,False,False,True,412830233000 -2021,Table 1.4,BX,9,taxable_social_security,All,-inf,inf,True,False,True,23798351 -2021,Table 1.4,BY,11,taxable_social_security,All,1.0,5000.0,False,False,False,56211000 -2021,Table 1.4,BX,11,taxable_social_security,All,1.0,5000.0,True,False,False,17871 -2021,Table 1.4,BY,12,taxable_social_security,All,5000.0,10000.0,False,False,False,236096000 -2021,Table 1.4,BX,12,taxable_social_security,All,5000.0,10000.0,True,False,False,53922 -2021,Table 1.4,BY,13,taxable_social_security,All,10000.0,15000.0,False,False,False,376863000 -2021,Table 1.4,BX,13,taxable_social_security,All,10000.0,15000.0,True,False,False,286325 -2021,Table 1.4,BY,14,taxable_social_security,All,15000.0,20000.0,False,False,False,1390216000 -2021,Table 1.4,BX,14,taxable_social_security,All,15000.0,20000.0,True,False,False,1001301 -2021,Table 1.4,BY,15,taxable_social_security,All,20000.0,25000.0,False,False,False,3274619000 -2021,Table 1.4,BX,15,taxable_social_security,All,20000.0,25000.0,True,False,False,1239135 -2021,Table 1.4,BY,16,taxable_social_security,All,25000.0,30000.0,False,False,False,5194320000 -2021,Table 1.4,BX,16,taxable_social_security,All,25000.0,30000.0,True,False,False,1280188 -2021,Table 1.4,BY,17,taxable_social_security,All,30000.0,40000.0,False,False,False,14547676000 -2021,Table 1.4,BX,17,taxable_social_security,All,30000.0,40000.0,True,False,False,2171147 -2021,Table 1.4,BY,18,taxable_social_security,All,40000.0,50000.0,False,False,False,20950320000 -2021,Table 1.4,BX,18,taxable_social_security,All,40000.0,50000.0,True,False,False,1960565 -2021,Table 1.4,BY,19,taxable_social_security,All,50000.0,75000.0,False,False,False,71433500000 -2021,Table 1.4,BX,19,taxable_social_security,All,50000.0,75000.0,True,False,False,4372880 -2021,Table 1.4,BY,20,taxable_social_security,All,75000.0,100000.0,False,False,False,73935780000 -2021,Table 1.4,BX,20,taxable_social_security,All,75000.0,100000.0,True,False,False,3446381 -2021,Table 1.4,BY,21,taxable_social_security,All,100000.0,200000.0,False,False,False,148855563000 -2021,Table 1.4,BX,21,taxable_social_security,All,100000.0,200000.0,True,False,False,5623506 -2021,Table 1.4,BY,22,taxable_social_security,All,200000.0,500000.0,False,False,False,56662240000 -2021,Table 1.4,BX,22,taxable_social_security,All,200000.0,500000.0,True,False,False,1871269 -2021,Table 1.4,BY,23,taxable_social_security,All,500000.0,1000000.0,False,False,False,10063315000 -2021,Table 1.4,BX,23,taxable_social_security,All,500000.0,1000000.0,True,False,False,303816 -2021,Table 1.4,BY,24,taxable_social_security,All,1000000.0,1500000.0,False,False,False,2409392000 -2021,Table 1.4,BX,24,taxable_social_security,All,1000000.0,1500000.0,True,False,False,70581 -2021,Table 1.4,BY,25,taxable_social_security,All,1500000.0,2000000.0,False,False,False,1049301000 -2021,Table 1.4,BX,25,taxable_social_security,All,1500000.0,2000000.0,True,False,False,30206 -2021,Table 1.4,BY,26,taxable_social_security,All,2000000.0,5000000.0,False,False,False,1604460000 -2021,Table 1.4,BX,26,taxable_social_security,All,2000000.0,5000000.0,True,False,False,46179 -2021,Table 1.4,BY,27,taxable_social_security,All,5000000.0,10000000.0,False,False,False,454512000 -2021,Table 1.4,BX,27,taxable_social_security,All,5000000.0,10000000.0,True,False,False,12500 -2021,Table 1.4,BY,28,taxable_social_security,All,10000000.0,inf,False,False,False,330800000 -2021,Table 1.4,BX,28,taxable_social_security,All,10000000.0,inf,True,False,False,8767 -2021,Table 1.4,AK,10,total_pension_income,All,-inf,0.0,False,False,False,6763059000 -2021,Table 1.4,AJ,10,total_pension_income,All,-inf,0.0,True,False,False,248894 -2021,Table 1.4,AK,9,total_pension_income,All,-inf,inf,False,False,True,1506948061000 -2021,Table 1.4,AJ,9,total_pension_income,All,-inf,inf,True,False,True,32171355 -2021,Table 1.4,AK,11,total_pension_income,All,1.0,5000.0,False,False,False,5734467000 -2021,Table 1.4,AJ,11,total_pension_income,All,1.0,5000.0,True,False,False,747616 -2021,Table 1.4,AK,12,total_pension_income,All,5000.0,10000.0,False,False,False,9362560000 -2021,Table 1.4,AJ,12,total_pension_income,All,5000.0,10000.0,True,False,False,983565 -2021,Table 1.4,AK,13,total_pension_income,All,10000.0,15000.0,False,False,False,15555885000 -2021,Table 1.4,AJ,13,total_pension_income,All,10000.0,15000.0,True,False,False,1301846 -2021,Table 1.4,AK,14,total_pension_income,All,15000.0,20000.0,False,False,False,17825944000 -2021,Table 1.4,AJ,14,total_pension_income,All,15000.0,20000.0,True,False,False,1322953 -2021,Table 1.4,AK,15,total_pension_income,All,20000.0,25000.0,False,False,False,18785258000 -2021,Table 1.4,AJ,15,total_pension_income,All,20000.0,25000.0,True,False,False,1257174 -2021,Table 1.4,AK,16,total_pension_income,All,25000.0,30000.0,False,False,False,22377250000 -2021,Table 1.4,AJ,16,total_pension_income,All,25000.0,30000.0,True,False,False,1258069 -2021,Table 1.4,AK,17,total_pension_income,All,30000.0,40000.0,False,False,False,50636533000 -2021,Table 1.4,AJ,17,total_pension_income,All,30000.0,40000.0,True,False,False,2362435 -2021,Table 1.4,AK,18,total_pension_income,All,40000.0,50000.0,False,False,False,52865761000 -2021,Table 1.4,AJ,18,total_pension_income,All,40000.0,50000.0,True,False,False,2237532 -2021,Table 1.4,AK,19,total_pension_income,All,50000.0,75000.0,False,False,False,164394888000 -2021,Table 1.4,AJ,19,total_pension_income,All,50000.0,75000.0,True,False,False,5090890 -2021,Table 1.4,AK,20,total_pension_income,All,75000.0,100000.0,False,False,False,183811124000 -2021,Table 1.4,AJ,20,total_pension_income,All,75000.0,100000.0,True,False,False,4189391 -2021,Table 1.4,AK,21,total_pension_income,All,100000.0,200000.0,False,False,False,502675859000 -2021,Table 1.4,AJ,21,total_pension_income,All,100000.0,200000.0,True,False,False,7698980 -2021,Table 1.4,AK,22,total_pension_income,All,200000.0,500000.0,False,False,False,323076078000 -2021,Table 1.4,AJ,22,total_pension_income,All,200000.0,500000.0,True,False,False,2835784 -2021,Table 1.4,AK,23,total_pension_income,All,500000.0,1000000.0,False,False,False,77426767000 -2021,Table 1.4,AJ,23,total_pension_income,All,500000.0,1000000.0,True,False,False,423868 -2021,Table 1.4,AK,24,total_pension_income,All,1000000.0,1500000.0,False,False,False,21775336000 -2021,Table 1.4,AJ,24,total_pension_income,All,1000000.0,1500000.0,True,False,False,93871 -2021,Table 1.4,AK,25,total_pension_income,All,1500000.0,2000000.0,False,False,False,8868497000 -2021,Table 1.4,AJ,25,total_pension_income,All,1500000.0,2000000.0,True,False,False,38651 -2021,Table 1.4,AK,26,total_pension_income,All,2000000.0,5000000.0,False,False,False,15425227000 -2021,Table 1.4,AJ,26,total_pension_income,All,2000000.0,5000000.0,True,False,False,54952 -2021,Table 1.4,AK,27,total_pension_income,All,5000000.0,10000000.0,False,False,False,5131480000 -2021,Table 1.4,AJ,27,total_pension_income,All,5000000.0,10000000.0,True,False,False,14628 -2021,Table 1.4,AK,28,total_pension_income,All,10000000.0,inf,False,False,False,4456090000 -2021,Table 1.4,AJ,28,total_pension_income,All,10000000.0,inf,True,False,False,10257 -2021,Table 1.4,BW,10,total_social_security,All,-inf,0.0,False,False,False,23536368000 -2021,Table 1.4,BV,10,total_social_security,All,-inf,0.0,True,False,False,1122130 -2021,Table 1.4,BW,9,total_social_security,All,-inf,inf,False,False,True,791161174000 -2021,Table 1.4,BV,9,total_social_security,All,-inf,inf,True,False,True,31293066 -2021,Table 1.4,BW,11,total_social_security,All,1.0,5000.0,False,False,False,39846341000 -2021,Table 1.4,BV,11,total_social_security,All,1.0,5000.0,True,False,False,2034531 -2021,Table 1.4,BW,12,total_social_security,All,5000.0,10000.0,False,False,False,35515487000 -2021,Table 1.4,BV,12,total_social_security,All,5000.0,10000.0,True,False,False,1726114 -2021,Table 1.4,BW,13,total_social_security,All,10000.0,15000.0,False,False,False,40383202000 -2021,Table 1.4,BV,13,total_social_security,All,10000.0,15000.0,True,False,False,1965208 -2021,Table 1.4,BW,14,total_social_security,All,15000.0,20000.0,False,False,False,36698208000 -2021,Table 1.4,BV,14,total_social_security,All,15000.0,20000.0,True,False,False,1753163 -2021,Table 1.4,BW,15,total_social_security,All,20000.0,25000.0,False,False,False,32270846000 -2021,Table 1.4,BV,15,total_social_security,All,20000.0,25000.0,True,False,False,1443145 -2021,Table 1.4,BW,16,total_social_security,All,25000.0,30000.0,False,False,False,30607751000 -2021,Table 1.4,BV,16,total_social_security,All,25000.0,30000.0,True,False,False,1320304 -2021,Table 1.4,BW,17,total_social_security,All,30000.0,40000.0,False,False,False,50301193000 -2021,Table 1.4,BV,17,total_social_security,All,30000.0,40000.0,True,False,False,2173266 -2021,Table 1.4,BW,18,total_social_security,All,40000.0,50000.0,False,False,False,45283931000 -2021,Table 1.4,BV,18,total_social_security,All,40000.0,50000.0,True,False,False,1960809 -2021,Table 1.4,BW,19,total_social_security,All,50000.0,75000.0,False,False,False,104788772000 -2021,Table 1.4,BV,19,total_social_security,All,50000.0,75000.0,True,False,False,4373045 -2021,Table 1.4,BW,20,total_social_security,All,75000.0,100000.0,False,False,False,90885785000 -2021,Table 1.4,BV,20,total_social_security,All,75000.0,100000.0,True,False,False,3447623 -2021,Table 1.4,BW,21,total_social_security,All,100000.0,200000.0,False,False,False,175599410000 -2021,Table 1.4,BV,21,total_social_security,All,100000.0,200000.0,True,False,False,5628183 -2021,Table 1.4,BW,22,total_social_security,All,200000.0,500000.0,False,False,False,66714127000 -2021,Table 1.4,BV,22,total_social_security,All,200000.0,500000.0,True,False,False,1873015 -2021,Table 1.4,BW,23,total_social_security,All,500000.0,1000000.0,False,False,False,11845014000 -2021,Table 1.4,BV,23,total_social_security,All,500000.0,1000000.0,True,False,False,304147 -2021,Table 1.4,BW,24,total_social_security,All,1000000.0,1500000.0,False,False,False,2836780000 -2021,Table 1.4,BV,24,total_social_security,All,1000000.0,1500000.0,True,False,False,70642 -2021,Table 1.4,BW,25,total_social_security,All,1500000.0,2000000.0,False,False,False,1235190000 -2021,Table 1.4,BV,25,total_social_security,All,1500000.0,2000000.0,True,False,False,30245 -2021,Table 1.4,BW,26,total_social_security,All,2000000.0,5000000.0,False,False,False,1888392000 -2021,Table 1.4,BV,26,total_social_security,All,2000000.0,5000000.0,True,False,False,46214 -2021,Table 1.4,BW,27,total_social_security,All,5000000.0,10000000.0,False,False,False,535125000 -2021,Table 1.4,BV,27,total_social_security,All,5000000.0,10000000.0,True,False,False,12510 -2021,Table 1.4,BW,28,total_social_security,All,10000000.0,inf,False,False,False,389254000 -2021,Table 1.4,BV,28,total_social_security,All,10000000.0,inf,True,False,False,8772 -2021,Table 1.2,M,10,tottax,All,-inf,0.0,False,False,False,186881000 -2021,Table 1.2,L,10,tottax,All,-inf,0.0,True,False,False,4367 -2021,Table 1.2,M,9,tottax,All,-inf,inf,False,False,True,2196348205000 -2021,Table 1.2,L,9,tottax,All,-inf,inf,True,False,True,104573768 -2021,Table 1.2,M,11,tottax,All,1.0,5000.0,False,False,False,73079000 -2021,Table 1.2,L,11,tottax,All,1.0,5000.0,True,False,False,142593 -2021,Table 1.2,M,12,tottax,All,5000.0,10000.0,False,False,False,78223000 -2021,Table 1.2,L,12,tottax,All,5000.0,10000.0,True,False,False,184757 -2021,Table 1.2,M,13,tottax,All,10000.0,15000.0,False,False,False,211113000 -2021,Table 1.2,L,13,tottax,All,10000.0,15000.0,True,False,False,1055682 -2021,Table 1.2,M,14,tottax,All,15000.0,20000.0,False,False,False,1247485000 -2021,Table 1.2,L,14,tottax,All,15000.0,20000.0,True,False,False,3224975 -2021,Table 1.2,M,15,tottax,All,20000.0,25000.0,False,False,False,4047630000 -2021,Table 1.2,L,15,tottax,All,20000.0,25000.0,True,False,False,4511653 -2021,Table 1.2,M,16,tottax,All,25000.0,30000.0,False,False,False,6837046000 -2021,Table 1.2,L,16,tottax,All,25000.0,30000.0,True,False,False,5152142 -2021,Table 1.2,M,17,tottax,All,30000.0,40000.0,False,False,False,21563813000 -2021,Table 1.2,L,17,tottax,All,30000.0,40000.0,True,False,False,10942006 -2021,Table 1.2,M,18,tottax,All,40000.0,50000.0,False,False,False,28872871000 -2021,Table 1.2,L,18,tottax,All,40000.0,50000.0,True,False,False,10179035 -2021,Table 1.2,M,19,tottax,All,50000.0,75000.0,False,False,False,93197007000 -2021,Table 1.2,L,19,tottax,All,50000.0,75000.0,True,False,False,20080197 -2021,Table 1.2,M,20,tottax,All,75000.0,100000.0,False,False,False,105626193000 -2021,Table 1.2,L,20,tottax,All,75000.0,100000.0,True,False,False,13899732 -2021,Table 1.2,M,21,tottax,All,100000.0,200000.0,False,False,False,365196521000 -2021,Table 1.2,L,21,tottax,All,100000.0,200000.0,True,False,False,23680641 -2021,Table 1.2,M,22,tottax,All,200000.0,500000.0,False,False,False,443362161000 -2021,Table 1.2,L,22,tottax,All,200000.0,500000.0,True,False,False,9025608 -2021,Table 1.2,M,23,tottax,All,500000.0,1000000.0,False,False,False,252558323000 -2021,Table 1.2,L,23,tottax,All,500000.0,1000000.0,True,False,False,1615603 -2021,Table 1.2,M,24,tottax,All,1000000.0,1500000.0,False,False,False,119130275000 -2021,Table 1.2,L,24,tottax,All,1000000.0,1500000.0,True,False,False,376495 -2021,Table 1.2,M,25,tottax,All,1500000.0,2000000.0,False,False,False,72721172000 -2021,Table 1.2,L,25,tottax,All,1500000.0,2000000.0,True,False,False,155851 -2021,Table 1.2,M,26,tottax,All,2000000.0,5000000.0,False,False,False,192544953000 -2021,Table 1.2,L,26,tottax,All,2000000.0,5000000.0,True,False,False,233680 -2021,Table 1.2,M,27,tottax,All,5000000.0,10000000.0,False,False,False,118711991000 -2021,Table 1.2,L,27,tottax,All,5000000.0,10000000.0,True,False,False,63373 -2021,Table 1.2,M,28,tottax,All,10000000.0,inf,False,False,False,370181469000 -2021,Table 1.2,L,28,tottax,All,10000000.0,inf,True,False,False,45376 -2021,Table 1.4,BU,10,unemployment_compensation,All,-inf,0.0,False,False,False,1731244000 -2021,Table 1.4,BT,10,unemployment_compensation,All,-inf,0.0,True,False,False,124275 -2021,Table 1.4,BU,9,unemployment_compensation,All,-inf,inf,False,False,True,208872354000 -2021,Table 1.4,BT,9,unemployment_compensation,All,-inf,inf,True,False,True,15809172 -2021,Table 1.4,BU,11,unemployment_compensation,All,1.0,5000.0,False,False,False,1192432000 -2021,Table 1.4,BT,11,unemployment_compensation,All,1.0,5000.0,True,False,False,197448 -2021,Table 1.4,BU,12,unemployment_compensation,All,5000.0,10000.0,False,False,False,3477871000 -2021,Table 1.4,BT,12,unemployment_compensation,All,5000.0,10000.0,True,False,False,466107 -2021,Table 1.4,BU,13,unemployment_compensation,All,10000.0,15000.0,False,False,False,11528307000 -2021,Table 1.4,BT,13,unemployment_compensation,All,10000.0,15000.0,True,False,False,1136775 -2021,Table 1.4,BU,14,unemployment_compensation,All,15000.0,20000.0,False,False,False,24375282000 -2021,Table 1.4,BT,14,unemployment_compensation,All,15000.0,20000.0,True,False,False,1878369 -2021,Table 1.4,BU,15,unemployment_compensation,All,20000.0,25000.0,False,False,False,23100700000 -2021,Table 1.4,BT,15,unemployment_compensation,All,20000.0,25000.0,True,False,False,1642065 -2021,Table 1.4,BU,16,unemployment_compensation,All,25000.0,30000.0,False,False,False,20127231000 -2021,Table 1.4,BT,16,unemployment_compensation,All,25000.0,30000.0,True,False,False,1390637 -2021,Table 1.4,BU,17,unemployment_compensation,All,30000.0,40000.0,False,False,False,29558905000 -2021,Table 1.4,BT,17,unemployment_compensation,All,30000.0,40000.0,True,False,False,2022975 -2021,Table 1.4,BU,18,unemployment_compensation,All,40000.0,50000.0,False,False,False,18740477000 -2021,Table 1.4,BT,18,unemployment_compensation,All,40000.0,50000.0,True,False,False,1312942 -2021,Table 1.4,BU,19,unemployment_compensation,All,50000.0,75000.0,False,False,False,28035317000 -2021,Table 1.4,BT,19,unemployment_compensation,All,50000.0,75000.0,True,False,False,2011827 -2021,Table 1.4,BU,20,unemployment_compensation,All,75000.0,100000.0,False,False,False,17043811000 -2021,Table 1.4,BT,20,unemployment_compensation,All,75000.0,100000.0,True,False,False,1289395 -2021,Table 1.4,BU,21,unemployment_compensation,All,100000.0,200000.0,False,False,False,23285476000 -2021,Table 1.4,BT,21,unemployment_compensation,All,100000.0,200000.0,True,False,False,1840565 -2021,Table 1.4,BU,22,unemployment_compensation,All,200000.0,500000.0,False,False,False,5767497000 -2021,Table 1.4,BT,22,unemployment_compensation,All,200000.0,500000.0,True,False,False,433790 -2021,Table 1.4,BU,23,unemployment_compensation,All,500000.0,1000000.0,False,False,False,694202000 -2021,Table 1.4,BT,23,unemployment_compensation,All,500000.0,1000000.0,True,False,False,47030 -2021,Table 1.4,BU,24,unemployment_compensation,All,1000000.0,1500000.0,False,False,False,113470000 -2021,Table 1.4,BT,24,unemployment_compensation,All,1000000.0,1500000.0,True,False,False,8021 -2021,Table 1.4,BU,25,unemployment_compensation,All,1500000.0,2000000.0,False,False,False,41432000 -2021,Table 1.4,BT,25,unemployment_compensation,All,1500000.0,2000000.0,True,False,False,2944 -2021,Table 1.4,BU,26,unemployment_compensation,All,2000000.0,5000000.0,False,False,False,47162000 -2021,Table 1.4,BT,26,unemployment_compensation,All,2000000.0,5000000.0,True,False,False,3154 -2021,Table 1.4,BU,27,unemployment_compensation,All,5000000.0,10000000.0,False,False,False,7800000 -2021,Table 1.4,BT,27,unemployment_compensation,All,5000000.0,10000000.0,True,False,False,550 -2021,Table 1.4,BU,28,unemployment_compensation,All,10000000.0,inf,False,False,False,3737000 -2021,Table 1.4,BT,28,unemployment_compensation,All,10000000.0,inf,True,False,False,303 -2022,Table 1.1,D,11,adjusted_gross_income,All,-inf,0.0,False,False,False,-164160281000 -2022,Table 1.1,D,10,adjusted_gross_income,All,-inf,inf,False,False,True,14833956956000 -2022,Table 1.1,D,12,adjusted_gross_income,All,1.0,5000.0,False,False,False,19538869000 -2022,Table 1.1,D,13,adjusted_gross_income,All,5000.0,10000.0,False,False,False,66070756000 -2022,Table 1.1,D,14,adjusted_gross_income,All,10000.0,15000.0,False,False,False,120502825000 -2022,Table 1.1,D,15,adjusted_gross_income,All,15000.0,20000.0,False,False,False,157738693000 -2022,Table 1.1,D,16,adjusted_gross_income,All,20000.0,25000.0,False,False,False,180311082000 -2022,Table 1.1,D,17,adjusted_gross_income,All,25000.0,30000.0,False,False,False,219958083000 -2022,Table 1.2,C,17,adjusted_gross_income,All,30000.0,40000.0,False,False,False,550490149000 -2022,Table 1.1,D,18,adjusted_gross_income,All,30000.0,40000.0,False,False,False,550490150000 -2022,Table 1.1,D,19,adjusted_gross_income,All,40000.0,50000.0,False,False,False,593955496000 -2022,Table 1.1,D,20,adjusted_gross_income,All,50000.0,75000.0,False,False,False,1466486055000 -2022,Table 1.1,D,21,adjusted_gross_income,All,75000.0,100000.0,False,False,False,1315619561000 -2022,Table 1.1,D,22,adjusted_gross_income,All,100000.0,200000.0,False,False,False,3567047571000 -2022,Table 1.1,D,23,adjusted_gross_income,All,200000.0,500000.0,False,False,False,2891064828000 -2022,Table 1.1,D,24,adjusted_gross_income,All,500000.0,1000000.0,False,False,False,1124299469000 -2022,Table 1.1,D,25,adjusted_gross_income,All,1000000.0,1500000.0,False,False,False,435177502000 -2022,Table 1.1,D,26,adjusted_gross_income,All,1500000.0,2000000.0,False,False,False,254476785000 -2022,Table 1.1,D,27,adjusted_gross_income,All,2000000.0,5000000.0,False,False,False,621044404000 -2022,Table 1.1,D,28,adjusted_gross_income,All,5000000.0,10000000.0,False,False,False,362815724000 -2022,Table 1.1,D,29,adjusted_gross_income,All,10000000.0,inf,False,False,False,1051519384000 -2022,Table 1.2,AM,10,adjusted_gross_income,Head of Household,-inf,0.0,False,False,False,-4930197000 -2022,Table 1.2,AM,9,adjusted_gross_income,Head of Household,-inf,inf,False,False,False,1097074146000 -2022,Table 1.2,AM,11,adjusted_gross_income,Head of Household,1.0,5000.0,False,False,False,1228387000 -2022,Table 1.2,AM,12,adjusted_gross_income,Head of Household,5000.0,10000.0,False,False,False,6293814000 -2022,Table 1.2,AM,13,adjusted_gross_income,Head of Household,10000.0,15000.0,False,False,False,21033971000 -2022,Table 1.2,AM,14,adjusted_gross_income,Head of Household,15000.0,20000.0,False,False,False,35834809000 -2022,Table 1.2,AM,15,adjusted_gross_income,Head of Household,20000.0,25000.0,False,False,False,37385369000 -2022,Table 1.2,AM,16,adjusted_gross_income,Head of Household,25000.0,30000.0,False,False,False,46606455000 -2022,Table 1.2,AM,17,adjusted_gross_income,Head of Household,30000.0,40000.0,False,False,False,118348139000 -2022,Table 1.2,AM,18,adjusted_gross_income,Head of Household,40000.0,50000.0,False,False,False,109641166000 -2022,Table 1.2,AM,19,adjusted_gross_income,Head of Household,50000.0,75000.0,False,False,False,212385442000 -2022,Table 1.2,AM,20,adjusted_gross_income,Head of Household,75000.0,100000.0,False,False,False,134708572000 -2022,Table 1.2,AM,21,adjusted_gross_income,Head of Household,100000.0,200000.0,False,False,False,199598735000 -2022,Table 1.2,AM,22,adjusted_gross_income,Head of Household,200000.0,500000.0,False,False,False,78908442000 -2022,Table 1.2,AM,23,adjusted_gross_income,Head of Household,500000.0,1000000.0,False,False,False,30309857000 -2022,Table 1.2,AM,24,adjusted_gross_income,Head of Household,1000000.0,1500000.0,False,False,False,11099083000 -2022,Table 1.2,AM,25,adjusted_gross_income,Head of Household,1500000.0,2000000.0,False,False,False,6128994000 -2022,Table 1.2,AM,26,adjusted_gross_income,Head of Household,2000000.0,5000000.0,False,False,False,14984657000 -2022,Table 1.2,AM,27,adjusted_gross_income,Head of Household,5000000.0,10000000.0,False,False,False,8861342000 -2022,Table 1.2,AM,28,adjusted_gross_income,Head of Household,10000000.0,inf,False,False,False,28647107000 -2022,Table 1.2,O,10,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,-inf,0.0,False,False,False,-97857692000 -2022,Table 1.2,O,9,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,-inf,inf,False,False,False,9329885992000 -2022,Table 1.2,O,11,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,1.0,5000.0,False,False,False,1635886000 -2022,Table 1.2,O,12,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,5000.0,10000.0,False,False,False,5663247000 -2022,Table 1.2,O,13,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,10000.0,15000.0,False,False,False,12018239000 -2022,Table 1.2,O,14,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,15000.0,20000.0,False,False,False,18659337000 -2022,Table 1.2,O,15,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,20000.0,25000.0,False,False,False,25700695000 -2022,Table 1.2,O,16,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,25000.0,30000.0,False,False,False,35469300000 -2022,Table 1.2,O,17,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,30000.0,40000.0,False,False,False,94270098000 -2022,Table 1.2,O,18,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,40000.0,50000.0,False,False,False,122225672000 -2022,Table 1.2,O,19,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,50000.0,75000.0,False,False,False,446675368000 -2022,Table 1.2,O,20,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,75000.0,100000.0,False,False,False,641738206000 -2022,Table 1.2,O,21,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,100000.0,200000.0,False,False,False,2538317587000 -2022,Table 1.2,O,22,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,200000.0,500000.0,False,False,False,2377873755000 -2022,Table 1.2,O,23,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,500000.0,1000000.0,False,False,False,945135321000 -2022,Table 1.2,O,24,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,1000000.0,1500000.0,False,False,False,367071380000 -2022,Table 1.2,O,25,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,1500000.0,2000000.0,False,False,False,212759924000 -2022,Table 1.2,O,26,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,2000000.0,5000000.0,False,False,False,508979071000 -2022,Table 1.2,O,27,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,5000000.0,10000000.0,False,False,False,295179490000 -2022,Table 1.2,O,28,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,10000000.0,inf,False,False,False,778371107000 -2022,Table 1.2,AA,10,adjusted_gross_income,Married Filing Separately,-inf,0.0,False,False,False,-9626067000 -2022,Table 1.2,AA,9,adjusted_gross_income,Married Filing Separately,-inf,inf,False,False,False,365129451000 -2022,Table 1.2,AA,11,adjusted_gross_income,Married Filing Separately,1.0,5000.0,False,False,False,266908000 -2022,Table 1.2,AA,12,adjusted_gross_income,Married Filing Separately,5000.0,10000.0,False,False,False,1133437000 -2022,Table 1.2,AA,13,adjusted_gross_income,Married Filing Separately,10000.0,15000.0,False,False,False,2034607000 -2022,Table 1.2,AA,14,adjusted_gross_income,Married Filing Separately,15000.0,20000.0,False,False,False,2564977000 -2022,Table 1.2,AA,15,adjusted_gross_income,Married Filing Separately,20000.0,25000.0,False,False,False,4152375000 -2022,Table 1.2,AA,16,adjusted_gross_income,Married Filing Separately,25000.0,30000.0,False,False,False,5936278000 -2022,Table 1.2,AA,17,adjusted_gross_income,Married Filing Separately,30000.0,40000.0,False,False,False,15648673000 -2022,Table 1.2,AA,18,adjusted_gross_income,Married Filing Separately,40000.0,50000.0,False,False,False,23642616000 -2022,Table 1.2,AA,19,adjusted_gross_income,Married Filing Separately,50000.0,75000.0,False,False,False,53764184000 -2022,Table 1.2,AA,20,adjusted_gross_income,Married Filing Separately,75000.0,100000.0,False,False,False,35334473000 -2022,Table 1.2,AA,21,adjusted_gross_income,Married Filing Separately,100000.0,200000.0,False,False,False,60341658000 -2022,Table 1.2,AA,22,adjusted_gross_income,Married Filing Separately,200000.0,500000.0,False,False,False,32638692000 -2022,Table 1.2,AA,23,adjusted_gross_income,Married Filing Separately,500000.0,1000000.0,False,False,False,14725478000 -2022,Table 1.2,AA,24,adjusted_gross_income,Married Filing Separately,1000000.0,1500000.0,False,False,False,7498985000 -2022,Table 1.2,AA,25,adjusted_gross_income,Married Filing Separately,1500000.0,2000000.0,False,False,False,4847219000 -2022,Table 1.2,AA,26,adjusted_gross_income,Married Filing Separately,2000000.0,5000000.0,False,False,False,15401979000 -2022,Table 1.2,AA,27,adjusted_gross_income,Married Filing Separately,5000000.0,10000000.0,False,False,False,11544457000 -2022,Table 1.2,AA,28,adjusted_gross_income,Married Filing Separately,10000000.0,inf,False,False,False,83278521000 -2022,Table 1.2,AY,10,adjusted_gross_income,Single,-inf,0.0,False,False,False,-51746325000 -2022,Table 1.2,AY,9,adjusted_gross_income,Single,-inf,inf,False,False,False,4041867367000 -2022,Table 1.2,AY,11,adjusted_gross_income,Single,1.0,5000.0,False,False,False,16407688000 -2022,Table 1.2,AY,12,adjusted_gross_income,Single,5000.0,10000.0,False,False,False,52980258000 -2022,Table 1.2,AY,13,adjusted_gross_income,Single,10000.0,15000.0,False,False,False,85416008000 -2022,Table 1.2,AY,14,adjusted_gross_income,Single,15000.0,20000.0,False,False,False,100679569000 -2022,Table 1.2,AY,15,adjusted_gross_income,Single,20000.0,25000.0,False,False,False,113072643000 -2022,Table 1.2,AY,16,adjusted_gross_income,Single,25000.0,30000.0,False,False,False,131946049000 -2022,Table 1.2,AY,17,adjusted_gross_income,Single,30000.0,40000.0,False,False,False,322223239000 -2022,Table 1.2,AY,18,adjusted_gross_income,Single,40000.0,50000.0,False,False,False,338446043000 -2022,Table 1.2,AY,19,adjusted_gross_income,Single,50000.0,75000.0,False,False,False,753661060000 -2022,Table 1.2,AY,20,adjusted_gross_income,Single,75000.0,100000.0,False,False,False,503838311000 -2022,Table 1.2,AY,21,adjusted_gross_income,Single,100000.0,200000.0,False,False,False,768789591000 -2022,Table 1.2,AY,22,adjusted_gross_income,Single,200000.0,500000.0,False,False,False,401643939000 -2022,Table 1.2,AY,23,adjusted_gross_income,Single,500000.0,1000000.0,False,False,False,134128813000 -2022,Table 1.2,AY,24,adjusted_gross_income,Single,1000000.0,1500000.0,False,False,False,49508054000 -2022,Table 1.2,AY,25,adjusted_gross_income,Single,1500000.0,2000000.0,False,False,False,30740648000 -2022,Table 1.2,AY,26,adjusted_gross_income,Single,2000000.0,5000000.0,False,False,False,81678697000 -2022,Table 1.2,AY,27,adjusted_gross_income,Single,5000000.0,10000000.0,False,False,False,47230435000 -2022,Table 1.2,AY,28,adjusted_gross_income,Single,10000000.0,inf,False,False,False,161222649000 -2022,Table 1.4,EO,10,alternative_minimum_tax,All,-inf,0.0,False,False,False,139579000 -2022,Table 1.4,EN,10,alternative_minimum_tax,All,-inf,0.0,True,False,False,4127 -2022,Table 1.4,EO,9,alternative_minimum_tax,All,-inf,inf,False,False,True,4101697000 -2022,Table 1.4,EN,9,alternative_minimum_tax,All,-inf,inf,True,False,True,198059 -2022,Table 1.4,EO,11,alternative_minimum_tax,All,1.0,5000.0,False,False,False,8860000 -2022,Table 1.4,EN,11,alternative_minimum_tax,All,1.0,5000.0,True,False,False,1024 -2022,Table 1.4,EO,12,alternative_minimum_tax,All,5000.0,10000.0,False,False,False,0 -2022,Table 1.4,EN,12,alternative_minimum_tax,All,5000.0,10000.0,True,False,False,0 -2022,Table 1.4,EO,13,alternative_minimum_tax,All,10000.0,15000.0,False,False,False,9869000 -2022,Table 1.4,EN,13,alternative_minimum_tax,All,10000.0,15000.0,True,False,False,1169 -2022,Table 1.4,EO,14,alternative_minimum_tax,All,15000.0,20000.0,False,False,False,0 -2022,Table 1.4,EN,14,alternative_minimum_tax,All,15000.0,20000.0,True,False,False,0 -2022,Table 1.4,EO,15,alternative_minimum_tax,All,20000.0,25000.0,False,False,False,13243000 -2022,Table 1.4,EN,15,alternative_minimum_tax,All,20000.0,25000.0,True,False,False,68 -2022,Table 1.4,EO,16,alternative_minimum_tax,All,25000.0,30000.0,False,False,False,191000 -2022,Table 1.4,EN,16,alternative_minimum_tax,All,25000.0,30000.0,True,False,False,209 -2022,Table 1.4,EO,17,alternative_minimum_tax,All,30000.0,40000.0,False,False,False,1315000 -2022,Table 1.4,EN,17,alternative_minimum_tax,All,30000.0,40000.0,True,False,False,766 -2022,Table 1.4,EO,18,alternative_minimum_tax,All,40000.0,50000.0,False,False,False,2761000 -2022,Table 1.4,EN,18,alternative_minimum_tax,All,40000.0,50000.0,True,False,False,463 -2022,Table 1.4,EO,19,alternative_minimum_tax,All,50000.0,75000.0,False,False,False,4554000 -2022,Table 1.4,EN,19,alternative_minimum_tax,All,50000.0,75000.0,True,False,False,509 -2022,Table 1.4,EO,20,alternative_minimum_tax,All,75000.0,100000.0,False,False,False,28095000 -2022,Table 1.4,EN,20,alternative_minimum_tax,All,75000.0,100000.0,True,False,False,2039 -2022,Table 1.4,EO,21,alternative_minimum_tax,All,100000.0,200000.0,False,False,False,110219000 -2022,Table 1.4,EN,21,alternative_minimum_tax,All,100000.0,200000.0,True,False,False,15081 -2022,Table 1.4,EO,22,alternative_minimum_tax,All,200000.0,500000.0,False,False,False,695476000 -2022,Table 1.4,EN,22,alternative_minimum_tax,All,200000.0,500000.0,True,False,False,39907 -2022,Table 1.4,EO,23,alternative_minimum_tax,All,500000.0,1000000.0,False,False,False,641456000 -2022,Table 1.4,EN,23,alternative_minimum_tax,All,500000.0,1000000.0,True,False,False,31511 -2022,Table 1.4,EO,24,alternative_minimum_tax,All,1000000.0,1500000.0,False,False,False,518268000 -2022,Table 1.4,EN,24,alternative_minimum_tax,All,1000000.0,1500000.0,True,False,False,27826 -2022,Table 1.4,EO,25,alternative_minimum_tax,All,1500000.0,2000000.0,False,False,False,476876000 -2022,Table 1.4,EN,25,alternative_minimum_tax,All,1500000.0,2000000.0,True,False,False,23214 -2022,Table 1.4,EO,26,alternative_minimum_tax,All,2000000.0,5000000.0,False,False,False,739425000 -2022,Table 1.4,EN,26,alternative_minimum_tax,All,2000000.0,5000000.0,True,False,False,35322 -2022,Table 1.4,EO,27,alternative_minimum_tax,All,5000000.0,10000000.0,False,False,False,239748000 -2022,Table 1.4,EN,27,alternative_minimum_tax,All,5000000.0,10000000.0,True,False,False,8587 -2022,Table 1.4,EO,28,alternative_minimum_tax,All,10000000.0,inf,False,False,False,471761000 -2022,Table 1.4,EN,28,alternative_minimum_tax,All,10000000.0,inf,True,False,False,6237 -2022,Table 1.4,AI,10,business_net_losses,All,-inf,0.0,False,False,False,24055163000 -2022,Table 1.4,AH,10,business_net_losses,All,-inf,0.0,True,False,False,602612 -2022,Table 1.4,AI,9,business_net_losses,All,-inf,inf,False,False,True,133172174000 -2022,Table 1.4,AH,9,business_net_losses,All,-inf,inf,True,False,True,8386569 -2022,Table 1.4,AI,11,business_net_losses,All,1.0,5000.0,False,False,False,1243038000 -2022,Table 1.4,AH,11,business_net_losses,All,1.0,5000.0,True,False,False,129781 -2022,Table 1.4,AI,12,business_net_losses,All,5000.0,10000.0,False,False,False,3390070000 -2022,Table 1.4,AH,12,business_net_losses,All,5000.0,10000.0,True,False,False,252209 -2022,Table 1.4,AI,13,business_net_losses,All,10000.0,15000.0,False,False,False,4750759000 -2022,Table 1.4,AH,13,business_net_losses,All,10000.0,15000.0,True,False,False,371397 -2022,Table 1.4,AI,14,business_net_losses,All,15000.0,20000.0,False,False,False,6523057000 -2022,Table 1.4,AH,14,business_net_losses,All,15000.0,20000.0,True,False,False,444902 -2022,Table 1.4,AI,15,business_net_losses,All,20000.0,25000.0,False,False,False,6844014000 -2022,Table 1.4,AH,15,business_net_losses,All,20000.0,25000.0,True,False,False,479727 -2022,Table 1.4,AI,16,business_net_losses,All,25000.0,30000.0,False,False,False,6144470000 -2022,Table 1.4,AH,16,business_net_losses,All,25000.0,30000.0,True,False,False,459319 -2022,Table 1.4,AI,17,business_net_losses,All,30000.0,40000.0,False,False,False,10660469000 -2022,Table 1.4,AH,17,business_net_losses,All,30000.0,40000.0,True,False,False,820104 -2022,Table 1.4,AI,18,business_net_losses,All,40000.0,50000.0,False,False,False,7999679000 -2022,Table 1.4,AH,18,business_net_losses,All,40000.0,50000.0,True,False,False,617875 -2022,Table 1.4,AI,19,business_net_losses,All,50000.0,75000.0,False,False,False,11430440000 -2022,Table 1.4,AH,19,business_net_losses,All,50000.0,75000.0,True,False,False,1150596 -2022,Table 1.4,AI,20,business_net_losses,All,75000.0,100000.0,False,False,False,8340188000 -2022,Table 1.4,AH,20,business_net_losses,All,75000.0,100000.0,True,False,False,806887 -2022,Table 1.4,AI,21,business_net_losses,All,100000.0,200000.0,False,False,False,17942473000 -2022,Table 1.4,AH,21,business_net_losses,All,100000.0,200000.0,True,False,False,1501233 -2022,Table 1.4,AI,22,business_net_losses,All,200000.0,500000.0,False,False,False,10344497000 -2022,Table 1.4,AH,22,business_net_losses,All,200000.0,500000.0,True,False,False,589269 -2022,Table 1.4,AI,23,business_net_losses,All,500000.0,1000000.0,False,False,False,3813934000 -2022,Table 1.4,AH,23,business_net_losses,All,500000.0,1000000.0,True,False,False,105357 -2022,Table 1.4,AI,24,business_net_losses,All,1000000.0,1500000.0,False,False,False,1560220000 -2022,Table 1.4,AH,24,business_net_losses,All,1000000.0,1500000.0,True,False,False,23767 -2022,Table 1.4,AI,25,business_net_losses,All,1500000.0,2000000.0,False,False,False,961547000 -2022,Table 1.4,AH,25,business_net_losses,All,1500000.0,2000000.0,True,False,False,9380 -2022,Table 1.4,AI,26,business_net_losses,All,2000000.0,5000000.0,False,False,False,2413058000 -2022,Table 1.4,AH,26,business_net_losses,All,2000000.0,5000000.0,True,False,False,14471 -2022,Table 1.4,AI,27,business_net_losses,All,5000000.0,10000000.0,False,False,False,1394148000 -2022,Table 1.4,AH,27,business_net_losses,All,5000000.0,10000000.0,True,False,False,4170 -2022,Table 1.4,AI,28,business_net_losses,All,10000000.0,inf,False,False,False,3360952000 -2022,Table 1.4,AH,28,business_net_losses,All,10000000.0,inf,True,False,False,3512 -2022,Table 1.4,AG,10,business_net_profits,All,-inf,0.0,False,False,False,4257779000 -2022,Table 1.4,AF,10,business_net_profits,All,-inf,0.0,True,False,False,196114 -2022,Table 1.4,AG,9,business_net_profits,All,-inf,inf,False,False,True,543564980000 -2022,Table 1.4,AF,9,business_net_profits,All,-inf,inf,True,False,True,21969832 -2022,Table 1.4,AG,11,business_net_profits,All,1.0,5000.0,False,False,False,4846784000 -2022,Table 1.4,AF,11,business_net_profits,All,1.0,5000.0,True,False,False,1751591 -2022,Table 1.4,AG,12,business_net_profits,All,5000.0,10000.0,False,False,False,10536163000 -2022,Table 1.4,AF,12,business_net_profits,All,5000.0,10000.0,True,False,False,1561927 -2022,Table 1.4,AG,13,business_net_profits,All,10000.0,15000.0,False,False,False,23775556000 -2022,Table 1.4,AF,13,business_net_profits,All,10000.0,15000.0,True,False,False,2288452 -2022,Table 1.4,AG,14,business_net_profits,All,15000.0,20000.0,False,False,False,25668295000 -2022,Table 1.4,AF,14,business_net_profits,All,15000.0,20000.0,True,False,False,1919766 -2022,Table 1.4,AG,15,business_net_profits,All,20000.0,25000.0,False,False,False,17560336000 -2022,Table 1.4,AF,15,business_net_profits,All,20000.0,25000.0,True,False,False,1153051 -2022,Table 1.4,AG,16,business_net_profits,All,25000.0,30000.0,False,False,False,16468043000 -2022,Table 1.4,AF,16,business_net_profits,All,25000.0,30000.0,True,False,False,962362 -2022,Table 1.4,AG,17,business_net_profits,All,30000.0,40000.0,False,False,False,28615046000 -2022,Table 1.4,AF,17,business_net_profits,All,30000.0,40000.0,True,False,False,1538395 -2022,Table 1.4,AG,18,business_net_profits,All,40000.0,50000.0,False,False,False,23231693000 -2022,Table 1.4,AF,18,business_net_profits,All,40000.0,50000.0,True,False,False,1243032 -2022,Table 1.4,AG,19,business_net_profits,All,50000.0,75000.0,False,False,False,45622131000 -2022,Table 1.4,AF,19,business_net_profits,All,50000.0,75000.0,True,False,False,2292029 -2022,Table 1.4,AG,20,business_net_profits,All,75000.0,100000.0,False,False,False,37229434000 -2022,Table 1.4,AF,20,business_net_profits,All,75000.0,100000.0,True,False,False,1647929 -2022,Table 1.4,AG,21,business_net_profits,All,100000.0,200000.0,False,False,False,102878354000 -2022,Table 1.4,AF,21,business_net_profits,All,100000.0,200000.0,True,False,False,3325549 -2022,Table 1.4,AG,22,business_net_profits,All,200000.0,500000.0,False,False,False,103480907000 -2022,Table 1.4,AF,22,business_net_profits,All,200000.0,500000.0,True,False,False,1614884 -2022,Table 1.4,AG,23,business_net_profits,All,500000.0,1000000.0,False,False,False,43196167000 -2022,Table 1.4,AF,23,business_net_profits,All,500000.0,1000000.0,True,False,False,316777 -2022,Table 1.4,AG,24,business_net_profits,All,1000000.0,1500000.0,False,False,False,15635538000 -2022,Table 1.4,AF,24,business_net_profits,All,1000000.0,1500000.0,True,False,False,71381 -2022,Table 1.4,AG,25,business_net_profits,All,1500000.0,2000000.0,False,False,False,8068249000 -2022,Table 1.4,AF,25,business_net_profits,All,1500000.0,2000000.0,True,False,False,30837 -2022,Table 1.4,AG,26,business_net_profits,All,2000000.0,5000000.0,False,False,False,15476265000 -2022,Table 1.4,AF,26,business_net_profits,All,2000000.0,5000000.0,True,False,False,39323 -2022,Table 1.4,AG,27,business_net_profits,All,5000000.0,10000000.0,False,False,False,6585206000 -2022,Table 1.4,AF,27,business_net_profits,All,5000000.0,10000000.0,True,False,False,9772 -2022,Table 1.4,AG,28,business_net_profits,All,10000000.0,inf,False,False,False,10433033000 -2022,Table 1.4,AF,28,business_net_profits,All,10000000.0,inf,True,False,False,6659 -2022,Table 1.4,AK,10,capital_gains_distributions,All,-inf,0.0,False,False,False,88131000 -2022,Table 1.4,AJ,10,capital_gains_distributions,All,-inf,0.0,True,False,False,27012 -2022,Table 1.4,AK,9,capital_gains_distributions,All,-inf,inf,False,False,True,12863423000 -2022,Table 1.4,AJ,9,capital_gains_distributions,All,-inf,inf,True,False,True,3980047 -2022,Table 1.4,AK,11,capital_gains_distributions,All,1.0,5000.0,False,False,False,86558000 -2022,Table 1.4,AJ,11,capital_gains_distributions,All,1.0,5000.0,True,False,False,132582 -2022,Table 1.4,AK,12,capital_gains_distributions,All,5000.0,10000.0,False,False,False,182403000 -2022,Table 1.4,AJ,12,capital_gains_distributions,All,5000.0,10000.0,True,False,False,130890 -2022,Table 1.4,AK,13,capital_gains_distributions,All,10000.0,15000.0,False,False,False,188178000 -2022,Table 1.4,AJ,13,capital_gains_distributions,All,10000.0,15000.0,True,False,False,106473 -2022,Table 1.4,AK,14,capital_gains_distributions,All,15000.0,20000.0,False,False,False,215886000 -2022,Table 1.4,AJ,14,capital_gains_distributions,All,15000.0,20000.0,True,False,False,111615 -2022,Table 1.4,AK,15,capital_gains_distributions,All,20000.0,25000.0,False,False,False,154072000 -2022,Table 1.4,AJ,15,capital_gains_distributions,All,20000.0,25000.0,True,False,False,99575 -2022,Table 1.4,AK,16,capital_gains_distributions,All,25000.0,30000.0,False,False,False,185113000 -2022,Table 1.4,AJ,16,capital_gains_distributions,All,25000.0,30000.0,True,False,False,94978 -2022,Table 1.4,AK,17,capital_gains_distributions,All,30000.0,40000.0,False,False,False,421788000 -2022,Table 1.4,AJ,17,capital_gains_distributions,All,30000.0,40000.0,True,False,False,222677 -2022,Table 1.4,AK,18,capital_gains_distributions,All,40000.0,50000.0,False,False,False,308187000 -2022,Table 1.4,AJ,18,capital_gains_distributions,All,40000.0,50000.0,True,False,False,191959 -2022,Table 1.4,AK,19,capital_gains_distributions,All,50000.0,75000.0,False,False,False,1186628000 -2022,Table 1.4,AJ,19,capital_gains_distributions,All,50000.0,75000.0,True,False,False,546979 -2022,Table 1.4,AK,20,capital_gains_distributions,All,75000.0,100000.0,False,False,False,1359330000 -2022,Table 1.4,AJ,20,capital_gains_distributions,All,75000.0,100000.0,True,False,False,523797 -2022,Table 1.4,AK,21,capital_gains_distributions,All,100000.0,200000.0,False,False,False,4073791000 -2022,Table 1.4,AJ,21,capital_gains_distributions,All,100000.0,200000.0,True,False,False,1191091 -2022,Table 1.4,AK,22,capital_gains_distributions,All,200000.0,500000.0,False,False,False,3461697000 -2022,Table 1.4,AJ,22,capital_gains_distributions,All,200000.0,500000.0,True,False,False,522256 -2022,Table 1.4,AK,23,capital_gains_distributions,All,500000.0,1000000.0,False,False,False,951661000 -2022,Table 1.4,AJ,23,capital_gains_distributions,All,500000.0,1000000.0,True,False,False,78163 -2022,Table 1.4,AK,24,capital_gains_distributions,All,1000000.0,1500000.0,False,False,False,0 -2022,Table 1.4,AJ,24,capital_gains_distributions,All,1000000.0,1500000.0,True,False,False,0 -2022,Table 1.4,AK,25,capital_gains_distributions,All,1500000.0,2000000.0,False,False,False,0 -2022,Table 1.4,AJ,25,capital_gains_distributions,All,1500000.0,2000000.0,True,False,False,0 -2022,Table 1.4,AK,26,capital_gains_distributions,All,2000000.0,5000000.0,False,False,False,0 -2022,Table 1.4,AJ,26,capital_gains_distributions,All,2000000.0,5000000.0,True,False,False,0 -2022,Table 1.4,AK,27,capital_gains_distributions,All,5000000.0,10000000.0,False,False,False,0 -2022,Table 1.4,AJ,27,capital_gains_distributions,All,5000000.0,10000000.0,True,False,False,0 -2022,Table 1.4,AK,28,capital_gains_distributions,All,10000000.0,inf,False,False,False,0 -2022,Table 1.4,AJ,28,capital_gains_distributions,All,10000000.0,inf,True,False,False,0 -2022,Table 1.4,AM,10,capital_gains_gross,All,-inf,0.0,False,False,False,15131125000 -2022,Table 1.4,AL,10,capital_gains_gross,All,-inf,0.0,True,False,False,149100 -2022,Table 1.4,AM,9,capital_gains_gross,All,-inf,inf,False,False,True,1269785083000 -2022,Table 1.4,AL,9,capital_gains_gross,All,-inf,inf,True,False,True,12915122 -2022,Table 1.4,AM,11,capital_gains_gross,All,1.0,5000.0,False,False,False,655402000 -2022,Table 1.4,AL,11,capital_gains_gross,All,1.0,5000.0,True,False,False,220363 -2022,Table 1.4,AM,12,capital_gains_gross,All,5000.0,10000.0,False,False,False,1075066000 -2022,Table 1.4,AL,12,capital_gains_gross,All,5000.0,10000.0,True,False,False,229680 -2022,Table 1.4,AM,13,capital_gains_gross,All,10000.0,15000.0,False,False,False,1256699000 -2022,Table 1.4,AL,13,capital_gains_gross,All,10000.0,15000.0,True,False,False,242744 -2022,Table 1.4,AM,14,capital_gains_gross,All,15000.0,20000.0,False,False,False,1258729000 -2022,Table 1.4,AL,14,capital_gains_gross,All,15000.0,20000.0,True,False,False,230900 -2022,Table 1.4,AM,15,capital_gains_gross,All,20000.0,25000.0,False,False,False,1537561000 -2022,Table 1.4,AL,15,capital_gains_gross,All,20000.0,25000.0,True,False,False,253315 -2022,Table 1.4,AM,16,capital_gains_gross,All,25000.0,30000.0,False,False,False,1784653000 -2022,Table 1.4,AL,16,capital_gains_gross,All,25000.0,30000.0,True,False,False,225968 -2022,Table 1.4,AM,17,capital_gains_gross,All,30000.0,40000.0,False,False,False,3981590000 -2022,Table 1.4,AL,17,capital_gains_gross,All,30000.0,40000.0,True,False,False,482246 -2022,Table 1.4,AM,18,capital_gains_gross,All,40000.0,50000.0,False,False,False,3384009000 -2022,Table 1.4,AL,18,capital_gains_gross,All,40000.0,50000.0,True,False,False,527948 -2022,Table 1.4,AM,19,capital_gains_gross,All,50000.0,75000.0,False,False,False,13328918000 -2022,Table 1.4,AL,19,capital_gains_gross,All,50000.0,75000.0,True,False,False,1476041 -2022,Table 1.4,AM,20,capital_gains_gross,All,75000.0,100000.0,False,False,False,14586283000 -2022,Table 1.4,AL,20,capital_gains_gross,All,75000.0,100000.0,True,False,False,1307848 -2022,Table 1.4,AM,21,capital_gains_gross,All,100000.0,200000.0,False,False,False,69765168000 -2022,Table 1.4,AL,21,capital_gains_gross,All,100000.0,200000.0,True,False,False,3616111 -2022,Table 1.4,AM,22,capital_gains_gross,All,200000.0,500000.0,False,False,False,150434000000 -2022,Table 1.4,AL,22,capital_gains_gross,All,200000.0,500000.0,True,False,False,2796324 -2022,Table 1.4,AM,23,capital_gains_gross,All,500000.0,1000000.0,False,False,False,122254903000 -2022,Table 1.4,AL,23,capital_gains_gross,All,500000.0,1000000.0,True,False,False,716042 -2022,Table 1.4,AM,24,capital_gains_gross,All,1000000.0,1500000.0,False,False,False,68052040000 -2022,Table 1.4,AL,24,capital_gains_gross,All,1000000.0,1500000.0,True,False,False,183121 -2022,Table 1.4,AM,25,capital_gains_gross,All,1500000.0,2000000.0,False,False,False,45324707000 -2022,Table 1.4,AL,25,capital_gains_gross,All,1500000.0,2000000.0,True,False,False,79790 -2022,Table 1.4,AM,26,capital_gains_gross,All,2000000.0,5000000.0,False,False,False,145075477000 -2022,Table 1.4,AL,26,capital_gains_gross,All,2000000.0,5000000.0,True,False,False,119204 -2022,Table 1.4,AM,27,capital_gains_gross,All,5000000.0,10000000.0,False,False,False,109907460000 -2022,Table 1.4,AL,27,capital_gains_gross,All,5000000.0,10000000.0,True,False,False,33310 -2022,Table 1.4,AM,28,capital_gains_gross,All,10000000.0,inf,False,False,False,500991294000 -2022,Table 1.4,AL,28,capital_gains_gross,All,10000000.0,inf,True,False,False,25066 -2022,Table 1.4,AO,10,capital_gains_losses,All,-inf,0.0,False,False,False,1236717000 -2022,Table 1.4,AN,10,capital_gains_losses,All,-inf,0.0,True,False,False,498407 -2022,Table 1.4,AO,9,capital_gains_losses,All,-inf,inf,False,False,True,28874408000 -2022,Table 1.4,AN,9,capital_gains_losses,All,-inf,inf,True,False,True,13565876 -2022,Table 1.4,AO,11,capital_gains_losses,All,1.0,5000.0,False,False,False,734893000 -2022,Table 1.4,AN,11,capital_gains_losses,All,1.0,5000.0,True,False,False,392041 -2022,Table 1.4,AO,12,capital_gains_losses,All,5000.0,10000.0,False,False,False,658940000 -2022,Table 1.4,AN,12,capital_gains_losses,All,5000.0,10000.0,True,False,False,341472 -2022,Table 1.4,AO,13,capital_gains_losses,All,10000.0,15000.0,False,False,False,658840000 -2022,Table 1.4,AN,13,capital_gains_losses,All,10000.0,15000.0,True,False,False,360608 -2022,Table 1.4,AO,14,capital_gains_losses,All,15000.0,20000.0,False,False,False,590974000 -2022,Table 1.4,AN,14,capital_gains_losses,All,15000.0,20000.0,True,False,False,290222 -2022,Table 1.4,AO,15,capital_gains_losses,All,20000.0,25000.0,False,False,False,564018000 -2022,Table 1.4,AN,15,capital_gains_losses,All,20000.0,25000.0,True,False,False,302514 -2022,Table 1.4,AO,16,capital_gains_losses,All,25000.0,30000.0,False,False,False,581279000 -2022,Table 1.4,AN,16,capital_gains_losses,All,25000.0,30000.0,True,False,False,301308 -2022,Table 1.4,AO,17,capital_gains_losses,All,30000.0,40000.0,False,False,False,1232466000 -2022,Table 1.4,AN,17,capital_gains_losses,All,30000.0,40000.0,True,False,False,628156 -2022,Table 1.4,AO,18,capital_gains_losses,All,40000.0,50000.0,False,False,False,1246685000 -2022,Table 1.4,AN,18,capital_gains_losses,All,40000.0,50000.0,True,False,False,642162 -2022,Table 1.4,AO,19,capital_gains_losses,All,50000.0,75000.0,False,False,False,3057870000 -2022,Table 1.4,AN,19,capital_gains_losses,All,50000.0,75000.0,True,False,False,1560956 -2022,Table 1.4,AO,20,capital_gains_losses,All,75000.0,100000.0,False,False,False,2905088000 -2022,Table 1.4,AN,20,capital_gains_losses,All,75000.0,100000.0,True,False,False,1406649 -2022,Table 1.4,AO,21,capital_gains_losses,All,100000.0,200000.0,False,False,False,7466456000 -2022,Table 1.4,AN,21,capital_gains_losses,All,100000.0,200000.0,True,False,False,3526750 -2022,Table 1.4,AO,22,capital_gains_losses,All,200000.0,500000.0,False,False,False,5705378000 -2022,Table 1.4,AN,22,capital_gains_losses,All,200000.0,500000.0,True,False,False,2479090 -2022,Table 1.4,AO,23,capital_gains_losses,All,500000.0,1000000.0,False,False,False,1467163000 -2022,Table 1.4,AN,23,capital_gains_losses,All,500000.0,1000000.0,True,False,False,561543 -2022,Table 1.4,AO,24,capital_gains_losses,All,1000000.0,1500000.0,False,False,False,350146000 -2022,Table 1.4,AN,24,capital_gains_losses,All,1000000.0,1500000.0,True,False,False,126982 -2022,Table 1.4,AO,25,capital_gains_losses,All,1500000.0,2000000.0,False,False,False,143678000 -2022,Table 1.4,AN,25,capital_gains_losses,All,1500000.0,2000000.0,True,False,False,51411 -2022,Table 1.4,AO,26,capital_gains_losses,All,2000000.0,5000000.0,False,False,False,200629000 -2022,Table 1.4,AN,26,capital_gains_losses,All,2000000.0,5000000.0,True,False,False,70293 -2022,Table 1.4,AO,27,capital_gains_losses,All,5000000.0,10000000.0,False,False,False,48564000 -2022,Table 1.4,AN,27,capital_gains_losses,All,5000000.0,10000000.0,True,False,False,16807 -2022,Table 1.4,AO,28,capital_gains_losses,All,10000000.0,inf,False,False,False,24625000 -2022,Table 1.4,AN,28,capital_gains_losses,All,10000000.0,inf,True,False,False,8508 -2022,Table 2.1,DH,10,charitable_contributions_deductions,All,-inf,inf,False,False,True,222384855000 -2022,Table 2.1,DG,10,charitable_contributions_deductions,All,-inf,inf,True,False,True,12179939 -2022,Table 2.1,DH,11,charitable_contributions_deductions,All,0.0,5000.0,False,False,False,34841000 -2022,Table 2.1,DG,11,charitable_contributions_deductions,All,0.0,5000.0,True,False,False,46941 -2022,Table 2.1,DH,12,charitable_contributions_deductions,All,5000.0,10000.0,False,False,False,92549000 -2022,Table 2.1,DG,12,charitable_contributions_deductions,All,5000.0,10000.0,True,False,False,44917 -2022,Table 2.1,DH,13,charitable_contributions_deductions,All,10000.0,15000.0,False,False,False,159177000 -2022,Table 2.1,DG,13,charitable_contributions_deductions,All,10000.0,15000.0,True,False,False,67092 -2022,Table 2.1,DH,14,charitable_contributions_deductions,All,15000.0,20000.0,False,False,False,281706000 -2022,Table 2.1,DG,14,charitable_contributions_deductions,All,15000.0,20000.0,True,False,False,88049 -2022,Table 2.1,DH,15,charitable_contributions_deductions,All,20000.0,25000.0,False,False,False,456754000 -2022,Table 2.1,DG,15,charitable_contributions_deductions,All,20000.0,25000.0,True,False,False,120027 -2022,Table 2.1,DH,16,charitable_contributions_deductions,All,25000.0,30000.0,False,False,False,553969000 -2022,Table 2.1,DG,16,charitable_contributions_deductions,All,25000.0,30000.0,True,False,False,132800 -2022,Table 2.1,DH,17,charitable_contributions_deductions,All,30000.0,35000.0,False,False,False,663476000 -2022,Table 2.1,DG,17,charitable_contributions_deductions,All,30000.0,35000.0,True,False,False,151769 -2022,Table 2.1,DH,18,charitable_contributions_deductions,All,35000.0,40000.0,False,False,False,1255200000 -2022,Table 2.1,DG,18,charitable_contributions_deductions,All,35000.0,40000.0,True,False,False,198007 -2022,Table 2.1,DH,19,charitable_contributions_deductions,All,40000.0,45000.0,False,False,False,1068181000 -2022,Table 2.1,DG,19,charitable_contributions_deductions,All,40000.0,45000.0,True,False,False,188265 -2022,Table 2.1,DH,20,charitable_contributions_deductions,All,45000.0,50000.0,False,False,False,1311148000 -2022,Table 2.1,DG,20,charitable_contributions_deductions,All,45000.0,50000.0,True,False,False,221978 -2022,Table 2.1,DH,21,charitable_contributions_deductions,All,50000.0,55000.0,False,False,False,1509675000 -2022,Table 2.1,DG,21,charitable_contributions_deductions,All,50000.0,55000.0,True,False,False,247046 -2022,Table 2.1,DH,22,charitable_contributions_deductions,All,55000.0,60000.0,False,False,False,1751614000 -2022,Table 2.1,DG,22,charitable_contributions_deductions,All,55000.0,60000.0,True,False,False,276278 -2022,Table 2.1,DH,23,charitable_contributions_deductions,All,60000.0,75000.0,False,False,False,5401166000 -2022,Table 2.1,DG,23,charitable_contributions_deductions,All,60000.0,75000.0,True,False,False,890000 -2022,Table 2.1,DH,24,charitable_contributions_deductions,All,75000.0,100000.0,False,False,False,9073536000 -2022,Table 2.1,DG,24,charitable_contributions_deductions,All,75000.0,100000.0,True,False,False,1473990 -2022,Table 2.1,DH,25,charitable_contributions_deductions,All,100000.0,200000.0,False,False,False,34781128000 -2022,Table 2.1,DG,25,charitable_contributions_deductions,All,100000.0,200000.0,True,False,False,3831570 -2022,Table 2.1,DH,26,charitable_contributions_deductions,All,200000.0,500000.0,False,False,False,37531722000 -2022,Table 2.1,DG,26,charitable_contributions_deductions,All,200000.0,500000.0,True,False,False,2868979 -2022,Table 2.1,DH,27,charitable_contributions_deductions,All,500000.0,1000000.0,False,False,False,20333029000 -2022,Table 2.1,DG,27,charitable_contributions_deductions,All,500000.0,1000000.0,True,False,False,810992 -2022,Table 2.1,DH,28,charitable_contributions_deductions,All,1000000.0,1500000.0,False,False,False,10226379000 -2022,Table 2.1,DG,28,charitable_contributions_deductions,All,1000000.0,1500000.0,True,False,False,211235 -2022,Table 2.1,DH,29,charitable_contributions_deductions,All,1500000.0,2000000.0,False,False,False,6269622000 -2022,Table 2.1,DG,29,charitable_contributions_deductions,All,1500000.0,2000000.0,True,False,False,94711 -2022,Table 2.1,DH,30,charitable_contributions_deductions,All,2000000.0,5000000.0,False,False,False,16801653000 -2022,Table 2.1,DG,30,charitable_contributions_deductions,All,2000000.0,5000000.0,True,False,False,144922 -2022,Table 2.1,DH,31,charitable_contributions_deductions,All,5000000.0,10000000.0,False,False,False,11261823000 -2022,Table 2.1,DG,31,charitable_contributions_deductions,All,5000000.0,10000000.0,True,False,False,41137 -2022,Table 2.1,DH,32,charitable_contributions_deductions,All,10000000.0,inf,False,False,False,61566506000 -2022,Table 2.1,DG,32,charitable_contributions_deductions,All,10000000.0,inf,True,False,False,29233 -2022,Table 1.1,B,11,count,All,-inf,0.0,True,False,False,3254225 -2022,Table 1.1,B,10,count,All,-inf,inf,True,False,True,161336659 -2022,Table 1.2,B,11,count,All,1.0,5000.0,True,False,False,8195781 -2022,Table 1.1,B,12,count,All,1.0,5000.0,True,False,False,8195783 -2022,Table 1.1,B,13,count,All,5000.0,10000.0,True,False,False,8747727 -2022,Table 1.2,B,13,count,All,10000.0,15000.0,True,False,False,9642321 -2022,Table 1.1,B,14,count,All,10000.0,15000.0,True,False,False,9642322 -2022,Table 1.1,B,15,count,All,15000.0,20000.0,True,False,False,9058382 -2022,Table 1.1,B,16,count,All,20000.0,25000.0,True,False,False,8035277 -2022,Table 1.1,B,17,count,All,25000.0,30000.0,True,False,False,8005289 -2022,Table 1.1,B,18,count,All,30000.0,40000.0,True,False,False,15771561 -2022,Table 1.1,B,19,count,All,40000.0,50000.0,True,False,False,13255063 -2022,Table 1.1,B,20,count,All,50000.0,75000.0,True,False,False,23805797 -2022,Table 1.1,B,21,count,All,75000.0,100000.0,True,False,False,15181035 -2022,Table 1.1,B,22,count,All,100000.0,200000.0,True,False,False,25887136 -2022,Table 1.1,B,23,count,All,200000.0,500000.0,True,False,False,10017626 -2022,Table 1.1,B,24,count,All,500000.0,1000000.0,True,False,False,1674608 -2022,Table 1.1,B,25,count,All,1000000.0,1500000.0,True,False,False,360882 -2022,Table 1.2,B,25,count,All,1500000.0,2000000.0,True,False,False,148221 -2022,Table 1.1,B,26,count,All,1500000.0,2000000.0,True,False,False,148222 -2022,Table 1.1,B,27,count,All,2000000.0,5000000.0,True,False,False,208129 -2022,Table 1.1,B,28,count,All,5000000.0,10000000.0,True,False,False,52968 -2022,Table 1.1,B,29,count,All,10000000.0,inf,True,False,False,34630 -2022,Table 1.2,AL,10,count,Head of Household,-inf,0.0,True,False,False,113913 -2022,Table 1.2,AL,9,count,Head of Household,-inf,inf,True,False,False,21268139 -2022,Table 1.2,AL,11,count,Head of Household,1.0,5000.0,True,False,False,475615 -2022,Table 1.2,AL,12,count,Head of Household,5000.0,10000.0,True,False,False,811217 -2022,Table 1.2,AL,13,count,Head of Household,10000.0,15000.0,True,False,False,1687098 -2022,Table 1.2,AL,14,count,Head of Household,15000.0,20000.0,True,False,False,2064678 -2022,Table 1.2,AL,15,count,Head of Household,20000.0,25000.0,True,False,False,1669981 -2022,Table 1.2,AL,16,count,Head of Household,25000.0,30000.0,True,False,False,1691489 -2022,Table 1.2,AL,17,count,Head of Household,30000.0,40000.0,True,False,False,3400025 -2022,Table 1.2,AL,18,count,Head of Household,40000.0,50000.0,True,False,False,2452228 -2022,Table 1.2,AL,19,count,Head of Household,50000.0,75000.0,True,False,False,3479671 -2022,Table 1.2,AL,20,count,Head of Household,75000.0,100000.0,True,False,False,1572622 -2022,Table 1.2,AL,21,count,Head of Household,100000.0,200000.0,True,False,False,1507144 -2022,Table 1.2,AL,22,count,Head of Household,200000.0,500000.0,True,False,False,277721 -2022,Table 1.2,AL,23,count,Head of Household,500000.0,1000000.0,True,False,False,44818 -2022,Table 1.2,AL,24,count,Head of Household,1000000.0,1500000.0,True,False,False,9165 -2022,Table 1.2,AL,25,count,Head of Household,1500000.0,2000000.0,True,False,False,3575 -2022,Table 1.2,AL,26,count,Head of Household,2000000.0,5000000.0,True,False,False,5033 -2022,Table 1.2,AL,27,count,Head of Household,5000000.0,10000000.0,True,False,False,1280 -2022,Table 1.2,AL,28,count,Head of Household,10000000.0,inf,True,False,False,866 -2022,Table 1.2,N,10,count,Married Filing Jointly/Surviving Spouse,-inf,0.0,True,False,False,660606 -2022,Table 1.2,N,9,count,Married Filing Jointly/Surviving Spouse,-inf,inf,True,False,False,54886428 -2022,Table 1.2,N,11,count,Married Filing Jointly/Surviving Spouse,1.0,5000.0,True,False,False,753224 -2022,Table 1.2,N,12,count,Married Filing Jointly/Surviving Spouse,5000.0,10000.0,True,False,False,744778 -2022,Table 1.2,N,13,count,Married Filing Jointly/Surviving Spouse,10000.0,15000.0,True,False,False,960577 -2022,Table 1.2,N,14,count,Married Filing Jointly/Surviving Spouse,15000.0,20000.0,True,False,False,1067299 -2022,Table 1.2,N,15,count,Married Filing Jointly/Surviving Spouse,20000.0,25000.0,True,False,False,1141188 -2022,Table 1.2,N,16,count,Married Filing Jointly/Surviving Spouse,25000.0,30000.0,True,False,False,1293290 -2022,Table 1.2,N,17,count,Married Filing Jointly/Surviving Spouse,30000.0,40000.0,True,False,False,2689524 -2022,Table 1.2,N,18,count,Married Filing Jointly/Surviving Spouse,40000.0,50000.0,True,False,False,2710563 -2022,Table 1.2,N,19,count,Married Filing Jointly/Surviving Spouse,50000.0,75000.0,True,False,False,7112905 -2022,Table 1.2,N,20,count,Married Filing Jointly/Surviving Spouse,75000.0,100000.0,True,False,False,7325004 -2022,Table 1.2,N,21,count,Married Filing Jointly/Surviving Spouse,100000.0,200000.0,True,False,False,18132960 -2022,Table 1.2,N,22,count,Married Filing Jointly/Surviving Spouse,200000.0,500000.0,True,False,False,8217044 -2022,Table 1.2,N,23,count,Married Filing Jointly/Surviving Spouse,500000.0,1000000.0,True,False,False,1407631 -2022,Table 1.2,N,24,count,Married Filing Jointly/Surviving Spouse,1000000.0,1500000.0,True,False,False,304533 -2022,Table 1.2,N,25,count,Married Filing Jointly/Surviving Spouse,1500000.0,2000000.0,True,False,False,123960 -2022,Table 1.2,N,26,count,Married Filing Jointly/Surviving Spouse,2000000.0,5000000.0,True,False,False,170806 -2022,Table 1.2,N,27,count,Married Filing Jointly/Surviving Spouse,5000000.0,10000000.0,True,False,False,43126 -2022,Table 1.2,N,28,count,Married Filing Jointly/Surviving Spouse,10000000.0,inf,True,False,False,27413 -2022,Table 1.2,Z,10,count,Married Filing Separately,-inf,0.0,True,False,False,113465 -2022,Table 1.2,Z,9,count,Married Filing Separately,-inf,inf,True,False,False,3992729 -2022,Table 1.2,Z,11,count,Married Filing Separately,1.0,5000.0,True,False,False,146282 -2022,Table 1.2,Z,12,count,Married Filing Separately,5000.0,10000.0,True,False,False,149041 -2022,Table 1.2,Z,13,count,Married Filing Separately,10000.0,15000.0,True,False,False,160742 -2022,Table 1.2,Z,14,count,Married Filing Separately,15000.0,20000.0,True,False,False,146705 -2022,Table 1.2,Z,15,count,Married Filing Separately,20000.0,25000.0,True,False,False,183385 -2022,Table 1.2,Z,16,count,Married Filing Separately,25000.0,30000.0,True,False,False,216440 -2022,Table 1.2,Z,17,count,Married Filing Separately,30000.0,40000.0,True,False,False,449169 -2022,Table 1.2,Z,18,count,Married Filing Separately,40000.0,50000.0,True,False,False,527396 -2022,Table 1.2,Z,19,count,Married Filing Separately,50000.0,75000.0,True,False,False,881160 -2022,Table 1.2,Z,20,count,Married Filing Separately,75000.0,100000.0,True,False,False,408716 -2022,Table 1.2,Z,21,count,Married Filing Separately,100000.0,200000.0,True,False,False,457744 -2022,Table 1.2,Z,22,count,Married Filing Separately,200000.0,500000.0,True,False,False,113765 -2022,Table 1.2,Z,23,count,Married Filing Separately,500000.0,1000000.0,True,False,False,21615 -2022,Table 1.2,Z,24,count,Married Filing Separately,1000000.0,1500000.0,True,False,False,6098 -2022,Table 1.2,Z,25,count,Married Filing Separately,1500000.0,2000000.0,True,False,False,2815 -2022,Table 1.2,Z,26,count,Married Filing Separately,2000000.0,5000000.0,True,False,False,5029 -2022,Table 1.2,Z,27,count,Married Filing Separately,5000000.0,10000000.0,True,False,False,1649 -2022,Table 1.2,Z,28,count,Married Filing Separately,10000000.0,inf,True,False,False,1514 -2022,Table 1.2,AX,10,count,Single,-inf,0.0,True,False,False,2366241 -2022,Table 1.2,AX,9,count,Single,-inf,inf,True,False,False,81189363 -2022,Table 1.2,AX,11,count,Single,1.0,5000.0,True,False,False,6820661 -2022,Table 1.2,AX,12,count,Single,5000.0,10000.0,True,False,False,7042691 -2022,Table 1.2,AX,13,count,Single,10000.0,15000.0,True,False,False,6833904 -2022,Table 1.2,AX,14,count,Single,15000.0,20000.0,True,False,False,5779700 -2022,Table 1.2,AX,15,count,Single,20000.0,25000.0,True,False,False,5040723 -2022,Table 1.2,AX,16,count,Single,25000.0,30000.0,True,False,False,4804071 -2022,Table 1.2,AX,17,count,Single,30000.0,40000.0,True,False,False,9232844 -2022,Table 1.2,AX,18,count,Single,40000.0,50000.0,True,False,False,7564876 -2022,Table 1.2,AX,19,count,Single,50000.0,75000.0,True,False,False,12332062 -2022,Table 1.2,AX,20,count,Single,75000.0,100000.0,True,False,False,5874693 -2022,Table 1.2,AX,21,count,Single,100000.0,200000.0,True,False,False,5789288 -2022,Table 1.2,AX,22,count,Single,200000.0,500000.0,True,False,False,1409096 -2022,Table 1.2,AX,23,count,Single,500000.0,1000000.0,True,False,False,200544 -2022,Table 1.2,AX,24,count,Single,1000000.0,1500000.0,True,False,False,41086 -2022,Table 1.2,AX,25,count,Single,1500000.0,2000000.0,True,False,False,17872 -2022,Table 1.2,AX,26,count,Single,2000000.0,5000000.0,True,False,False,27261 -2022,Table 1.2,AX,27,count,Single,5000000.0,10000000.0,True,False,False,6913 -2022,Table 1.2,AX,28,count,Single,10000000.0,inf,True,False,False,4837 -2022,Table 1.4,G,10,employment_income,All,-inf,0.0,False,False,False,26549822000 -2022,Table 1.4,F,10,employment_income,All,-inf,0.0,True,False,False,535529 -2022,Table 1.4,G,9,employment_income,All,-inf,inf,False,False,True,9738950972000 -2022,Table 1.4,F,9,employment_income,All,-inf,inf,True,False,True,128387726 -2022,Table 1.4,G,11,employment_income,All,1.0,5000.0,False,False,False,20111860000 -2022,Table 1.4,F,11,employment_income,All,1.0,5000.0,True,False,False,4526748 -2022,Table 1.4,G,12,employment_income,All,5000.0,10000.0,False,False,False,49932161000 -2022,Table 1.4,F,12,employment_income,All,5000.0,10000.0,True,False,False,6288131 -2022,Table 1.4,G,13,employment_income,All,10000.0,15000.0,False,False,False,83472741000 -2022,Table 1.4,F,13,employment_income,All,10000.0,15000.0,True,False,False,6711329 -2022,Table 1.4,G,14,employment_income,All,15000.0,20000.0,False,False,False,114917988000 -2022,Table 1.4,F,14,employment_income,All,15000.0,20000.0,True,False,False,6711424 -2022,Table 1.4,G,15,employment_income,All,20000.0,25000.0,False,False,False,142024298000 -2022,Table 1.4,F,15,employment_income,All,20000.0,25000.0,True,False,False,6413397 -2022,Table 1.4,G,16,employment_income,All,25000.0,30000.0,False,False,False,179101569000 -2022,Table 1.4,F,16,employment_income,All,25000.0,30000.0,True,False,False,6580422 -2022,Table 1.4,G,17,employment_income,All,30000.0,40000.0,False,False,False,458154921000 -2022,Table 1.4,F,17,employment_income,All,30000.0,40000.0,True,False,False,13512882 -2022,Table 1.4,G,18,employment_income,All,40000.0,50000.0,False,False,False,491501148000 -2022,Table 1.4,F,18,employment_income,All,40000.0,50000.0,True,False,False,11461901 -2022,Table 1.4,G,19,employment_income,All,50000.0,75000.0,False,False,False,1150473333000 -2022,Table 1.4,F,19,employment_income,All,50000.0,75000.0,True,False,False,20174516 -2022,Table 1.4,G,20,employment_income,All,75000.0,100000.0,False,False,False,987573283000 -2022,Table 1.4,F,20,employment_income,All,75000.0,100000.0,True,False,False,12691167 -2022,Table 1.4,G,21,employment_income,All,100000.0,200000.0,False,False,False,2619600305000 -2022,Table 1.4,F,21,employment_income,All,100000.0,200000.0,True,False,False,21959412 -2022,Table 1.4,G,22,employment_income,All,200000.0,500000.0,False,False,False,2010514162000 -2022,Table 1.4,F,22,employment_income,All,200000.0,500000.0,True,False,False,8723740 -2022,Table 1.4,G,23,employment_income,All,500000.0,1000000.0,False,False,False,652360162000 -2022,Table 1.4,F,23,employment_income,All,500000.0,1000000.0,True,False,False,1436001 -2022,Table 1.4,G,24,employment_income,All,1000000.0,1500000.0,False,False,False,201078168000 -2022,Table 1.4,F,24,employment_income,All,1000000.0,1500000.0,True,False,False,300870 -2022,Table 1.4,G,25,employment_income,All,1500000.0,2000000.0,False,False,False,101222017000 -2022,Table 1.4,F,25,employment_income,All,1500000.0,2000000.0,True,False,False,121422 -2022,Table 1.4,G,26,employment_income,All,2000000.0,5000000.0,False,False,False,202143391000 -2022,Table 1.4,F,26,employment_income,All,2000000.0,5000000.0,True,False,False,168281 -2022,Table 1.4,G,27,employment_income,All,5000000.0,10000000.0,False,False,False,95902801000 -2022,Table 1.4,F,27,employment_income,All,5000000.0,10000000.0,True,False,False,42749 -2022,Table 1.4,G,28,employment_income,All,10000000.0,inf,False,False,False,152316841000 -2022,Table 1.4,F,28,employment_income,All,10000000.0,inf,True,False,False,27805 -2022,Table 1.4,W,10,exempt_interest,All,-inf,0.0,False,False,False,789360000 -2022,Table 1.4,V,10,exempt_interest,All,-inf,0.0,True,False,False,93427 -2022,Table 1.4,W,9,exempt_interest,All,-inf,inf,False,False,True,55567941000 -2022,Table 1.4,V,9,exempt_interest,All,-inf,inf,True,False,True,6892813 -2022,Table 1.4,W,11,exempt_interest,All,1.0,5000.0,False,False,False,135194000 -2022,Table 1.4,V,11,exempt_interest,All,1.0,5000.0,True,False,False,109109 -2022,Table 1.4,W,12,exempt_interest,All,5000.0,10000.0,False,False,False,180828000 -2022,Table 1.4,V,12,exempt_interest,All,5000.0,10000.0,True,False,False,89031 -2022,Table 1.4,W,13,exempt_interest,All,10000.0,15000.0,False,False,False,224575000 -2022,Table 1.4,V,13,exempt_interest,All,10000.0,15000.0,True,False,False,105451 -2022,Table 1.4,W,14,exempt_interest,All,15000.0,20000.0,False,False,False,196450000 -2022,Table 1.4,V,14,exempt_interest,All,15000.0,20000.0,True,False,False,95997 -2022,Table 1.4,W,15,exempt_interest,All,20000.0,25000.0,False,False,False,141466000 -2022,Table 1.4,V,15,exempt_interest,All,20000.0,25000.0,True,False,False,94559 -2022,Table 1.4,W,16,exempt_interest,All,25000.0,30000.0,False,False,False,348578000 -2022,Table 1.4,V,16,exempt_interest,All,25000.0,30000.0,True,False,False,95098 -2022,Table 1.4,W,17,exempt_interest,All,30000.0,40000.0,False,False,False,813250000 -2022,Table 1.4,V,17,exempt_interest,All,30000.0,40000.0,True,False,False,224413 -2022,Table 1.4,W,18,exempt_interest,All,40000.0,50000.0,False,False,False,694502000 -2022,Table 1.4,V,18,exempt_interest,All,40000.0,50000.0,True,False,False,262708 -2022,Table 1.4,W,19,exempt_interest,All,50000.0,75000.0,False,False,False,2148899000 -2022,Table 1.4,V,19,exempt_interest,All,50000.0,75000.0,True,False,False,701687 -2022,Table 1.4,W,20,exempt_interest,All,75000.0,100000.0,False,False,False,2363823000 -2022,Table 1.4,V,20,exempt_interest,All,75000.0,100000.0,True,False,False,677301 -2022,Table 1.4,W,21,exempt_interest,All,100000.0,200000.0,False,False,False,8746815000 -2022,Table 1.4,V,21,exempt_interest,All,100000.0,200000.0,True,False,False,1909389 -2022,Table 1.4,W,22,exempt_interest,All,200000.0,500000.0,False,False,False,12714183000 -2022,Table 1.4,V,22,exempt_interest,All,200000.0,500000.0,True,False,False,1588632 -2022,Table 1.4,W,23,exempt_interest,All,500000.0,1000000.0,False,False,False,7368520000 -2022,Table 1.4,V,23,exempt_interest,All,500000.0,1000000.0,True,False,False,485091 -2022,Table 1.4,W,24,exempt_interest,All,1000000.0,1500000.0,False,False,False,3438200000 -2022,Table 1.4,V,24,exempt_interest,All,1000000.0,1500000.0,True,False,False,139181 -2022,Table 1.4,W,25,exempt_interest,All,1500000.0,2000000.0,False,False,False,2293946000 -2022,Table 1.4,V,25,exempt_interest,All,1500000.0,2000000.0,True,False,False,64081 -2022,Table 1.4,W,26,exempt_interest,All,2000000.0,5000000.0,False,False,False,5199540000 -2022,Table 1.4,V,26,exempt_interest,All,2000000.0,5000000.0,True,False,False,103702 -2022,Table 1.4,W,27,exempt_interest,All,5000000.0,10000000.0,False,False,False,2706049000 -2022,Table 1.4,V,27,exempt_interest,All,5000000.0,10000000.0,True,False,False,30837 -2022,Table 1.4,W,28,exempt_interest,All,10000000.0,inf,False,False,False,5063762000 -2022,Table 1.4,V,28,exempt_interest,All,10000000.0,inf,True,False,False,23117 -2022,Table 2.1,CF,10,idpitgst,All,-inf,inf,False,False,True,285855252000 -2022,Table 2.1,CE,10,idpitgst,All,-inf,inf,True,False,True,14642239 -2022,Table 2.1,CF,11,idpitgst,All,0.0,5000.0,False,False,False,92845000 -2022,Table 2.1,CE,11,idpitgst,All,0.0,5000.0,True,False,False,74988 -2022,Table 2.1,CF,12,idpitgst,All,5000.0,10000.0,False,False,False,158486000 -2022,Table 2.1,CE,12,idpitgst,All,5000.0,10000.0,True,False,False,91913 -2022,Table 2.1,CF,13,idpitgst,All,10000.0,15000.0,False,False,False,123940000 -2022,Table 2.1,CE,13,idpitgst,All,10000.0,15000.0,True,False,False,102922 -2022,Table 2.1,CF,14,idpitgst,All,15000.0,20000.0,False,False,False,223526000 -2022,Table 2.1,CE,14,idpitgst,All,15000.0,20000.0,True,False,False,138381 -2022,Table 2.1,CF,15,idpitgst,All,20000.0,25000.0,False,False,False,357961000 -2022,Table 2.1,CE,15,idpitgst,All,20000.0,25000.0,True,False,False,159208 -2022,Table 2.1,CF,16,idpitgst,All,25000.0,30000.0,False,False,False,400240000 -2022,Table 2.1,CE,16,idpitgst,All,25000.0,30000.0,True,False,False,181096 -2022,Table 2.1,CF,17,idpitgst,All,30000.0,35000.0,False,False,False,372081000 -2022,Table 2.1,CE,17,idpitgst,All,30000.0,35000.0,True,False,False,193028 -2022,Table 2.1,CF,18,idpitgst,All,35000.0,40000.0,False,False,False,696402000 -2022,Table 2.1,CE,18,idpitgst,All,35000.0,40000.0,True,False,False,256193 -2022,Table 2.1,CF,19,idpitgst,All,40000.0,45000.0,False,False,False,595422000 -2022,Table 2.1,CE,19,idpitgst,All,40000.0,45000.0,True,False,False,232414 -2022,Table 2.1,CF,20,idpitgst,All,45000.0,50000.0,False,False,False,634387000 -2022,Table 2.1,CE,20,idpitgst,All,45000.0,50000.0,True,False,False,281486 -2022,Table 2.1,CF,21,idpitgst,All,50000.0,55000.0,False,False,False,873257000 -2022,Table 2.1,CE,21,idpitgst,All,50000.0,55000.0,True,False,False,332788 -2022,Table 2.1,CF,22,idpitgst,All,55000.0,60000.0,False,False,False,877681000 -2022,Table 2.1,CE,22,idpitgst,All,55000.0,60000.0,True,False,False,347161 -2022,Table 2.1,CF,23,idpitgst,All,60000.0,75000.0,False,False,False,3755315000 -2022,Table 2.1,CE,23,idpitgst,All,60000.0,75000.0,True,False,False,1119510 -2022,Table 2.1,CF,24,idpitgst,All,75000.0,100000.0,False,False,False,8028368000 -2022,Table 2.1,CE,24,idpitgst,All,75000.0,100000.0,True,False,False,1832471 -2022,Table 2.1,CF,25,idpitgst,All,100000.0,200000.0,False,False,False,32318752000 -2022,Table 2.1,CE,25,idpitgst,All,100000.0,200000.0,True,False,False,4605804 -2022,Table 2.1,CF,26,idpitgst,All,200000.0,500000.0,False,False,False,54965415000 -2022,Table 2.1,CE,26,idpitgst,All,200000.0,500000.0,True,False,False,3256907 -2022,Table 2.1,CF,27,idpitgst,All,500000.0,1000000.0,False,False,False,55655180000 -2022,Table 2.1,CE,27,idpitgst,All,500000.0,1000000.0,True,False,False,885494 -2022,Table 2.1,CF,28,idpitgst,All,1000000.0,1500000.0,False,False,False,17567490000 -2022,Table 2.1,CE,28,idpitgst,All,1000000.0,1500000.0,True,False,False,227065 -2022,Table 2.1,CF,29,idpitgst,All,1500000.0,2000000.0,False,False,False,10926197000 -2022,Table 2.1,CE,29,idpitgst,All,1500000.0,2000000.0,True,False,False,100173 -2022,Table 2.1,CF,30,idpitgst,All,2000000.0,5000000.0,False,False,False,29410023000 -2022,Table 2.1,CE,30,idpitgst,All,2000000.0,5000000.0,True,False,False,151311 -2022,Table 2.1,CF,31,idpitgst,All,5000000.0,10000000.0,False,False,False,18121000000 -2022,Table 2.1,CE,31,idpitgst,All,5000000.0,10000000.0,True,False,False,42322 -2022,Table 2.1,CF,32,idpitgst,All,10000000.0,inf,False,False,False,49701285000 -2022,Table 2.1,CE,32,idpitgst,All,10000000.0,inf,True,False,False,29603 -2022,Table 1.2,K,10,income_tax_after_credits,All,-inf,0.0,False,False,False,128418000 -2022,Table 1.2,J,10,income_tax_after_credits,All,-inf,0.0,True,False,False,3843 -2022,Table 1.2,K,9,income_tax_after_credits,All,-inf,inf,False,False,True,2098923017000 -2022,Table 1.2,J,9,income_tax_after_credits,All,-inf,inf,True,False,True,110611880 -2022,Table 1.2,K,11,income_tax_after_credits,All,1.0,5000.0,False,False,False,18734000 -2022,Table 1.2,J,11,income_tax_after_credits,All,1.0,5000.0,True,False,False,105475 -2022,Table 1.2,K,12,income_tax_after_credits,All,5000.0,10000.0,False,False,False,41423000 -2022,Table 1.2,J,12,income_tax_after_credits,All,5000.0,10000.0,True,False,False,119109 -2022,Table 1.2,K,13,income_tax_after_credits,All,10000.0,15000.0,False,False,False,188178000 -2022,Table 1.2,J,13,income_tax_after_credits,All,10000.0,15000.0,True,False,False,1370355 -2022,Table 1.2,K,14,income_tax_after_credits,All,15000.0,20000.0,False,False,False,1735910000 -2022,Table 1.2,J,14,income_tax_after_credits,All,15000.0,20000.0,True,False,False,4429442 -2022,Table 1.2,K,15,income_tax_after_credits,All,20000.0,25000.0,False,False,False,3804019000 -2022,Table 1.2,J,15,income_tax_after_credits,All,20000.0,25000.0,True,False,False,4393888 -2022,Table 1.2,K,16,income_tax_after_credits,All,25000.0,30000.0,False,False,False,6376403000 -2022,Table 1.2,J,16,income_tax_after_credits,All,25000.0,30000.0,True,False,False,4801988 -2022,Table 1.2,K,17,income_tax_after_credits,All,30000.0,40000.0,False,False,False,21322189000 -2022,Table 1.2,J,17,income_tax_after_credits,All,30000.0,40000.0,True,False,False,10791931 -2022,Table 1.2,K,18,income_tax_after_credits,All,40000.0,50000.0,False,False,False,30308339000 -2022,Table 1.2,J,18,income_tax_after_credits,All,40000.0,50000.0,True,False,False,10680343 -2022,Table 1.2,K,19,income_tax_after_credits,All,50000.0,75000.0,False,False,False,100103566000 -2022,Table 1.2,J,19,income_tax_after_credits,All,50000.0,75000.0,True,False,False,21378035 -2022,Table 1.2,K,20,income_tax_after_credits,All,75000.0,100000.0,False,False,False,113079178000 -2022,Table 1.2,J,20,income_tax_after_credits,All,75000.0,100000.0,True,False,False,14549341 -2022,Table 1.2,K,21,income_tax_after_credits,All,100000.0,200000.0,False,False,False,397720446000 -2022,Table 1.2,J,21,income_tax_after_credits,All,100000.0,200000.0,True,False,False,25543182 -2022,Table 1.2,K,22,income_tax_after_credits,All,200000.0,500000.0,False,False,False,478105230000 -2022,Table 1.2,J,22,income_tax_after_credits,All,200000.0,500000.0,True,False,False,9975881 -2022,Table 1.2,K,23,income_tax_after_credits,All,500000.0,1000000.0,False,False,False,254284854000 -2022,Table 1.2,J,23,income_tax_after_credits,All,500000.0,1000000.0,True,False,False,1667357 -2022,Table 1.2,K,24,income_tax_after_credits,All,1000000.0,1500000.0,False,False,False,110819453000 -2022,Table 1.2,J,24,income_tax_after_credits,All,1000000.0,1500000.0,True,False,False,359534 -2022,Table 1.2,K,25,income_tax_after_credits,All,1500000.0,2000000.0,False,False,False,67287429000 -2022,Table 1.2,J,25,income_tax_after_credits,All,1500000.0,2000000.0,True,False,False,147558 -2022,Table 1.2,K,26,income_tax_after_credits,All,2000000.0,5000000.0,False,False,False,166026539000 -2022,Table 1.2,J,26,income_tax_after_credits,All,2000000.0,5000000.0,True,False,False,207401 -2022,Table 1.2,K,27,income_tax_after_credits,All,5000000.0,10000000.0,False,False,False,96475701000 -2022,Table 1.2,J,27,income_tax_after_credits,All,5000000.0,10000000.0,True,False,False,52747 -2022,Table 1.2,K,28,income_tax_after_credits,All,10000000.0,inf,False,False,False,251097008000 -2022,Table 1.2,J,28,income_tax_after_credits,All,10000000.0,inf,True,False,False,34472 -2022,Table 1.4,ES,10,income_tax_before_credits,All,-inf,0.0,False,False,False,163780000 -2022,Table 1.4,ER,10,income_tax_before_credits,All,-inf,0.0,True,False,False,82714 -2022,Table 1.4,ES,9,income_tax_before_credits,All,-inf,inf,False,False,True,2260350184000 -2022,Table 1.4,ER,9,income_tax_before_credits,All,-inf,inf,True,False,True,129352044 -2022,Table 1.4,ES,11,income_tax_before_credits,All,1.0,5000.0,False,False,False,49108000 -2022,Table 1.4,ER,11,income_tax_before_credits,All,1.0,5000.0,True,False,False,239298 -2022,Table 1.4,ES,12,income_tax_before_credits,All,5000.0,10000.0,False,False,False,76949000 -2022,Table 1.4,ER,12,income_tax_before_credits,All,5000.0,10000.0,True,False,False,278707 -2022,Table 1.4,ES,13,income_tax_before_credits,All,10000.0,15000.0,False,False,False,366463000 -2022,Table 1.4,ER,13,income_tax_before_credits,All,10000.0,15000.0,True,False,False,2671211 -2022,Table 1.4,ES,14,income_tax_before_credits,All,15000.0,20000.0,False,False,False,2455524000 -2022,Table 1.4,ER,14,income_tax_before_credits,All,15000.0,20000.0,True,False,False,6060698 -2022,Table 1.4,ES,15,income_tax_before_credits,All,20000.0,25000.0,False,False,False,5228484000 -2022,Table 1.4,ER,15,income_tax_before_credits,All,20000.0,25000.0,True,False,False,6829376 -2022,Table 1.4,ES,16,income_tax_before_credits,All,25000.0,30000.0,False,False,False,8950835000 -2022,Table 1.4,ER,16,income_tax_before_credits,All,25000.0,30000.0,True,False,False,7393134 -2022,Table 1.4,ES,17,income_tax_before_credits,All,30000.0,40000.0,False,False,False,30149194000 -2022,Table 1.4,ER,17,income_tax_before_credits,All,30000.0,40000.0,True,False,False,15541069 -2022,Table 1.4,ES,18,income_tax_before_credits,All,40000.0,50000.0,False,False,False,39898555000 -2022,Table 1.4,ER,18,income_tax_before_credits,All,40000.0,50000.0,True,False,False,13155211 -2022,Table 1.4,ES,19,income_tax_before_credits,All,50000.0,75000.0,False,False,False,122066429000 -2022,Table 1.4,ER,19,income_tax_before_credits,All,50000.0,75000.0,True,False,False,23662648 -2022,Table 1.4,ES,20,income_tax_before_credits,All,75000.0,100000.0,False,False,False,131394004000 -2022,Table 1.4,ER,20,income_tax_before_credits,All,75000.0,100000.0,True,False,False,15123515 -2022,Table 1.4,ES,21,income_tax_before_credits,All,100000.0,200000.0,False,False,False,439843814000 -2022,Table 1.4,ER,21,income_tax_before_credits,All,100000.0,200000.0,True,False,False,25829887 -2022,Table 1.4,ES,22,income_tax_before_credits,All,200000.0,500000.0,False,False,False,500320082000 -2022,Table 1.4,ER,22,income_tax_before_credits,All,200000.0,500000.0,True,False,False,10008079 -2022,Table 1.4,ES,23,income_tax_before_credits,All,500000.0,1000000.0,False,False,False,260437884000 -2022,Table 1.4,ER,23,income_tax_before_credits,All,500000.0,1000000.0,True,False,False,1672422 -2022,Table 1.4,ES,24,income_tax_before_credits,All,1000000.0,1500000.0,False,False,False,113951006000 -2022,Table 1.4,ER,24,income_tax_before_credits,All,1000000.0,1500000.0,True,False,False,360600 -2022,Table 1.4,ES,25,income_tax_before_credits,All,1500000.0,2000000.0,False,False,False,69393007000 -2022,Table 1.4,ER,25,income_tax_before_credits,All,1500000.0,2000000.0,True,False,False,148061 -2022,Table 1.4,ES,26,income_tax_before_credits,All,2000000.0,5000000.0,False,False,False,171945771000 -2022,Table 1.4,ER,26,income_tax_before_credits,All,2000000.0,5000000.0,True,False,False,207907 -2022,Table 1.4,ES,27,income_tax_before_credits,All,5000000.0,10000000.0,False,False,False,100030718000 -2022,Table 1.4,ER,27,income_tax_before_credits,All,5000000.0,10000000.0,True,False,False,52914 -2022,Table 1.4,ES,28,income_tax_before_credits,All,10000000.0,inf,False,False,False,263628575000 -2022,Table 1.4,ER,28,income_tax_before_credits,All,10000000.0,inf,True,False,False,34591 -2022,Table 2.1,CT,10,interest_paid_deductions,All,-inf,inf,False,False,True,170451254000 -2022,Table 2.1,CS,10,interest_paid_deductions,All,-inf,inf,True,False,True,11900478 -2022,Table 2.1,CT,11,interest_paid_deductions,All,0.0,5000.0,False,False,False,528925000 -2022,Table 2.1,CS,11,interest_paid_deductions,All,0.0,5000.0,True,False,False,51464 -2022,Table 2.1,CT,12,interest_paid_deductions,All,5000.0,10000.0,False,False,False,541072000 -2022,Table 2.1,CS,12,interest_paid_deductions,All,5000.0,10000.0,True,False,False,59062 -2022,Table 2.1,CT,13,interest_paid_deductions,All,10000.0,15000.0,False,False,False,470520000 -2022,Table 2.1,CS,13,interest_paid_deductions,All,10000.0,15000.0,True,False,False,51798 -2022,Table 2.1,CT,14,interest_paid_deductions,All,15000.0,20000.0,False,False,False,986622000 -2022,Table 2.1,CS,14,interest_paid_deductions,All,15000.0,20000.0,True,False,False,71368 -2022,Table 2.1,CT,15,interest_paid_deductions,All,20000.0,25000.0,False,False,False,1053476000 -2022,Table 2.1,CS,15,interest_paid_deductions,All,20000.0,25000.0,True,False,False,98851 -2022,Table 2.1,CT,16,interest_paid_deductions,All,25000.0,30000.0,False,False,False,1043256000 -2022,Table 2.1,CS,16,interest_paid_deductions,All,25000.0,30000.0,True,False,False,88288 -2022,Table 2.1,CT,17,interest_paid_deductions,All,30000.0,35000.0,False,False,False,1428075000 -2022,Table 2.1,CS,17,interest_paid_deductions,All,30000.0,35000.0,True,False,False,115643 -2022,Table 2.1,CT,18,interest_paid_deductions,All,35000.0,40000.0,False,False,False,1409854000 -2022,Table 2.1,CS,18,interest_paid_deductions,All,35000.0,40000.0,True,False,False,155104 -2022,Table 2.1,CT,19,interest_paid_deductions,All,40000.0,45000.0,False,False,False,1526699000 -2022,Table 2.1,CS,19,interest_paid_deductions,All,40000.0,45000.0,True,False,False,147781 -2022,Table 2.1,CT,20,interest_paid_deductions,All,45000.0,50000.0,False,False,False,1915643000 -2022,Table 2.1,CS,20,interest_paid_deductions,All,45000.0,50000.0,True,False,False,185527 -2022,Table 2.1,CT,21,interest_paid_deductions,All,50000.0,55000.0,False,False,False,2249005000 -2022,Table 2.1,CS,21,interest_paid_deductions,All,50000.0,55000.0,True,False,False,227511 -2022,Table 2.1,CT,22,interest_paid_deductions,All,55000.0,60000.0,False,False,False,2551086000 -2022,Table 2.1,CS,22,interest_paid_deductions,All,55000.0,60000.0,True,False,False,237310 -2022,Table 2.1,CT,23,interest_paid_deductions,All,60000.0,75000.0,False,False,False,8089430000 -2022,Table 2.1,CS,23,interest_paid_deductions,All,60000.0,75000.0,True,False,False,856172 -2022,Table 2.1,CT,24,interest_paid_deductions,All,75000.0,100000.0,False,False,False,14761951000 -2022,Table 2.1,CS,24,interest_paid_deductions,All,75000.0,100000.0,True,False,False,1515059 -2022,Table 2.1,CT,25,interest_paid_deductions,All,100000.0,200000.0,False,False,False,44357448000 -2022,Table 2.1,CS,25,interest_paid_deductions,All,100000.0,200000.0,True,False,False,3879650 -2022,Table 2.1,CT,26,interest_paid_deductions,All,200000.0,500000.0,False,False,False,46070656000 -2022,Table 2.1,CS,26,interest_paid_deductions,All,200000.0,500000.0,True,False,False,2905042 -2022,Table 2.1,CT,27,interest_paid_deductions,All,500000.0,1000000.0,False,False,False,16157584000 -2022,Table 2.1,CS,27,interest_paid_deductions,All,500000.0,1000000.0,True,False,False,789774 -2022,Table 2.1,CT,28,interest_paid_deductions,All,1000000.0,1500000.0,False,False,False,4904980000 -2022,Table 2.1,CS,28,interest_paid_deductions,All,1000000.0,1500000.0,True,False,False,194860 -2022,Table 2.1,CT,29,interest_paid_deductions,All,1500000.0,2000000.0,False,False,False,2505822000 -2022,Table 2.1,CS,29,interest_paid_deductions,All,1500000.0,2000000.0,True,False,False,84193 -2022,Table 2.1,CT,30,interest_paid_deductions,All,2000000.0,5000000.0,False,False,False,5267640000 -2022,Table 2.1,CS,30,interest_paid_deductions,All,2000000.0,5000000.0,True,False,False,126085 -2022,Table 2.1,CT,31,interest_paid_deductions,All,5000000.0,10000000.0,False,False,False,2932702000 -2022,Table 2.1,CS,31,interest_paid_deductions,All,5000000.0,10000000.0,True,False,False,35016 -2022,Table 2.1,CT,32,interest_paid_deductions,All,10000000.0,inf,False,False,False,9698806000 -2022,Table 2.1,CS,32,interest_paid_deductions,All,10000000.0,inf,True,False,False,24920 -2022,Table 1.4,AU,10,ira_distributions,All,-inf,0.0,False,False,False,1980715000 -2022,Table 1.4,AT,10,ira_distributions,All,-inf,0.0,True,False,False,121561 -2022,Table 1.4,AU,9,ira_distributions,All,-inf,inf,False,False,True,437775580000 -2022,Table 1.4,AT,9,ira_distributions,All,-inf,inf,True,False,True,16282441 -2022,Table 1.4,AU,11,ira_distributions,All,1.0,5000.0,False,False,False,956450000 -2022,Table 1.4,AT,11,ira_distributions,All,1.0,5000.0,True,False,False,349510 -2022,Table 1.4,AU,12,ira_distributions,All,5000.0,10000.0,False,False,False,2516774000 -2022,Table 1.4,AT,12,ira_distributions,All,5000.0,10000.0,True,False,False,509867 -2022,Table 1.4,AU,13,ira_distributions,All,10000.0,15000.0,False,False,False,3889372000 -2022,Table 1.4,AT,13,ira_distributions,All,10000.0,15000.0,True,False,False,571324 -2022,Table 1.4,AU,14,ira_distributions,All,15000.0,20000.0,False,False,False,4566996000 -2022,Table 1.4,AT,14,ira_distributions,All,15000.0,20000.0,True,False,False,571653 -2022,Table 1.4,AU,15,ira_distributions,All,20000.0,25000.0,False,False,False,4833461000 -2022,Table 1.4,AT,15,ira_distributions,All,20000.0,25000.0,True,False,False,508282 -2022,Table 1.4,AU,16,ira_distributions,All,25000.0,30000.0,False,False,False,5327172000 -2022,Table 1.4,AT,16,ira_distributions,All,25000.0,30000.0,True,False,False,502471 -2022,Table 1.4,AU,17,ira_distributions,All,30000.0,40000.0,False,False,False,10566983000 -2022,Table 1.4,AT,17,ira_distributions,All,30000.0,40000.0,True,False,False,930812 -2022,Table 1.4,AU,18,ira_distributions,All,40000.0,50000.0,False,False,False,12521815000 -2022,Table 1.4,AT,18,ira_distributions,All,40000.0,50000.0,True,False,False,976829 -2022,Table 1.4,AU,19,ira_distributions,All,50000.0,75000.0,False,False,False,36656755000 -2022,Table 1.4,AT,19,ira_distributions,All,50000.0,75000.0,True,False,False,2376482 -2022,Table 1.4,AU,20,ira_distributions,All,75000.0,100000.0,False,False,False,44499088000 -2022,Table 1.4,AT,20,ira_distributions,All,75000.0,100000.0,True,False,False,2075069 -2022,Table 1.4,AU,21,ira_distributions,All,100000.0,200000.0,False,False,False,146268928000 -2022,Table 1.4,AT,21,ira_distributions,All,100000.0,200000.0,True,False,False,4441475 -2022,Table 1.4,AU,22,ira_distributions,All,200000.0,500000.0,False,False,False,118094434000 -2022,Table 1.4,AT,22,ira_distributions,All,200000.0,500000.0,True,False,False,1909850 -2022,Table 1.4,AU,23,ira_distributions,All,500000.0,1000000.0,False,False,False,27676430000 -2022,Table 1.4,AT,23,ira_distributions,All,500000.0,1000000.0,True,False,False,303601 -2022,Table 1.4,AU,24,ira_distributions,All,1000000.0,1500000.0,False,False,False,6463776000 -2022,Table 1.4,AT,24,ira_distributions,All,1000000.0,1500000.0,True,False,False,60854 -2022,Table 1.4,AU,25,ira_distributions,All,1500000.0,2000000.0,False,False,False,2784109000 -2022,Table 1.4,AT,25,ira_distributions,All,1500000.0,2000000.0,True,False,False,24263 -2022,Table 1.4,AU,26,ira_distributions,All,2000000.0,5000000.0,False,False,False,4999976000 -2022,Table 1.4,AT,26,ira_distributions,All,2000000.0,5000000.0,True,False,False,35091 -2022,Table 1.4,AU,27,ira_distributions,All,5000000.0,10000000.0,False,False,False,1580337000 -2022,Table 1.4,AT,27,ira_distributions,All,5000000.0,10000000.0,True,False,False,8317 -2022,Table 1.4,AU,28,ira_distributions,All,10000000.0,inf,False,False,False,1592011000 -2022,Table 1.4,AT,28,ira_distributions,All,10000000.0,inf,True,False,False,5130 -2022,Table 1.2,E,10,itemized_deductions,All,-inf,0.0,False,False,False,0 -2022,Table 1.2,D,10,itemized_deductions,All,-inf,0.0,True,False,False,0 -2022,Table 1.2,E,9,itemized_deductions,All,-inf,inf,False,False,True,668001764000 -2022,Table 1.2,D,9,itemized_deductions,All,-inf,inf,True,False,True,15290841 -2022,Table 1.2,E,11,itemized_deductions,All,1.0,5000.0,False,False,False,2212245000 -2022,Table 1.2,D,11,itemized_deductions,All,1.0,5000.0,True,False,False,106861 -2022,Table 1.2,E,12,itemized_deductions,All,5000.0,10000.0,False,False,False,11186695000 -2022,Table 1.2,D,12,itemized_deductions,All,5000.0,10000.0,True,False,False,104685 -2022,Table 1.2,E,13,itemized_deductions,All,10000.0,15000.0,False,False,False,2765492000 -2022,Table 1.2,D,13,itemized_deductions,All,10000.0,15000.0,True,False,False,117421 -2022,Table 1.2,E,14,itemized_deductions,All,15000.0,20000.0,False,False,False,3989446000 -2022,Table 1.2,D,14,itemized_deductions,All,15000.0,20000.0,True,False,False,157566 -2022,Table 1.2,E,15,itemized_deductions,All,20000.0,25000.0,False,False,False,5050663000 -2022,Table 1.2,D,15,itemized_deductions,All,20000.0,25000.0,True,False,False,185594 -2022,Table 1.2,E,16,itemized_deductions,All,25000.0,30000.0,False,False,False,5703689000 -2022,Table 1.2,D,16,itemized_deductions,All,25000.0,30000.0,True,False,False,204094 -2022,Table 1.2,E,17,itemized_deductions,All,30000.0,40000.0,False,False,False,14494331000 -2022,Table 1.2,D,17,itemized_deductions,All,30000.0,40000.0,True,False,False,504475 -2022,Table 1.2,E,18,itemized_deductions,All,40000.0,50000.0,False,False,False,15604243000 -2022,Table 1.2,D,18,itemized_deductions,All,40000.0,50000.0,True,False,False,565877 -2022,Table 1.2,E,19,itemized_deductions,All,50000.0,75000.0,False,False,False,51651608000 -2022,Table 1.2,D,19,itemized_deductions,All,50000.0,75000.0,True,False,False,1891131 -2022,Table 1.2,E,20,itemized_deductions,All,75000.0,100000.0,False,False,False,53445883000 -2022,Table 1.2,D,20,itemized_deductions,All,75000.0,100000.0,True,False,False,1915805 -2022,Table 1.2,E,21,itemized_deductions,All,100000.0,200000.0,False,False,False,151517219000 -2022,Table 1.2,D,21,itemized_deductions,All,100000.0,200000.0,True,False,False,4745777 -2022,Table 1.2,E,22,itemized_deductions,All,200000.0,500000.0,False,False,False,136240610000 -2022,Table 1.2,D,22,itemized_deductions,All,200000.0,500000.0,True,False,False,3330396 -2022,Table 1.2,E,23,itemized_deductions,All,500000.0,1000000.0,False,False,False,54792042000 -2022,Table 1.2,D,23,itemized_deductions,All,500000.0,1000000.0,True,False,False,902511 -2022,Table 1.2,E,24,itemized_deductions,All,1000000.0,1500000.0,False,False,False,21274748000 -2022,Table 1.2,D,24,itemized_deductions,All,1000000.0,1500000.0,True,False,False,230387 -2022,Table 1.2,E,25,itemized_deductions,All,1500000.0,2000000.0,False,False,False,12194361000 -2022,Table 1.2,D,25,itemized_deductions,All,1500000.0,2000000.0,True,False,False,101541 -2022,Table 1.2,E,26,itemized_deductions,All,2000000.0,5000000.0,False,False,False,29514407000 -2022,Table 1.2,D,26,itemized_deductions,All,2000000.0,5000000.0,True,False,False,153659 -2022,Table 1.2,E,27,itemized_deductions,All,5000000.0,10000000.0,False,False,False,18019722000 -2022,Table 1.2,D,27,itemized_deductions,All,5000000.0,10000000.0,True,False,False,42951 -2022,Table 1.2,E,28,itemized_deductions,All,10000000.0,inf,False,False,False,78344359000 -2022,Table 1.2,D,28,itemized_deductions,All,10000000.0,inf,True,False,False,30108 -2022,Table 2.1,CJ,10,itemized_general_sales_tax_deduction,All,-inf,inf,False,False,True,28500488000 -2022,Table 2.1,CI,10,itemized_general_sales_tax_deduction,All,-inf,inf,True,False,True,3653312 -2022,Table 2.1,CJ,11,itemized_general_sales_tax_deduction,All,0.0,5000.0,False,False,False,32892000 -2022,Table 2.1,CI,11,itemized_general_sales_tax_deduction,All,0.0,5000.0,True,False,False,48417 -2022,Table 2.1,CJ,12,itemized_general_sales_tax_deduction,All,5000.0,10000.0,False,False,False,52650000 -2022,Table 2.1,CI,12,itemized_general_sales_tax_deduction,All,5000.0,10000.0,True,False,False,60906 -2022,Table 2.1,CJ,13,itemized_general_sales_tax_deduction,All,10000.0,15000.0,False,False,False,41651000 -2022,Table 2.1,CI,13,itemized_general_sales_tax_deduction,All,10000.0,15000.0,True,False,False,62658 -2022,Table 2.1,CJ,14,itemized_general_sales_tax_deduction,All,15000.0,20000.0,False,False,False,87502000 -2022,Table 2.1,CI,14,itemized_general_sales_tax_deduction,All,15000.0,20000.0,True,False,False,81757 -2022,Table 2.1,CJ,15,itemized_general_sales_tax_deduction,All,20000.0,25000.0,False,False,False,138220000 -2022,Table 2.1,CI,15,itemized_general_sales_tax_deduction,All,20000.0,25000.0,True,False,False,80981 -2022,Table 2.1,CJ,16,itemized_general_sales_tax_deduction,All,25000.0,30000.0,False,False,False,111030000 -2022,Table 2.1,CI,16,itemized_general_sales_tax_deduction,All,25000.0,30000.0,True,False,False,69038 -2022,Table 2.1,CJ,17,itemized_general_sales_tax_deduction,All,30000.0,35000.0,False,False,False,143257000 -2022,Table 2.1,CI,17,itemized_general_sales_tax_deduction,All,30000.0,35000.0,True,False,False,90770 -2022,Table 2.1,CJ,18,itemized_general_sales_tax_deduction,All,35000.0,40000.0,False,False,False,172862000 -2022,Table 2.1,CI,18,itemized_general_sales_tax_deduction,All,35000.0,40000.0,True,False,False,109919 -2022,Table 2.1,CJ,19,itemized_general_sales_tax_deduction,All,40000.0,45000.0,False,False,False,129523000 -2022,Table 2.1,CI,19,itemized_general_sales_tax_deduction,All,40000.0,45000.0,True,False,False,88569 -2022,Table 2.1,CJ,20,itemized_general_sales_tax_deduction,All,45000.0,50000.0,False,False,False,163928000 -2022,Table 2.1,CI,20,itemized_general_sales_tax_deduction,All,45000.0,50000.0,True,False,False,105651 -2022,Table 2.1,CJ,21,itemized_general_sales_tax_deduction,All,50000.0,55000.0,False,False,False,207610000 -2022,Table 2.1,CI,21,itemized_general_sales_tax_deduction,All,50000.0,55000.0,True,False,False,109135 -2022,Table 2.1,CJ,22,itemized_general_sales_tax_deduction,All,55000.0,60000.0,False,False,False,158943000 -2022,Table 2.1,CI,22,itemized_general_sales_tax_deduction,All,55000.0,60000.0,True,False,False,102830 -2022,Table 2.1,CJ,23,itemized_general_sales_tax_deduction,All,60000.0,75000.0,False,False,False,611581000 -2022,Table 2.1,CI,23,itemized_general_sales_tax_deduction,All,60000.0,75000.0,True,False,False,334107 -2022,Table 2.1,CJ,24,itemized_general_sales_tax_deduction,All,75000.0,100000.0,False,False,False,777926000 -2022,Table 2.1,CI,24,itemized_general_sales_tax_deduction,All,75000.0,100000.0,True,False,False,403661 -2022,Table 2.1,CJ,25,itemized_general_sales_tax_deduction,All,100000.0,200000.0,False,False,False,2343346000 -2022,Table 2.1,CI,25,itemized_general_sales_tax_deduction,All,100000.0,200000.0,True,False,False,932034 -2022,Table 2.1,CJ,26,itemized_general_sales_tax_deduction,All,200000.0,500000.0,False,False,False,2466407000 -2022,Table 2.1,CI,26,itemized_general_sales_tax_deduction,All,200000.0,500000.0,True,False,False,669142 -2022,Table 2.1,CJ,27,itemized_general_sales_tax_deduction,All,500000.0,1000000.0,False,False,False,20121880000 -2022,Table 2.1,CI,27,itemized_general_sales_tax_deduction,All,500000.0,1000000.0,True,False,False,191587 -2022,Table 2.1,CJ,28,itemized_general_sales_tax_deduction,All,1000000.0,1500000.0,False,False,False,189358000 -2022,Table 2.1,CI,28,itemized_general_sales_tax_deduction,All,1000000.0,1500000.0,True,False,False,48184 -2022,Table 2.1,CJ,29,itemized_general_sales_tax_deduction,All,1500000.0,2000000.0,False,False,False,88916000 -2022,Table 2.1,CI,29,itemized_general_sales_tax_deduction,All,1500000.0,2000000.0,True,False,False,21636 -2022,Table 2.1,CJ,30,itemized_general_sales_tax_deduction,All,2000000.0,5000000.0,False,False,False,136299000 -2022,Table 2.1,CI,30,itemized_general_sales_tax_deduction,All,2000000.0,5000000.0,True,False,False,29825 -2022,Table 2.1,CJ,31,itemized_general_sales_tax_deduction,All,5000000.0,10000000.0,False,False,False,66402000 -2022,Table 2.1,CI,31,itemized_general_sales_tax_deduction,All,5000000.0,10000000.0,True,False,False,7757 -2022,Table 2.1,CJ,32,itemized_general_sales_tax_deduction,All,10000000.0,inf,False,False,False,258304000 -2022,Table 2.1,CI,32,itemized_general_sales_tax_deduction,All,10000000.0,inf,True,False,False,4747 -2022,Table 2.1,CL,10,itemized_real_estate_tax_deductions,All,-inf,inf,False,False,True,106876443000 -2022,Table 2.1,CK,10,itemized_real_estate_tax_deductions,All,-inf,inf,True,False,True,12922862 -2022,Table 2.1,CL,11,itemized_real_estate_tax_deductions,All,0.0,5000.0,False,False,False,367851000 -2022,Table 2.1,CK,11,itemized_real_estate_tax_deductions,All,0.0,5000.0,True,False,False,58876 -2022,Table 2.1,CL,12,itemized_real_estate_tax_deductions,All,5000.0,10000.0,False,False,False,351819000 -2022,Table 2.1,CK,12,itemized_real_estate_tax_deductions,All,5000.0,10000.0,True,False,False,63089 -2022,Table 2.1,CL,13,itemized_real_estate_tax_deductions,All,10000.0,15000.0,False,False,False,411469000 -2022,Table 2.1,CK,13,itemized_real_estate_tax_deductions,All,10000.0,15000.0,True,False,False,75383 -2022,Table 2.1,CL,14,itemized_real_estate_tax_deductions,All,15000.0,20000.0,False,False,False,554905000 -2022,Table 2.1,CK,14,itemized_real_estate_tax_deductions,All,15000.0,20000.0,True,False,False,94124 -2022,Table 2.1,CL,15,itemized_real_estate_tax_deductions,All,20000.0,25000.0,False,False,False,740767000 -2022,Table 2.1,CK,15,itemized_real_estate_tax_deductions,All,20000.0,25000.0,True,False,False,118916 -2022,Table 2.1,CL,16,itemized_real_estate_tax_deductions,All,25000.0,30000.0,False,False,False,729232000 -2022,Table 2.1,CK,16,itemized_real_estate_tax_deductions,All,25000.0,30000.0,True,False,False,123859 -2022,Table 2.1,CL,17,itemized_real_estate_tax_deductions,All,30000.0,35000.0,False,False,False,661642000 -2022,Table 2.1,CK,17,itemized_real_estate_tax_deductions,All,30000.0,35000.0,True,False,False,135113 -2022,Table 2.1,CL,18,itemized_real_estate_tax_deductions,All,35000.0,40000.0,False,False,False,983136000 -2022,Table 2.1,CK,18,itemized_real_estate_tax_deductions,All,35000.0,40000.0,True,False,False,181762 -2022,Table 2.1,CL,19,itemized_real_estate_tax_deductions,All,40000.0,45000.0,False,False,False,878695000 -2022,Table 2.1,CK,19,itemized_real_estate_tax_deductions,All,40000.0,45000.0,True,False,False,171788 -2022,Table 2.1,CL,20,itemized_real_estate_tax_deductions,All,45000.0,50000.0,False,False,False,1171434000 -2022,Table 2.1,CK,20,itemized_real_estate_tax_deductions,All,45000.0,50000.0,True,False,False,220013 -2022,Table 2.1,CL,21,itemized_real_estate_tax_deductions,All,50000.0,55000.0,False,False,False,1282934000 -2022,Table 2.1,CK,21,itemized_real_estate_tax_deductions,All,50000.0,55000.0,True,False,False,244422 -2022,Table 2.1,CL,22,itemized_real_estate_tax_deductions,All,55000.0,60000.0,False,False,False,1354048000 -2022,Table 2.1,CK,22,itemized_real_estate_tax_deductions,All,55000.0,60000.0,True,False,False,266461 -2022,Table 2.1,CL,23,itemized_real_estate_tax_deductions,All,60000.0,75000.0,False,False,False,4893705000 -2022,Table 2.1,CK,23,itemized_real_estate_tax_deductions,All,60000.0,75000.0,True,False,False,958968 -2022,Table 2.1,CL,24,itemized_real_estate_tax_deductions,All,75000.0,100000.0,False,False,False,9182550000 -2022,Table 2.1,CK,24,itemized_real_estate_tax_deductions,All,75000.0,100000.0,True,False,False,1632361 -2022,Table 2.1,CL,25,itemized_real_estate_tax_deductions,All,100000.0,200000.0,False,False,False,26839414000 -2022,Table 2.1,CK,25,itemized_real_estate_tax_deductions,All,100000.0,200000.0,True,False,False,4208040 -2022,Table 2.1,CL,26,itemized_real_estate_tax_deductions,All,200000.0,500000.0,False,False,False,29283902000 -2022,Table 2.1,CK,26,itemized_real_estate_tax_deductions,All,200000.0,500000.0,True,False,False,3046358 -2022,Table 2.1,CL,27,itemized_real_estate_tax_deductions,All,500000.0,1000000.0,False,False,False,12750661000 -2022,Table 2.1,CK,27,itemized_real_estate_tax_deductions,All,500000.0,1000000.0,True,False,False,826870 -2022,Table 2.1,CL,28,itemized_real_estate_tax_deductions,All,1000000.0,1500000.0,False,False,False,4208736000 -2022,Table 2.1,CK,28,itemized_real_estate_tax_deductions,All,1000000.0,1500000.0,True,False,False,208376 -2022,Table 2.1,CL,29,itemized_real_estate_tax_deductions,All,1500000.0,2000000.0,False,False,False,2182570000 -2022,Table 2.1,CK,29,itemized_real_estate_tax_deductions,All,1500000.0,2000000.0,True,False,False,90531 -2022,Table 2.1,CL,30,itemized_real_estate_tax_deductions,All,2000000.0,5000000.0,False,False,False,4206821000 -2022,Table 2.1,CK,30,itemized_real_estate_tax_deductions,All,2000000.0,5000000.0,True,False,False,134974 -2022,Table 2.1,CL,31,itemized_real_estate_tax_deductions,All,5000000.0,10000000.0,False,False,False,1651157000 -2022,Table 2.1,CK,31,itemized_real_estate_tax_deductions,All,5000000.0,10000000.0,True,False,False,36961 -2022,Table 2.1,CL,32,itemized_real_estate_tax_deductions,All,10000000.0,inf,False,False,False,2188994000 -2022,Table 2.1,CK,32,itemized_real_estate_tax_deductions,All,10000000.0,inf,True,False,False,25619 -2022,Table 2.1,CH,10,itemized_state_income_tax_deductions,All,-inf,inf,False,False,True,257354764000 -2022,Table 2.1,CG,10,itemized_state_income_tax_deductions,All,-inf,inf,True,False,True,10988927 -2022,Table 2.1,CH,11,itemized_state_income_tax_deductions,All,0.0,5000.0,False,False,False,59953000 -2022,Table 2.1,CG,11,itemized_state_income_tax_deductions,All,0.0,5000.0,True,False,False,26571 -2022,Table 2.1,CH,12,itemized_state_income_tax_deductions,All,5000.0,10000.0,False,False,False,105836000 -2022,Table 2.1,CG,12,itemized_state_income_tax_deductions,All,5000.0,10000.0,True,False,False,31007 -2022,Table 2.1,CH,13,itemized_state_income_tax_deductions,All,10000.0,15000.0,False,False,False,82289000 -2022,Table 2.1,CG,13,itemized_state_income_tax_deductions,All,10000.0,15000.0,True,False,False,40264 -2022,Table 2.1,CH,14,itemized_state_income_tax_deductions,All,15000.0,20000.0,False,False,False,136023000 -2022,Table 2.1,CG,14,itemized_state_income_tax_deductions,All,15000.0,20000.0,True,False,False,56624 -2022,Table 2.1,CH,15,itemized_state_income_tax_deductions,All,20000.0,25000.0,False,False,False,219740000 -2022,Table 2.1,CG,15,itemized_state_income_tax_deductions,All,20000.0,25000.0,True,False,False,78227 -2022,Table 2.1,CH,16,itemized_state_income_tax_deductions,All,25000.0,30000.0,False,False,False,289210000 -2022,Table 2.1,CG,16,itemized_state_income_tax_deductions,All,25000.0,30000.0,True,False,False,112058 -2022,Table 2.1,CH,17,itemized_state_income_tax_deductions,All,30000.0,35000.0,False,False,False,228824000 -2022,Table 2.1,CG,17,itemized_state_income_tax_deductions,All,30000.0,35000.0,True,False,False,102258 -2022,Table 2.1,CH,18,itemized_state_income_tax_deductions,All,35000.0,40000.0,False,False,False,523540000 -2022,Table 2.1,CG,18,itemized_state_income_tax_deductions,All,35000.0,40000.0,True,False,False,146275 -2022,Table 2.1,CH,19,itemized_state_income_tax_deductions,All,40000.0,45000.0,False,False,False,465899000 -2022,Table 2.1,CG,19,itemized_state_income_tax_deductions,All,40000.0,45000.0,True,False,False,143845 -2022,Table 2.1,CH,20,itemized_state_income_tax_deductions,All,45000.0,50000.0,False,False,False,470460000 -2022,Table 2.1,CG,20,itemized_state_income_tax_deductions,All,45000.0,50000.0,True,False,False,175834 -2022,Table 2.1,CH,21,itemized_state_income_tax_deductions,All,50000.0,55000.0,False,False,False,665647000 -2022,Table 2.1,CG,21,itemized_state_income_tax_deductions,All,50000.0,55000.0,True,False,False,223652 -2022,Table 2.1,CH,22,itemized_state_income_tax_deductions,All,55000.0,60000.0,False,False,False,718738000 -2022,Table 2.1,CG,22,itemized_state_income_tax_deductions,All,55000.0,60000.0,True,False,False,244331 -2022,Table 2.1,CH,23,itemized_state_income_tax_deductions,All,60000.0,75000.0,False,False,False,3143733000 -2022,Table 2.1,CG,23,itemized_state_income_tax_deductions,All,60000.0,75000.0,True,False,False,785403 -2022,Table 2.1,CH,24,itemized_state_income_tax_deductions,All,75000.0,100000.0,False,False,False,7250442000 -2022,Table 2.1,CG,24,itemized_state_income_tax_deductions,All,75000.0,100000.0,True,False,False,1428810 -2022,Table 2.1,CH,25,itemized_state_income_tax_deductions,All,100000.0,200000.0,False,False,False,29975406000 -2022,Table 2.1,CG,25,itemized_state_income_tax_deductions,All,100000.0,200000.0,True,False,False,3673771 -2022,Table 2.1,CH,26,itemized_state_income_tax_deductions,All,200000.0,500000.0,False,False,False,52499008000 -2022,Table 2.1,CG,26,itemized_state_income_tax_deductions,All,200000.0,500000.0,True,False,False,2587766 -2022,Table 2.1,CH,27,itemized_state_income_tax_deductions,All,500000.0,1000000.0,False,False,False,35533301000 -2022,Table 2.1,CG,27,itemized_state_income_tax_deductions,All,500000.0,1000000.0,True,False,False,693906 -2022,Table 2.1,CH,28,itemized_state_income_tax_deductions,All,1000000.0,1500000.0,False,False,False,17378132000 -2022,Table 2.1,CG,28,itemized_state_income_tax_deductions,All,1000000.0,1500000.0,True,False,False,178881 -2022,Table 2.1,CH,29,itemized_state_income_tax_deductions,All,1500000.0,2000000.0,False,False,False,10837281000 -2022,Table 2.1,CG,29,itemized_state_income_tax_deductions,All,1500000.0,2000000.0,True,False,False,78538 -2022,Table 2.1,CH,30,itemized_state_income_tax_deductions,All,2000000.0,5000000.0,False,False,False,29273724000 -2022,Table 2.1,CG,30,itemized_state_income_tax_deductions,All,2000000.0,5000000.0,True,False,False,121487 -2022,Table 2.1,CH,31,itemized_state_income_tax_deductions,All,5000000.0,10000000.0,False,False,False,18054598000 -2022,Table 2.1,CG,31,itemized_state_income_tax_deductions,All,5000000.0,10000000.0,True,False,False,34565 -2022,Table 2.1,CH,32,itemized_state_income_tax_deductions,All,10000000.0,inf,False,False,False,49442981000 -2022,Table 2.1,CG,32,itemized_state_income_tax_deductions,All,10000000.0,inf,True,False,False,24856 -2022,Table 2.1,CB,10,itemized_taxes_paid_deductions,All,-inf,inf,False,False,True,125205903000 -2022,Table 2.1,CA,10,itemized_taxes_paid_deductions,All,-inf,inf,True,False,True,15079029 -2022,Table 2.1,CB,11,itemized_taxes_paid_deductions,All,0.0,5000.0,False,False,False,409873000 -2022,Table 2.1,CA,11,itemized_taxes_paid_deductions,All,0.0,5000.0,True,False,False,93031 -2022,Table 2.1,CB,12,itemized_taxes_paid_deductions,All,5000.0,10000.0,False,False,False,424919000 -2022,Table 2.1,CA,12,itemized_taxes_paid_deductions,All,5000.0,10000.0,True,False,False,99629 -2022,Table 2.1,CB,13,itemized_taxes_paid_deductions,All,10000.0,15000.0,False,False,False,507176000 -2022,Table 2.1,CA,13,itemized_taxes_paid_deductions,All,10000.0,15000.0,True,False,False,111410 -2022,Table 2.1,CB,14,itemized_taxes_paid_deductions,All,15000.0,20000.0,False,False,False,693372000 -2022,Table 2.1,CA,14,itemized_taxes_paid_deductions,All,15000.0,20000.0,True,False,False,148532 -2022,Table 2.1,CB,15,itemized_taxes_paid_deductions,All,20000.0,25000.0,False,False,False,905356000 -2022,Table 2.1,CA,15,itemized_taxes_paid_deductions,All,20000.0,25000.0,True,False,False,177112 -2022,Table 2.1,CB,16,itemized_taxes_paid_deductions,All,25000.0,30000.0,False,False,False,993800000 -2022,Table 2.1,CA,16,itemized_taxes_paid_deductions,All,25000.0,30000.0,True,False,False,193039 -2022,Table 2.1,CB,17,itemized_taxes_paid_deductions,All,30000.0,35000.0,False,False,False,1016026000 -2022,Table 2.1,CA,17,itemized_taxes_paid_deductions,All,30000.0,35000.0,True,False,False,204479 -2022,Table 2.1,CB,18,itemized_taxes_paid_deductions,All,35000.0,40000.0,False,False,False,1566235000 -2022,Table 2.1,CA,18,itemized_taxes_paid_deductions,All,35000.0,40000.0,True,False,False,265330 -2022,Table 2.1,CB,19,itemized_taxes_paid_deductions,All,40000.0,45000.0,False,False,False,1405499000 -2022,Table 2.1,CA,19,itemized_taxes_paid_deductions,All,40000.0,45000.0,True,False,False,249907 -2022,Table 2.1,CB,20,itemized_taxes_paid_deductions,All,45000.0,50000.0,False,False,False,1746619000 -2022,Table 2.1,CA,20,itemized_taxes_paid_deductions,All,45000.0,50000.0,True,False,False,301730 -2022,Table 2.1,CB,21,itemized_taxes_paid_deductions,All,50000.0,55000.0,False,False,False,2042133000 -2022,Table 2.1,CA,21,itemized_taxes_paid_deductions,All,50000.0,55000.0,True,False,False,339363 -2022,Table 2.1,CB,22,itemized_taxes_paid_deductions,All,55000.0,60000.0,False,False,False,2221807000 -2022,Table 2.1,CA,22,itemized_taxes_paid_deductions,All,55000.0,60000.0,True,False,False,352685 -2022,Table 2.1,CB,23,itemized_taxes_paid_deductions,All,60000.0,75000.0,False,False,False,7755846000 -2022,Table 2.1,CA,23,itemized_taxes_paid_deductions,All,60000.0,75000.0,True,False,False,1162475 -2022,Table 2.1,CB,24,itemized_taxes_paid_deductions,All,75000.0,100000.0,False,False,False,14632617000 -2022,Table 2.1,CA,24,itemized_taxes_paid_deductions,All,75000.0,100000.0,True,False,False,1896368 -2022,Table 2.1,CB,25,itemized_taxes_paid_deductions,All,100000.0,200000.0,False,False,False,41594496000 -2022,Table 2.1,CA,25,itemized_taxes_paid_deductions,All,100000.0,200000.0,True,False,False,4707248 -2022,Table 2.1,CB,26,itemized_taxes_paid_deductions,All,200000.0,500000.0,False,False,False,32118348000 -2022,Table 2.1,CA,26,itemized_taxes_paid_deductions,All,200000.0,500000.0,True,False,False,3321050 -2022,Table 2.1,CB,27,itemized_taxes_paid_deductions,All,500000.0,1000000.0,False,False,False,8914959000 -2022,Table 2.1,CA,27,itemized_taxes_paid_deductions,All,500000.0,1000000.0,True,False,False,898621 -2022,Table 2.1,CB,28,itemized_taxes_paid_deductions,All,1000000.0,1500000.0,False,False,False,2308379000 -2022,Table 2.1,CA,28,itemized_taxes_paid_deductions,All,1000000.0,1500000.0,True,False,False,229745 -2022,Table 2.1,CB,29,itemized_taxes_paid_deductions,All,1500000.0,2000000.0,False,False,False,1012061000 -2022,Table 2.1,CA,29,itemized_taxes_paid_deductions,All,1500000.0,2000000.0,True,False,False,101270 -2022,Table 2.1,CB,30,itemized_taxes_paid_deductions,All,2000000.0,5000000.0,False,False,False,1580393000 -2022,Table 2.1,CA,30,itemized_taxes_paid_deductions,All,2000000.0,5000000.0,True,False,False,153198 -2022,Table 2.1,CB,31,itemized_taxes_paid_deductions,All,5000000.0,10000000.0,False,False,False,478695000 -2022,Table 2.1,CA,31,itemized_taxes_paid_deductions,All,5000000.0,10000000.0,True,False,False,42827 -2022,Table 2.1,CB,32,itemized_taxes_paid_deductions,All,10000000.0,inf,False,False,False,877295000 -2022,Table 2.1,CA,32,itemized_taxes_paid_deductions,All,10000000.0,inf,True,False,False,29981 -2022,Table 2.1,BV,10,medical_expense_deductions_capped,All,-inf,inf,False,False,True,92946111000 -2022,Table 2.1,BU,10,medical_expense_deductions_capped,All,-inf,inf,True,False,True,3983082 -2022,Table 2.1,BV,11,medical_expense_deductions_capped,All,0.0,5000.0,False,False,False,1191699000 -2022,Table 2.1,BU,11,medical_expense_deductions_capped,All,0.0,5000.0,True,False,False,66399 -2022,Table 2.1,BV,12,medical_expense_deductions_capped,All,5000.0,10000.0,False,False,False,10098694000 -2022,Table 2.1,BU,12,medical_expense_deductions_capped,All,5000.0,10000.0,True,False,False,70113 -2022,Table 2.1,BV,13,medical_expense_deductions_capped,All,10000.0,15000.0,False,False,False,1617799000 -2022,Table 2.1,BU,13,medical_expense_deductions_capped,All,10000.0,15000.0,True,False,False,84637 -2022,Table 2.1,BV,14,medical_expense_deductions_capped,All,15000.0,20000.0,False,False,False,1835915000 -2022,Table 2.1,BU,14,medical_expense_deductions_capped,All,15000.0,20000.0,True,False,False,119212 -2022,Table 2.1,BV,15,medical_expense_deductions_capped,All,20000.0,25000.0,False,False,False,2419602000 -2022,Table 2.1,BU,15,medical_expense_deductions_capped,All,20000.0,25000.0,True,False,False,127977 -2022,Table 2.1,BV,16,medical_expense_deductions_capped,All,25000.0,30000.0,False,False,False,2830226000 -2022,Table 2.1,BU,16,medical_expense_deductions_capped,All,25000.0,30000.0,True,False,False,133921 -2022,Table 2.1,BV,17,medical_expense_deductions_capped,All,30000.0,35000.0,False,False,False,2811061000 -2022,Table 2.1,BU,17,medical_expense_deductions_capped,All,30000.0,35000.0,True,False,False,141187 -2022,Table 2.1,BV,18,medical_expense_deductions_capped,All,35000.0,40000.0,False,False,False,3276238000 -2022,Table 2.1,BU,18,medical_expense_deductions_capped,All,35000.0,40000.0,True,False,False,176025 -2022,Table 2.1,BV,19,medical_expense_deductions_capped,All,40000.0,45000.0,False,False,False,2549754000 -2022,Table 2.1,BU,19,medical_expense_deductions_capped,All,40000.0,45000.0,True,False,False,144236 -2022,Table 2.1,BV,20,medical_expense_deductions_capped,All,45000.0,50000.0,False,False,False,3471236000 -2022,Table 2.1,BU,20,medical_expense_deductions_capped,All,45000.0,50000.0,True,False,False,169405 -2022,Table 2.1,BV,21,medical_expense_deductions_capped,All,50000.0,55000.0,False,False,False,3173483000 -2022,Table 2.1,BU,21,medical_expense_deductions_capped,All,50000.0,55000.0,True,False,False,169006 -2022,Table 2.1,BV,22,medical_expense_deductions_capped,All,55000.0,60000.0,False,False,False,2996137000 -2022,Table 2.1,BU,22,medical_expense_deductions_capped,All,55000.0,60000.0,True,False,False,156340 -2022,Table 2.1,BV,23,medical_expense_deductions_capped,All,60000.0,75000.0,False,False,False,8982950000 -2022,Table 2.1,BU,23,medical_expense_deductions_capped,All,60000.0,75000.0,True,False,False,493012 -2022,Table 2.1,BV,24,medical_expense_deductions_capped,All,75000.0,100000.0,False,False,False,12134303000 -2022,Table 2.1,BU,24,medical_expense_deductions_capped,All,75000.0,100000.0,True,False,False,589529 -2022,Table 2.1,BV,25,medical_expense_deductions_capped,All,100000.0,200000.0,False,False,False,21689680000 -2022,Table 2.1,BU,25,medical_expense_deductions_capped,All,100000.0,200000.0,True,False,False,1040043 -2022,Table 2.1,BV,26,medical_expense_deductions_capped,All,200000.0,500000.0,False,False,False,9579720000 -2022,Table 2.1,BU,26,medical_expense_deductions_capped,All,200000.0,500000.0,True,False,False,278713 -2022,Table 2.1,BV,27,medical_expense_deductions_capped,All,500000.0,1000000.0,False,False,False,1776927000 -2022,Table 2.1,BU,27,medical_expense_deductions_capped,All,500000.0,1000000.0,True,False,False,19750 -2022,Table 2.1,BV,28,medical_expense_deductions_capped,All,1000000.0,1500000.0,False,False,False,259973000 -2022,Table 2.1,BU,28,medical_expense_deductions_capped,All,1000000.0,1500000.0,True,False,False,2220 -2022,Table 2.1,BV,29,medical_expense_deductions_capped,All,1500000.0,2000000.0,False,False,False,109843000 -2022,Table 2.1,BU,29,medical_expense_deductions_capped,All,1500000.0,2000000.0,True,False,False,771 -2022,Table 2.1,BV,30,medical_expense_deductions_capped,All,2000000.0,5000000.0,False,False,False,120686000 -2022,Table 2.1,BU,30,medical_expense_deductions_capped,All,2000000.0,5000000.0,True,False,False,544 -2022,Table 2.1,BV,31,medical_expense_deductions_capped,All,5000000.0,10000000.0,False,False,False,18806000 -2022,Table 2.1,BU,31,medical_expense_deductions_capped,All,5000000.0,10000000.0,True,False,False,39 -2022,Table 2.1,BV,32,medical_expense_deductions_capped,All,10000000.0,inf,False,False,False,1380000 -2022,Table 2.1,BU,32,medical_expense_deductions_capped,All,10000000.0,inf,True,False,False,3 -2022,Table 2.1,BX,10,medical_expense_deductions_uncapped,All,-inf,inf,False,False,True,120988136000 -2022,Table 2.1,BW,10,medical_expense_deductions_uncapped,All,-inf,inf,True,False,True,3983082 -2022,Table 2.1,BX,11,medical_expense_deductions_uncapped,All,0.0,5000.0,False,False,False,1202437000 -2022,Table 2.1,BW,11,medical_expense_deductions_uncapped,All,0.0,5000.0,True,False,False,66399 -2022,Table 2.1,BX,12,medical_expense_deductions_uncapped,All,5000.0,10000.0,False,False,False,10139280000 -2022,Table 2.1,BW,12,medical_expense_deductions_uncapped,All,5000.0,10000.0,True,False,False,70113 -2022,Table 2.1,BX,13,medical_expense_deductions_uncapped,All,10000.0,15000.0,False,False,False,1696521000 -2022,Table 2.1,BW,13,medical_expense_deductions_uncapped,All,10000.0,15000.0,True,False,False,84637 -2022,Table 2.1,BX,14,medical_expense_deductions_uncapped,All,15000.0,20000.0,False,False,False,1993208000 -2022,Table 2.1,BW,14,medical_expense_deductions_uncapped,All,15000.0,20000.0,True,False,False,119212 -2022,Table 2.1,BX,15,medical_expense_deductions_uncapped,All,20000.0,25000.0,False,False,False,2638259000 -2022,Table 2.1,BW,15,medical_expense_deductions_uncapped,All,20000.0,25000.0,True,False,False,127977 -2022,Table 2.1,BX,16,medical_expense_deductions_uncapped,All,25000.0,30000.0,False,False,False,3107240000 -2022,Table 2.1,BW,16,medical_expense_deductions_uncapped,All,25000.0,30000.0,True,False,False,133921 -2022,Table 2.1,BX,17,medical_expense_deductions_uncapped,All,30000.0,35000.0,False,False,False,3156446000 -2022,Table 2.1,BW,17,medical_expense_deductions_uncapped,All,30000.0,35000.0,True,False,False,141187 -2022,Table 2.1,BX,18,medical_expense_deductions_uncapped,All,35000.0,40000.0,False,False,False,3771170000 -2022,Table 2.1,BW,18,medical_expense_deductions_uncapped,All,35000.0,40000.0,True,False,False,176025 -2022,Table 2.1,BX,19,medical_expense_deductions_uncapped,All,40000.0,45000.0,False,False,False,3011339000 -2022,Table 2.1,BW,19,medical_expense_deductions_uncapped,All,40000.0,45000.0,True,False,False,144236 -2022,Table 2.1,BX,20,medical_expense_deductions_uncapped,All,45000.0,50000.0,False,False,False,4074881000 -2022,Table 2.1,BW,20,medical_expense_deductions_uncapped,All,45000.0,50000.0,True,False,False,169405 -2022,Table 2.1,BX,21,medical_expense_deductions_uncapped,All,50000.0,55000.0,False,False,False,3836231000 -2022,Table 2.1,BW,21,medical_expense_deductions_uncapped,All,50000.0,55000.0,True,False,False,169006 -2022,Table 2.1,BX,22,medical_expense_deductions_uncapped,All,55000.0,60000.0,False,False,False,3669549000 -2022,Table 2.1,BW,22,medical_expense_deductions_uncapped,All,55000.0,60000.0,True,False,False,156340 -2022,Table 2.1,BX,23,medical_expense_deductions_uncapped,All,60000.0,75000.0,False,False,False,11480491000 -2022,Table 2.1,BW,23,medical_expense_deductions_uncapped,All,60000.0,75000.0,True,False,False,493012 -2022,Table 2.1,BX,24,medical_expense_deductions_uncapped,All,75000.0,100000.0,False,False,False,15979554000 -2022,Table 2.1,BW,24,medical_expense_deductions_uncapped,All,75000.0,100000.0,True,False,False,589529 -2022,Table 2.1,BX,25,medical_expense_deductions_uncapped,All,100000.0,200000.0,False,False,False,32277299000 -2022,Table 2.1,BW,25,medical_expense_deductions_uncapped,All,100000.0,200000.0,True,False,False,1040043 -2022,Table 2.1,BX,26,medical_expense_deductions_uncapped,All,200000.0,500000.0,False,False,False,15279634000 -2022,Table 2.1,BW,26,medical_expense_deductions_uncapped,All,200000.0,500000.0,True,False,False,278713 -2022,Table 2.1,BX,27,medical_expense_deductions_uncapped,All,500000.0,1000000.0,False,False,False,2729821000 -2022,Table 2.1,BW,27,medical_expense_deductions_uncapped,All,500000.0,1000000.0,True,False,False,19750 -2022,Table 2.1,BX,28,medical_expense_deductions_uncapped,All,1000000.0,1500000.0,False,False,False,457210000 -2022,Table 2.1,BW,28,medical_expense_deductions_uncapped,All,1000000.0,1500000.0,True,False,False,2220 -2022,Table 2.1,BX,29,medical_expense_deductions_uncapped,All,1500000.0,2000000.0,False,False,False,208301000 -2022,Table 2.1,BW,29,medical_expense_deductions_uncapped,All,1500000.0,2000000.0,True,False,False,771 -2022,Table 2.1,BX,30,medical_expense_deductions_uncapped,All,2000000.0,5000000.0,False,False,False,236937000 -2022,Table 2.1,BW,30,medical_expense_deductions_uncapped,All,2000000.0,5000000.0,True,False,False,544 -2022,Table 2.1,BX,31,medical_expense_deductions_uncapped,All,5000000.0,10000000.0,False,False,False,38147000 -2022,Table 2.1,BW,31,medical_expense_deductions_uncapped,All,5000000.0,10000000.0,True,False,False,39 -2022,Table 2.1,BX,32,medical_expense_deductions_uncapped,All,10000000.0,inf,False,False,False,4181000 -2022,Table 2.1,BW,32,medical_expense_deductions_uncapped,All,10000000.0,inf,True,False,False,3 -2022,Table 2.1,CX,10,mortgage_interest_deductions,All,-inf,inf,False,False,True,145435728000 -2022,Table 2.1,CW,10,mortgage_interest_deductions,All,-inf,inf,True,False,True,11629555 -2022,Table 2.1,CX,11,mortgage_interest_deductions,All,0.0,5000.0,False,False,False,494627000 -2022,Table 2.1,CW,11,mortgage_interest_deductions,All,0.0,5000.0,True,False,False,49012 -2022,Table 2.1,CX,12,mortgage_interest_deductions,All,5000.0,10000.0,False,False,False,530166000 -2022,Table 2.1,CW,12,mortgage_interest_deductions,All,5000.0,10000.0,True,False,False,53786 -2022,Table 2.1,CX,13,mortgage_interest_deductions,All,10000.0,15000.0,False,False,False,467388000 -2022,Table 2.1,CW,13,mortgage_interest_deductions,All,10000.0,15000.0,True,False,False,50378 -2022,Table 2.1,CX,14,mortgage_interest_deductions,All,15000.0,20000.0,False,False,False,953867000 -2022,Table 2.1,CW,14,mortgage_interest_deductions,All,15000.0,20000.0,True,False,False,69179 -2022,Table 2.1,CX,15,mortgage_interest_deductions,All,20000.0,25000.0,False,False,False,1044906000 -2022,Table 2.1,CW,15,mortgage_interest_deductions,All,20000.0,25000.0,True,False,False,96021 -2022,Table 2.1,CX,16,mortgage_interest_deductions,All,25000.0,30000.0,False,False,False,1034852000 -2022,Table 2.1,CW,16,mortgage_interest_deductions,All,25000.0,30000.0,True,False,False,87201 -2022,Table 2.1,CX,17,mortgage_interest_deductions,All,30000.0,35000.0,False,False,False,1147577000 -2022,Table 2.1,CW,17,mortgage_interest_deductions,All,30000.0,35000.0,True,False,False,112541 -2022,Table 2.1,CX,18,mortgage_interest_deductions,All,35000.0,40000.0,False,False,False,1347943000 -2022,Table 2.1,CW,18,mortgage_interest_deductions,All,35000.0,40000.0,True,False,False,153739 -2022,Table 2.1,CX,19,mortgage_interest_deductions,All,40000.0,45000.0,False,False,False,1456726000 -2022,Table 2.1,CW,19,mortgage_interest_deductions,All,40000.0,45000.0,True,False,False,145538 -2022,Table 2.1,CX,20,mortgage_interest_deductions,All,45000.0,50000.0,False,False,False,1885532000 -2022,Table 2.1,CW,20,mortgage_interest_deductions,All,45000.0,50000.0,True,False,False,181958 -2022,Table 2.1,CX,21,mortgage_interest_deductions,All,50000.0,55000.0,False,False,False,2164241000 -2022,Table 2.1,CW,21,mortgage_interest_deductions,All,50000.0,55000.0,True,False,False,224320 -2022,Table 2.1,CX,22,mortgage_interest_deductions,All,55000.0,60000.0,False,False,False,2455604000 -2022,Table 2.1,CW,22,mortgage_interest_deductions,All,55000.0,60000.0,True,False,False,233844 -2022,Table 2.1,CX,23,mortgage_interest_deductions,All,60000.0,75000.0,False,False,False,7917811000 -2022,Table 2.1,CW,23,mortgage_interest_deductions,All,60000.0,75000.0,True,False,False,848002 -2022,Table 2.1,CX,24,mortgage_interest_deductions,All,75000.0,100000.0,False,False,False,14439702000 -2022,Table 2.1,CW,24,mortgage_interest_deductions,All,75000.0,100000.0,True,False,False,1504094 -2022,Table 2.1,CX,25,mortgage_interest_deductions,All,100000.0,200000.0,False,False,False,43076729000 -2022,Table 2.1,CW,25,mortgage_interest_deductions,All,100000.0,200000.0,True,False,False,3836302 -2022,Table 2.1,CX,26,mortgage_interest_deductions,All,200000.0,500000.0,False,False,False,43488414000 -2022,Table 2.1,CW,26,mortgage_interest_deductions,All,200000.0,500000.0,True,False,False,2840097 -2022,Table 2.1,CX,27,mortgage_interest_deductions,All,500000.0,1000000.0,False,False,False,13846540000 -2022,Table 2.1,CW,27,mortgage_interest_deductions,All,500000.0,1000000.0,True,False,False,751961 -2022,Table 2.1,CX,28,mortgage_interest_deductions,All,1000000.0,1500000.0,False,False,False,3428384000 -2022,Table 2.1,CW,28,mortgage_interest_deductions,All,1000000.0,1500000.0,True,False,False,176048 -2022,Table 2.1,CX,29,mortgage_interest_deductions,All,1500000.0,2000000.0,False,False,False,1442720000 -2022,Table 2.1,CW,29,mortgage_interest_deductions,All,1500000.0,2000000.0,True,False,False,73746 -2022,Table 2.1,CX,30,mortgage_interest_deductions,All,2000000.0,5000000.0,False,False,False,2010572000 -2022,Table 2.1,CW,30,mortgage_interest_deductions,All,2000000.0,5000000.0,True,False,False,102107 -2022,Table 2.1,CX,31,mortgage_interest_deductions,All,5000000.0,10000000.0,False,False,False,503857000 -2022,Table 2.1,CW,31,mortgage_interest_deductions,All,5000000.0,10000000.0,True,False,False,25106 -2022,Table 2.1,CX,32,mortgage_interest_deductions,All,10000000.0,inf,False,False,False,297571000 -2022,Table 2.1,CW,32,mortgage_interest_deductions,All,10000000.0,inf,True,False,False,14576 -2022,Table 1.4,Y,10,ordinary_dividends,All,-inf,0.0,False,False,False,3782002000 -2022,Table 1.4,X,10,ordinary_dividends,All,-inf,0.0,True,False,False,488427 -2022,Table 1.4,Y,9,ordinary_dividends,All,-inf,inf,False,False,True,412320850000 -2022,Table 1.4,X,9,ordinary_dividends,All,-inf,inf,True,False,True,32853481 -2022,Table 1.4,Y,11,ordinary_dividends,All,1.0,5000.0,False,False,False,1002127000 -2022,Table 1.4,X,11,ordinary_dividends,All,1.0,5000.0,True,False,False,926104 -2022,Table 1.4,Y,12,ordinary_dividends,All,5000.0,10000.0,False,False,False,1342704000 -2022,Table 1.4,X,12,ordinary_dividends,All,5000.0,10000.0,True,False,False,758424 -2022,Table 1.4,Y,13,ordinary_dividends,All,10000.0,15000.0,False,False,False,1799586000 -2022,Table 1.4,X,13,ordinary_dividends,All,10000.0,15000.0,True,False,False,797458 -2022,Table 1.4,Y,14,ordinary_dividends,All,15000.0,20000.0,False,False,False,1961601000 -2022,Table 1.4,X,14,ordinary_dividends,All,15000.0,20000.0,True,False,False,696385 -2022,Table 1.4,Y,15,ordinary_dividends,All,20000.0,25000.0,False,False,False,1927607000 -2022,Table 1.4,X,15,ordinary_dividends,All,20000.0,25000.0,True,False,False,724135 -2022,Table 1.4,Y,16,ordinary_dividends,All,25000.0,30000.0,False,False,False,2045508000 -2022,Table 1.4,X,16,ordinary_dividends,All,25000.0,30000.0,True,False,False,692576 -2022,Table 1.4,Y,17,ordinary_dividends,All,30000.0,40000.0,False,False,False,4236334000 -2022,Table 1.4,X,17,ordinary_dividends,All,30000.0,40000.0,True,False,False,1445415 -2022,Table 1.4,Y,18,ordinary_dividends,All,40000.0,50000.0,False,False,False,4878940000 -2022,Table 1.4,X,18,ordinary_dividends,All,40000.0,50000.0,True,False,False,1491106 -2022,Table 1.4,Y,19,ordinary_dividends,All,50000.0,75000.0,False,False,False,14654866000 -2022,Table 1.4,X,19,ordinary_dividends,All,50000.0,75000.0,True,False,False,3966461 -2022,Table 1.4,Y,20,ordinary_dividends,All,75000.0,100000.0,False,False,False,16495243000 -2022,Table 1.4,X,20,ordinary_dividends,All,75000.0,100000.0,True,False,False,3649718 -2022,Table 1.4,Y,21,ordinary_dividends,All,100000.0,200000.0,False,False,False,58133031000 -2022,Table 1.4,X,21,ordinary_dividends,All,100000.0,200000.0,True,False,False,9213886 -2022,Table 1.4,Y,22,ordinary_dividends,All,200000.0,500000.0,False,False,False,83427872000 -2022,Table 1.4,X,22,ordinary_dividends,All,200000.0,500000.0,True,False,False,5982187 -2022,Table 1.4,Y,23,ordinary_dividends,All,500000.0,1000000.0,False,False,False,47800937000 -2022,Table 1.4,X,23,ordinary_dividends,All,500000.0,1000000.0,True,False,False,1317721 -2022,Table 1.4,Y,24,ordinary_dividends,All,1000000.0,1500000.0,False,False,False,21561868000 -2022,Table 1.4,X,24,ordinary_dividends,All,1000000.0,1500000.0,True,False,False,308547 -2022,Table 1.4,Y,25,ordinary_dividends,All,1500000.0,2000000.0,False,False,False,13893099000 -2022,Table 1.4,X,25,ordinary_dividends,All,1500000.0,2000000.0,True,False,False,129569 -2022,Table 1.4,Y,26,ordinary_dividends,All,2000000.0,5000000.0,False,False,False,36124960000 -2022,Table 1.4,X,26,ordinary_dividends,All,2000000.0,5000000.0,True,False,False,184183 -2022,Table 1.4,Y,27,ordinary_dividends,All,5000000.0,10000000.0,False,False,False,21509269000 -2022,Table 1.4,X,27,ordinary_dividends,All,5000000.0,10000000.0,True,False,False,48494 -2022,Table 1.4,Y,28,ordinary_dividends,All,10000000.0,inf,False,False,False,75743296000 -2022,Table 1.4,X,28,ordinary_dividends,All,10000000.0,inf,True,False,False,32685 -2022,Table 1.4,BQ,10,partnership_and_s_corp_income,All,-inf,0.0,False,False,False,8369859000 -2022,Table 1.4,BP,10,partnership_and_s_corp_income,All,-inf,0.0,True,False,False,94554 -2022,Table 1.4,BQ,9,partnership_and_s_corp_income,All,-inf,inf,False,False,True,1299835827000 -2022,Table 1.4,BP,9,partnership_and_s_corp_income,All,-inf,inf,True,False,True,7339387 -2022,Table 1.4,BQ,11,partnership_and_s_corp_income,All,1.0,5000.0,False,False,False,403892000 -2022,Table 1.4,BP,11,partnership_and_s_corp_income,All,1.0,5000.0,True,False,False,42164 -2022,Table 1.4,BQ,12,partnership_and_s_corp_income,All,5000.0,10000.0,False,False,False,695008000 -2022,Table 1.4,BP,12,partnership_and_s_corp_income,All,5000.0,10000.0,True,False,False,90857 -2022,Table 1.4,BQ,13,partnership_and_s_corp_income,All,10000.0,15000.0,False,False,False,841760000 -2022,Table 1.4,BP,13,partnership_and_s_corp_income,All,10000.0,15000.0,True,False,False,96494 -2022,Table 1.4,BQ,14,partnership_and_s_corp_income,All,15000.0,20000.0,False,False,False,1045289000 -2022,Table 1.4,BP,14,partnership_and_s_corp_income,All,15000.0,20000.0,True,False,False,108155 -2022,Table 1.4,BQ,15,partnership_and_s_corp_income,All,20000.0,25000.0,False,False,False,1354419000 -2022,Table 1.4,BP,15,partnership_and_s_corp_income,All,20000.0,25000.0,True,False,False,95391 -2022,Table 1.4,BQ,16,partnership_and_s_corp_income,All,25000.0,30000.0,False,False,False,2011898000 -2022,Table 1.4,BP,16,partnership_and_s_corp_income,All,25000.0,30000.0,True,False,False,118990 -2022,Table 1.4,BQ,17,partnership_and_s_corp_income,All,30000.0,40000.0,False,False,False,4880956000 -2022,Table 1.4,BP,17,partnership_and_s_corp_income,All,30000.0,40000.0,True,False,False,263839 -2022,Table 1.4,BQ,18,partnership_and_s_corp_income,All,40000.0,50000.0,False,False,False,4933184000 -2022,Table 1.4,BP,18,partnership_and_s_corp_income,All,40000.0,50000.0,True,False,False,230301 -2022,Table 1.4,BQ,19,partnership_and_s_corp_income,All,50000.0,75000.0,False,False,False,16901586000 -2022,Table 1.4,BP,19,partnership_and_s_corp_income,All,50000.0,75000.0,True,False,False,643886 -2022,Table 1.4,BQ,20,partnership_and_s_corp_income,All,75000.0,100000.0,False,False,False,18119959000 -2022,Table 1.4,BP,20,partnership_and_s_corp_income,All,75000.0,100000.0,True,False,False,563664 -2022,Table 1.4,BQ,21,partnership_and_s_corp_income,All,100000.0,200000.0,False,False,False,81479507000 -2022,Table 1.4,BP,21,partnership_and_s_corp_income,All,100000.0,200000.0,True,False,False,1789868 -2022,Table 1.4,BQ,22,partnership_and_s_corp_income,All,200000.0,500000.0,False,False,False,198668939000 -2022,Table 1.4,BP,22,partnership_and_s_corp_income,All,200000.0,500000.0,True,False,False,1894411 -2022,Table 1.4,BQ,23,partnership_and_s_corp_income,All,500000.0,1000000.0,False,False,False,187105966000 -2022,Table 1.4,BP,23,partnership_and_s_corp_income,All,500000.0,1000000.0,True,False,False,729501 -2022,Table 1.4,BQ,24,partnership_and_s_corp_income,All,1000000.0,1500000.0,False,False,False,109620135000 -2022,Table 1.4,BP,24,partnership_and_s_corp_income,All,1000000.0,1500000.0,True,False,False,228920 -2022,Table 1.4,BQ,25,partnership_and_s_corp_income,All,1500000.0,2000000.0,False,False,False,75732635000 -2022,Table 1.4,BP,25,partnership_and_s_corp_income,All,1500000.0,2000000.0,True,False,False,106274 -2022,Table 1.4,BQ,26,partnership_and_s_corp_income,All,2000000.0,5000000.0,False,False,False,196496410000 -2022,Table 1.4,BP,26,partnership_and_s_corp_income,All,2000000.0,5000000.0,True,False,False,165056 -2022,Table 1.4,BQ,27,partnership_and_s_corp_income,All,5000000.0,10000000.0,False,False,False,114302392000 -2022,Table 1.4,BP,27,partnership_and_s_corp_income,All,5000000.0,10000000.0,True,False,False,46077 -2022,Table 1.4,BQ,28,partnership_and_s_corp_income,All,10000000.0,inf,False,False,False,276872035000 -2022,Table 1.4,BP,28,partnership_and_s_corp_income,All,10000000.0,inf,True,False,False,30987 -2022,Table 1.4,BS,10,partnership_and_s_corp_losses,All,-inf,0.0,False,False,False,73421348000 -2022,Table 1.4,BR,10,partnership_and_s_corp_losses,All,-inf,0.0,True,False,False,359214 -2022,Table 1.4,BS,9,partnership_and_s_corp_losses,All,-inf,inf,False,False,True,268627907000 -2022,Table 1.4,BR,9,partnership_and_s_corp_losses,All,-inf,inf,True,False,True,3612203 -2022,Table 1.4,BS,11,partnership_and_s_corp_losses,All,1.0,5000.0,False,False,False,1204312000 -2022,Table 1.4,BR,11,partnership_and_s_corp_losses,All,1.0,5000.0,True,False,False,64547 -2022,Table 1.4,BS,12,partnership_and_s_corp_losses,All,5000.0,10000.0,False,False,False,1026756000 -2022,Table 1.4,BR,12,partnership_and_s_corp_losses,All,5000.0,10000.0,True,False,False,51065 -2022,Table 1.4,BS,13,partnership_and_s_corp_losses,All,10000.0,15000.0,False,False,False,1099882000 -2022,Table 1.4,BR,13,partnership_and_s_corp_losses,All,10000.0,15000.0,True,False,False,63745 -2022,Table 1.4,BS,14,partnership_and_s_corp_losses,All,15000.0,20000.0,False,False,False,1019506000 -2022,Table 1.4,BR,14,partnership_and_s_corp_losses,All,15000.0,20000.0,True,False,False,63286 -2022,Table 1.4,BS,15,partnership_and_s_corp_losses,All,20000.0,25000.0,False,False,False,1148160000 -2022,Table 1.4,BR,15,partnership_and_s_corp_losses,All,20000.0,25000.0,True,False,False,64808 -2022,Table 1.4,BS,16,partnership_and_s_corp_losses,All,25000.0,30000.0,False,False,False,1835683000 -2022,Table 1.4,BR,16,partnership_and_s_corp_losses,All,25000.0,30000.0,True,False,False,71411 -2022,Table 1.4,BS,17,partnership_and_s_corp_losses,All,30000.0,40000.0,False,False,False,3007903000 -2022,Table 1.4,BR,17,partnership_and_s_corp_losses,All,30000.0,40000.0,True,False,False,127939 -2022,Table 1.4,BS,18,partnership_and_s_corp_losses,All,40000.0,50000.0,False,False,False,2777785000 -2022,Table 1.4,BR,18,partnership_and_s_corp_losses,All,40000.0,50000.0,True,False,False,130447 -2022,Table 1.4,BS,19,partnership_and_s_corp_losses,All,50000.0,75000.0,False,False,False,6876525000 -2022,Table 1.4,BR,19,partnership_and_s_corp_losses,All,50000.0,75000.0,True,False,False,337046 -2022,Table 1.4,BS,20,partnership_and_s_corp_losses,All,75000.0,100000.0,False,False,False,5996975000 -2022,Table 1.4,BR,20,partnership_and_s_corp_losses,All,75000.0,100000.0,True,False,False,277674 -2022,Table 1.4,BS,21,partnership_and_s_corp_losses,All,100000.0,200000.0,False,False,False,21344122000 -2022,Table 1.4,BR,21,partnership_and_s_corp_losses,All,100000.0,200000.0,True,False,False,852293 -2022,Table 1.4,BS,22,partnership_and_s_corp_losses,All,200000.0,500000.0,False,False,False,28863396000 -2022,Table 1.4,BR,22,partnership_and_s_corp_losses,All,200000.0,500000.0,True,False,False,710505 -2022,Table 1.4,BS,23,partnership_and_s_corp_losses,All,500000.0,1000000.0,False,False,False,19608707000 -2022,Table 1.4,BR,23,partnership_and_s_corp_losses,All,500000.0,1000000.0,True,False,False,239177 -2022,Table 1.4,BS,24,partnership_and_s_corp_losses,All,1000000.0,1500000.0,False,False,False,10144344000 -2022,Table 1.4,BR,24,partnership_and_s_corp_losses,All,1000000.0,1500000.0,True,False,False,71480 -2022,Table 1.4,BS,25,partnership_and_s_corp_losses,All,1500000.0,2000000.0,False,False,False,7144908000 -2022,Table 1.4,BR,25,partnership_and_s_corp_losses,All,1500000.0,2000000.0,True,False,False,34842 -2022,Table 1.4,BS,26,partnership_and_s_corp_losses,All,2000000.0,5000000.0,False,False,False,19643937000 -2022,Table 1.4,BR,26,partnership_and_s_corp_losses,All,2000000.0,5000000.0,True,False,False,59255 -2022,Table 1.4,BS,27,partnership_and_s_corp_losses,All,5000000.0,10000000.0,False,False,False,12723898000 -2022,Table 1.4,BR,27,partnership_and_s_corp_losses,All,5000000.0,10000000.0,True,False,False,17926 -2022,Table 1.4,BS,28,partnership_and_s_corp_losses,All,10000000.0,inf,False,False,False,49739759000 -2022,Table 1.4,BR,28,partnership_and_s_corp_losses,All,10000000.0,inf,True,False,False,15544 -2022,Table 1.4,EI,10,qualified_business_income_deduction,All,-inf,0.0,False,False,False,0 -2022,Table 1.4,EH,10,qualified_business_income_deduction,All,-inf,0.0,True,False,False,0 -2022,Table 1.4,EI,9,qualified_business_income_deduction,All,-inf,inf,False,False,True,216078693000 -2022,Table 1.4,EH,9,qualified_business_income_deduction,All,-inf,inf,True,False,True,25654318 -2022,Table 1.4,EI,11,qualified_business_income_deduction,All,1.0,5000.0,False,False,False,2192000 -2022,Table 1.4,EH,11,qualified_business_income_deduction,All,1.0,5000.0,True,False,False,13037 -2022,Table 1.4,EI,12,qualified_business_income_deduction,All,5000.0,10000.0,False,False,False,8095000 -2022,Table 1.4,EH,12,qualified_business_income_deduction,All,5000.0,10000.0,True,False,False,27435 -2022,Table 1.4,EI,13,qualified_business_income_deduction,All,10000.0,15000.0,False,False,False,79404000 -2022,Table 1.4,EH,13,qualified_business_income_deduction,All,10000.0,15000.0,True,False,False,411013 -2022,Table 1.4,EI,14,qualified_business_income_deduction,All,15000.0,20000.0,False,False,False,473079000 -2022,Table 1.4,EH,14,qualified_business_income_deduction,All,15000.0,20000.0,True,False,False,787843 -2022,Table 1.4,EI,15,qualified_business_income_deduction,All,20000.0,25000.0,False,False,False,784347000 -2022,Table 1.4,EH,15,qualified_business_income_deduction,All,20000.0,25000.0,True,False,False,856964 -2022,Table 1.4,EI,16,qualified_business_income_deduction,All,25000.0,30000.0,False,False,False,1007858000 -2022,Table 1.4,EH,16,qualified_business_income_deduction,All,25000.0,30000.0,True,False,False,912460 -2022,Table 1.4,EI,17,qualified_business_income_deduction,All,30000.0,40000.0,False,False,False,2907099000 -2022,Table 1.4,EH,17,qualified_business_income_deduction,All,30000.0,40000.0,True,False,False,1775615 -2022,Table 1.4,EI,18,qualified_business_income_deduction,All,40000.0,50000.0,False,False,False,3203594000 -2022,Table 1.4,EH,18,qualified_business_income_deduction,All,40000.0,50000.0,True,False,False,1594793 -2022,Table 1.4,EI,19,qualified_business_income_deduction,All,50000.0,75000.0,False,False,False,8711031000 -2022,Table 1.4,EH,19,qualified_business_income_deduction,All,50000.0,75000.0,True,False,False,3483624 -2022,Table 1.4,EI,20,qualified_business_income_deduction,All,75000.0,100000.0,False,False,False,8485129000 -2022,Table 1.4,EH,20,qualified_business_income_deduction,All,75000.0,100000.0,True,False,False,2813016 -2022,Table 1.4,EI,21,qualified_business_income_deduction,All,100000.0,200000.0,False,False,False,31213286000 -2022,Table 1.4,EH,21,qualified_business_income_deduction,All,100000.0,200000.0,True,False,False,6872405 -2022,Table 1.4,EI,22,qualified_business_income_deduction,All,200000.0,500000.0,False,False,False,43295660000 -2022,Table 1.4,EH,22,qualified_business_income_deduction,All,200000.0,500000.0,True,False,False,4517126 -2022,Table 1.4,EI,23,qualified_business_income_deduction,All,500000.0,1000000.0,False,False,False,20878540000 -2022,Table 1.4,EH,23,qualified_business_income_deduction,All,500000.0,1000000.0,True,False,False,994968 -2022,Table 1.4,EI,24,qualified_business_income_deduction,All,1000000.0,1500000.0,False,False,False,11914987000 -2022,Table 1.4,EH,24,qualified_business_income_deduction,All,1000000.0,1500000.0,True,False,False,254883 -2022,Table 1.4,EI,25,qualified_business_income_deduction,All,1500000.0,2000000.0,False,False,False,8737822000 -2022,Table 1.4,EH,25,qualified_business_income_deduction,All,1500000.0,2000000.0,True,False,False,111485 -2022,Table 1.4,EI,26,qualified_business_income_deduction,All,2000000.0,5000000.0,False,False,False,24115347000 -2022,Table 1.4,EH,26,qualified_business_income_deduction,All,2000000.0,5000000.0,True,False,False,159860 -2022,Table 1.4,EI,27,qualified_business_income_deduction,All,5000000.0,10000000.0,False,False,False,15082798000 -2022,Table 1.4,EH,27,qualified_business_income_deduction,All,5000000.0,10000000.0,True,False,False,41720 -2022,Table 1.4,EI,28,qualified_business_income_deduction,All,10000000.0,inf,False,False,False,35178424000 -2022,Table 1.4,EH,28,qualified_business_income_deduction,All,10000000.0,inf,True,False,False,26069 -2022,Table 1.4,AA,10,qualified_dividends,All,-inf,0.0,False,False,False,2427364000 -2022,Table 1.4,Z,10,qualified_dividends,All,-inf,0.0,True,False,False,441499 -2022,Table 1.4,AA,9,qualified_dividends,All,-inf,inf,False,False,True,313230845000 -2022,Table 1.4,Z,9,qualified_dividends,All,-inf,inf,True,False,True,30737089 -2022,Table 1.4,AA,11,qualified_dividends,All,1.0,5000.0,False,False,False,626680000 -2022,Table 1.4,Z,11,qualified_dividends,All,1.0,5000.0,True,False,False,824214 -2022,Table 1.4,AA,12,qualified_dividends,All,5000.0,10000.0,False,False,False,802923000 -2022,Table 1.4,Z,12,qualified_dividends,All,5000.0,10000.0,True,False,False,677033 -2022,Table 1.4,AA,13,qualified_dividends,All,10000.0,15000.0,False,False,False,1089569000 -2022,Table 1.4,Z,13,qualified_dividends,All,10000.0,15000.0,True,False,False,721032 -2022,Table 1.4,AA,14,qualified_dividends,All,15000.0,20000.0,False,False,False,1217055000 -2022,Table 1.4,Z,14,qualified_dividends,All,15000.0,20000.0,True,False,False,631439 -2022,Table 1.4,AA,15,qualified_dividends,All,20000.0,25000.0,False,False,False,1221401000 -2022,Table 1.4,Z,15,qualified_dividends,All,20000.0,25000.0,True,False,False,668034 -2022,Table 1.4,AA,16,qualified_dividends,All,25000.0,30000.0,False,False,False,1208577000 -2022,Table 1.4,Z,16,qualified_dividends,All,25000.0,30000.0,True,False,False,633167 -2022,Table 1.4,AA,17,qualified_dividends,All,30000.0,40000.0,False,False,False,2701330000 -2022,Table 1.4,Z,17,qualified_dividends,All,30000.0,40000.0,True,False,False,1313018 -2022,Table 1.4,AA,18,qualified_dividends,All,40000.0,50000.0,False,False,False,3339456000 -2022,Table 1.4,Z,18,qualified_dividends,All,40000.0,50000.0,True,False,False,1363374 -2022,Table 1.4,AA,19,qualified_dividends,All,50000.0,75000.0,False,False,False,10009937000 -2022,Table 1.4,Z,19,qualified_dividends,All,50000.0,75000.0,True,False,False,3682018 -2022,Table 1.4,AA,20,qualified_dividends,All,75000.0,100000.0,False,False,False,11386257000 -2022,Table 1.4,Z,20,qualified_dividends,All,75000.0,100000.0,True,False,False,3402060 -2022,Table 1.4,AA,21,qualified_dividends,All,100000.0,200000.0,False,False,False,42106183000 -2022,Table 1.4,Z,21,qualified_dividends,All,100000.0,200000.0,True,False,False,8685946 -2022,Table 1.4,AA,22,qualified_dividends,All,200000.0,500000.0,False,False,False,64535479000 -2022,Table 1.4,Z,22,qualified_dividends,All,200000.0,500000.0,True,False,False,5737299 -2022,Table 1.4,AA,23,qualified_dividends,All,500000.0,1000000.0,False,False,False,37096245000 -2022,Table 1.4,Z,23,qualified_dividends,All,500000.0,1000000.0,True,False,False,1273494 -2022,Table 1.4,AA,24,qualified_dividends,All,1000000.0,1500000.0,False,False,False,16687226000 -2022,Table 1.4,Z,24,qualified_dividends,All,1000000.0,1500000.0,True,False,False,298612 -2022,Table 1.4,AA,25,qualified_dividends,All,1500000.0,2000000.0,False,False,False,10708071000 -2022,Table 1.4,Z,25,qualified_dividends,All,1500000.0,2000000.0,True,False,False,126287 -2022,Table 1.4,AA,26,qualified_dividends,All,2000000.0,5000000.0,False,False,False,27882261000 -2022,Table 1.4,Z,26,qualified_dividends,All,2000000.0,5000000.0,True,False,False,179434 -2022,Table 1.4,AA,27,qualified_dividends,All,5000000.0,10000000.0,False,False,False,16627301000 -2022,Table 1.4,Z,27,qualified_dividends,All,5000000.0,10000000.0,True,False,False,47262 -2022,Table 1.4,AA,28,qualified_dividends,All,10000000.0,inf,False,False,False,61557527000 -2022,Table 1.4,Z,28,qualified_dividends,All,10000000.0,inf,True,False,False,31865 -2022,Table 1.4,BU,10,s_corporation_net_income,All,-inf,0.0,False,False,False,5058593000 -2022,Table 1.4,BT,10,s_corporation_net_income,All,-inf,0.0,True,False,False,47362 -2022,Table 1.4,BU,9,s_corporation_net_income,All,-inf,inf,False,False,True,812741318000 -2022,Table 1.4,BT,9,s_corporation_net_income,All,-inf,inf,True,False,True,4027461 -2022,Table 1.4,BU,11,s_corporation_net_income,All,1.0,5000.0,False,False,False,246011000 -2022,Table 1.4,BT,11,s_corporation_net_income,All,1.0,5000.0,True,False,False,22342 -2022,Table 1.4,BU,12,s_corporation_net_income,All,5000.0,10000.0,False,False,False,292912000 -2022,Table 1.4,BT,12,s_corporation_net_income,All,5000.0,10000.0,True,False,False,36845 -2022,Table 1.4,BU,13,s_corporation_net_income,All,10000.0,15000.0,False,False,False,486657000 -2022,Table 1.4,BT,13,s_corporation_net_income,All,10000.0,15000.0,True,False,False,50584 -2022,Table 1.4,BU,14,s_corporation_net_income,All,15000.0,20000.0,False,False,False,583158000 -2022,Table 1.4,BT,14,s_corporation_net_income,All,15000.0,20000.0,True,False,False,61940 -2022,Table 1.4,BU,15,s_corporation_net_income,All,20000.0,25000.0,False,False,False,798350000 -2022,Table 1.4,BT,15,s_corporation_net_income,All,20000.0,25000.0,True,False,False,56078 -2022,Table 1.4,BU,16,s_corporation_net_income,All,25000.0,30000.0,False,False,False,1214771000 -2022,Table 1.4,BT,16,s_corporation_net_income,All,25000.0,30000.0,True,False,False,66913 -2022,Table 1.4,BU,17,s_corporation_net_income,All,30000.0,40000.0,False,False,False,2929046000 -2022,Table 1.4,BT,17,s_corporation_net_income,All,30000.0,40000.0,True,False,False,154238 -2022,Table 1.4,BU,18,s_corporation_net_income,All,40000.0,50000.0,False,False,False,3082848000 -2022,Table 1.4,BT,18,s_corporation_net_income,All,40000.0,50000.0,True,False,False,121023 -2022,Table 1.4,BU,19,s_corporation_net_income,All,50000.0,75000.0,False,False,False,12311632000 -2022,Table 1.4,BT,19,s_corporation_net_income,All,50000.0,75000.0,True,False,False,398335 -2022,Table 1.4,BU,20,s_corporation_net_income,All,75000.0,100000.0,False,False,False,12098356000 -2022,Table 1.4,BT,20,s_corporation_net_income,All,75000.0,100000.0,True,False,False,310902 -2022,Table 1.4,BU,21,s_corporation_net_income,All,100000.0,200000.0,False,False,False,54285528000 -2022,Table 1.4,BT,21,s_corporation_net_income,All,100000.0,200000.0,True,False,False,1015075 -2022,Table 1.4,BU,22,s_corporation_net_income,All,200000.0,500000.0,False,False,False,127744318000 -2022,Table 1.4,BT,22,s_corporation_net_income,All,200000.0,500000.0,True,False,False,1046308 -2022,Table 1.4,BU,23,s_corporation_net_income,All,500000.0,1000000.0,False,False,False,111710531000 -2022,Table 1.4,BT,23,s_corporation_net_income,All,500000.0,1000000.0,True,False,False,365639 -2022,Table 1.4,BU,24,s_corporation_net_income,All,1000000.0,1500000.0,False,False,False,64784994000 -2022,Table 1.4,BT,24,s_corporation_net_income,All,1000000.0,1500000.0,True,False,False,108812 -2022,Table 1.4,BU,25,s_corporation_net_income,All,1500000.0,2000000.0,False,False,False,45248962000 -2022,Table 1.4,BT,25,s_corporation_net_income,All,1500000.0,2000000.0,True,False,False,51323 -2022,Table 1.4,BU,26,s_corporation_net_income,All,2000000.0,5000000.0,False,False,False,121207183000 -2022,Table 1.4,BT,26,s_corporation_net_income,All,2000000.0,5000000.0,True,False,False,78168 -2022,Table 1.4,BU,27,s_corporation_net_income,All,5000000.0,10000000.0,False,False,False,72523417000 -2022,Table 1.4,BT,27,s_corporation_net_income,All,5000000.0,10000000.0,True,False,False,21350 -2022,Table 1.4,BU,28,s_corporation_net_income,All,10000000.0,inf,False,False,False,176134053000 -2022,Table 1.4,BT,28,s_corporation_net_income,All,10000000.0,inf,True,False,False,14224 -2022,Table 1.4,BW,10,s_corporation_net_losses,All,-inf,0.0,False,False,False,28337405000 -2022,Table 1.4,BV,10,s_corporation_net_losses,All,-inf,0.0,True,False,False,186797 -2022,Table 1.4,BW,9,s_corporation_net_losses,All,-inf,inf,False,False,True,93025607000 -2022,Table 1.4,BV,9,s_corporation_net_losses,All,-inf,inf,True,False,True,1517428 -2022,Table 1.4,BW,11,s_corporation_net_losses,All,1.0,5000.0,False,False,False,690515000 -2022,Table 1.4,BV,11,s_corporation_net_losses,All,1.0,5000.0,True,False,False,34411 -2022,Table 1.4,BW,12,s_corporation_net_losses,All,5000.0,10000.0,False,False,False,584635000 -2022,Table 1.4,BV,12,s_corporation_net_losses,All,5000.0,10000.0,True,False,False,27288 -2022,Table 1.4,BW,13,s_corporation_net_losses,All,10000.0,15000.0,False,False,False,848888000 -2022,Table 1.4,BV,13,s_corporation_net_losses,All,10000.0,15000.0,True,False,False,38443 -2022,Table 1.4,BW,14,s_corporation_net_losses,All,15000.0,20000.0,False,False,False,546682000 -2022,Table 1.4,BV,14,s_corporation_net_losses,All,15000.0,20000.0,True,False,False,35492 -2022,Table 1.4,BW,15,s_corporation_net_losses,All,20000.0,25000.0,False,False,False,763518000 -2022,Table 1.4,BV,15,s_corporation_net_losses,All,20000.0,25000.0,True,False,False,32497 -2022,Table 1.4,BW,16,s_corporation_net_losses,All,25000.0,30000.0,False,False,False,1089706000 -2022,Table 1.4,BV,16,s_corporation_net_losses,All,25000.0,30000.0,True,False,False,38318 -2022,Table 1.4,BW,17,s_corporation_net_losses,All,30000.0,40000.0,False,False,False,1858699000 -2022,Table 1.4,BV,17,s_corporation_net_losses,All,30000.0,40000.0,True,False,False,66717 -2022,Table 1.4,BW,18,s_corporation_net_losses,All,40000.0,50000.0,False,False,False,1310679000 -2022,Table 1.4,BV,18,s_corporation_net_losses,All,40000.0,50000.0,True,False,False,61429 -2022,Table 1.4,BW,19,s_corporation_net_losses,All,50000.0,75000.0,False,False,False,3737931000 -2022,Table 1.4,BV,19,s_corporation_net_losses,All,50000.0,75000.0,True,False,False,142145 -2022,Table 1.4,BW,20,s_corporation_net_losses,All,75000.0,100000.0,False,False,False,3147742000 -2022,Table 1.4,BV,20,s_corporation_net_losses,All,75000.0,100000.0,True,False,False,130525 -2022,Table 1.4,BW,21,s_corporation_net_losses,All,100000.0,200000.0,False,False,False,10258755000 -2022,Table 1.4,BV,21,s_corporation_net_losses,All,100000.0,200000.0,True,False,False,365653 -2022,Table 1.4,BW,22,s_corporation_net_losses,All,200000.0,500000.0,False,False,False,10948036000 -2022,Table 1.4,BV,22,s_corporation_net_losses,All,200000.0,500000.0,True,False,False,240902 -2022,Table 1.4,BW,23,s_corporation_net_losses,All,500000.0,1000000.0,False,False,False,5599460000 -2022,Table 1.4,BV,23,s_corporation_net_losses,All,500000.0,1000000.0,True,False,False,66468 -2022,Table 1.4,BW,24,s_corporation_net_losses,All,1000000.0,1500000.0,False,False,False,2691171000 -2022,Table 1.4,BV,24,s_corporation_net_losses,All,1000000.0,1500000.0,True,False,False,18252 -2022,Table 1.4,BW,25,s_corporation_net_losses,All,1500000.0,2000000.0,False,False,False,1589080000 -2022,Table 1.4,BV,25,s_corporation_net_losses,All,1500000.0,2000000.0,True,False,False,8370 -2022,Table 1.4,BW,26,s_corporation_net_losses,All,2000000.0,5000000.0,False,False,False,4769442000 -2022,Table 1.4,BV,26,s_corporation_net_losses,All,2000000.0,5000000.0,True,False,False,14792 -2022,Table 1.4,BW,27,s_corporation_net_losses,All,5000000.0,10000000.0,False,False,False,2809765000 -2022,Table 1.4,BV,27,s_corporation_net_losses,All,5000000.0,10000000.0,True,False,False,4555 -2022,Table 1.4,BW,28,s_corporation_net_losses,All,10000000.0,inf,False,False,False,11443499000 -2022,Table 1.4,BV,28,s_corporation_net_losses,All,10000000.0,inf,True,False,False,4374 -2022,Table 1.2,G,10,standard_deduction,All,-inf,0.0,False,False,False,0 -2022,Table 1.2,F,10,standard_deduction,All,-inf,0.0,True,False,False,0 -2022,Table 1.2,G,9,standard_deduction,All,-inf,inf,False,False,True,2609228480000 -2022,Table 1.2,F,9,standard_deduction,All,-inf,inf,True,False,True,142779280 -2022,Table 1.2,G,11,standard_deduction,All,1.0,5000.0,False,False,False,97479411000 -2022,Table 1.2,F,11,standard_deduction,All,1.0,5000.0,True,False,False,8088921 -2022,Table 1.2,G,12,standard_deduction,All,5000.0,10000.0,False,False,False,117632709000 -2022,Table 1.2,F,12,standard_deduction,All,5000.0,10000.0,True,False,False,8642057 -2022,Table 1.2,G,13,standard_deduction,All,10000.0,15000.0,False,False,False,147950673000 -2022,Table 1.2,F,13,standard_deduction,All,10000.0,15000.0,True,False,False,9524899 -2022,Table 1.2,G,14,standard_deduction,All,15000.0,20000.0,False,False,False,144554689000 -2022,Table 1.2,F,14,standard_deduction,All,15000.0,20000.0,True,False,False,8898827 -2022,Table 1.2,G,15,standard_deduction,All,20000.0,25000.0,False,False,False,128777753000 -2022,Table 1.2,F,15,standard_deduction,All,20000.0,25000.0,True,False,False,7847660 -2022,Table 1.2,G,16,standard_deduction,All,25000.0,30000.0,False,False,False,130110271000 -2022,Table 1.2,F,16,standard_deduction,All,25000.0,30000.0,True,False,False,7799177 -2022,Table 1.2,G,17,standard_deduction,All,30000.0,40000.0,False,False,False,257003124000 -2022,Table 1.2,F,17,standard_deduction,All,30000.0,40000.0,True,False,False,15266077 -2022,Table 1.2,G,18,standard_deduction,All,40000.0,50000.0,False,False,False,217167013000 -2022,Table 1.2,F,18,standard_deduction,All,40000.0,50000.0,True,False,False,12687168 -2022,Table 1.2,G,19,standard_deduction,All,50000.0,75000.0,False,False,False,400850408000 -2022,Table 1.2,F,19,standard_deduction,All,50000.0,75000.0,True,False,False,21913662 -2022,Table 1.2,G,20,standard_deduction,All,75000.0,100000.0,False,False,False,276421006000 -2022,Table 1.2,F,20,standard_deduction,All,75000.0,100000.0,True,False,False,13265228 -2022,Table 1.2,G,21,standard_deduction,All,100000.0,200000.0,False,False,False,500164477000 -2022,Table 1.2,F,21,standard_deduction,All,100000.0,200000.0,True,False,False,21140339 -2022,Table 1.2,G,22,standard_deduction,All,200000.0,500000.0,False,False,False,165778465000 -2022,Table 1.2,F,22,standard_deduction,All,200000.0,500000.0,True,False,False,6687170 -2022,Table 1.2,G,23,standard_deduction,All,500000.0,1000000.0,False,False,False,19248184000 -2022,Table 1.2,F,23,standard_deduction,All,500000.0,1000000.0,True,False,False,771949 -2022,Table 1.2,G,24,standard_deduction,All,1000000.0,1500000.0,False,False,False,3255956000 -2022,Table 1.2,F,24,standard_deduction,All,1000000.0,1500000.0,True,False,False,130493 -2022,Table 1.2,G,25,standard_deduction,All,1500000.0,2000000.0,False,False,False,1151032000 -2022,Table 1.2,F,25,standard_deduction,All,1500000.0,2000000.0,True,False,False,46672 -2022,Table 1.2,G,26,standard_deduction,All,2000000.0,5000000.0,False,False,False,1330930000 -2022,Table 1.2,F,26,standard_deduction,All,2000000.0,5000000.0,True,False,False,54446 -2022,Table 1.2,G,27,standard_deduction,All,5000000.0,10000000.0,False,False,False,246152000 -2022,Table 1.2,F,27,standard_deduction,All,5000000.0,10000000.0,True,False,False,10015 -2022,Table 1.2,G,28,standard_deduction,All,10000000.0,inf,False,False,False,106229000 -2022,Table 1.2,F,28,standard_deduction,All,10000000.0,inf,True,False,False,4521 -2022,Table 2.1,CD,10,state_and_local_tax_deductions,All,-inf,inf,False,False,True,396877843000 -2022,Table 2.1,CC,10,state_and_local_tax_deductions,All,-inf,inf,True,False,True,15033846 -2022,Table 2.1,CD,11,state_and_local_tax_deductions,All,0.0,5000.0,False,False,False,468533000 -2022,Table 2.1,CC,11,state_and_local_tax_deductions,All,0.0,5000.0,True,False,False,92021 -2022,Table 2.1,CD,12,state_and_local_tax_deductions,All,5000.0,10000.0,False,False,False,516993000 -2022,Table 2.1,CC,12,state_and_local_tax_deductions,All,5000.0,10000.0,True,False,False,98619 -2022,Table 2.1,CD,13,state_and_local_tax_deductions,All,10000.0,15000.0,False,False,False,544457000 -2022,Table 2.1,CC,13,state_and_local_tax_deductions,All,10000.0,15000.0,True,False,False,110403 -2022,Table 2.1,CD,14,state_and_local_tax_deductions,All,15000.0,20000.0,False,False,False,812445000 -2022,Table 2.1,CC,14,state_and_local_tax_deductions,All,15000.0,20000.0,True,False,False,148531 -2022,Table 2.1,CD,15,state_and_local_tax_deductions,All,20000.0,25000.0,False,False,False,1145069000 -2022,Table 2.1,CC,15,state_and_local_tax_deductions,All,20000.0,25000.0,True,False,False,176103 -2022,Table 2.1,CD,16,state_and_local_tax_deductions,All,25000.0,30000.0,False,False,False,1179947000 -2022,Table 2.1,CC,16,state_and_local_tax_deductions,All,25000.0,30000.0,True,False,False,191024 -2022,Table 2.1,CD,17,state_and_local_tax_deductions,All,30000.0,35000.0,False,False,False,1094074000 -2022,Table 2.1,CC,17,state_and_local_tax_deductions,All,30000.0,35000.0,True,False,False,202461 -2022,Table 2.1,CD,18,state_and_local_tax_deductions,All,35000.0,40000.0,False,False,False,1762967000 -2022,Table 2.1,CC,18,state_and_local_tax_deductions,All,35000.0,40000.0,True,False,False,262300 -2022,Table 2.1,CD,19,state_and_local_tax_deductions,All,40000.0,45000.0,False,False,False,1557427000 -2022,Table 2.1,CC,19,state_and_local_tax_deductions,All,40000.0,45000.0,True,False,False,248895 -2022,Table 2.1,CD,20,state_and_local_tax_deductions,All,45000.0,50000.0,False,False,False,1897470000 -2022,Table 2.1,CC,20,state_and_local_tax_deductions,All,45000.0,50000.0,True,False,False,299706 -2022,Table 2.1,CD,21,state_and_local_tax_deductions,All,50000.0,55000.0,False,False,False,2273534000 -2022,Table 2.1,CC,21,state_and_local_tax_deductions,All,50000.0,55000.0,True,False,False,337088 -2022,Table 2.1,CD,22,state_and_local_tax_deductions,All,55000.0,60000.0,False,False,False,2391655000 -2022,Table 2.1,CC,22,state_and_local_tax_deductions,All,55000.0,60000.0,True,False,False,352640 -2022,Table 2.1,CD,23,state_and_local_tax_deductions,All,60000.0,75000.0,False,False,False,8964110000 -2022,Table 2.1,CC,23,state_and_local_tax_deductions,All,60000.0,75000.0,True,False,False,1160243 -2022,Table 2.1,CD,24,state_and_local_tax_deductions,All,75000.0,100000.0,False,False,False,17717861000 -2022,Table 2.1,CC,24,state_and_local_tax_deductions,All,75000.0,100000.0,True,False,False,1891180 -2022,Table 2.1,CD,25,state_and_local_tax_deductions,All,100000.0,200000.0,False,False,False,60242953000 -2022,Table 2.1,CC,25,state_and_local_tax_deductions,All,100000.0,200000.0,True,False,False,4692845 -2022,Table 2.1,CD,26,state_and_local_tax_deductions,All,200000.0,500000.0,False,False,False,85223975000 -2022,Table 2.1,CC,26,state_and_local_tax_deductions,All,200000.0,500000.0,True,False,False,3314681 -2022,Table 2.1,CD,27,state_and_local_tax_deductions,All,500000.0,1000000.0,False,False,False,68703441000 -2022,Table 2.1,CC,27,state_and_local_tax_deductions,All,500000.0,1000000.0,True,False,False,898216 -2022,Table 2.1,CD,28,state_and_local_tax_deductions,All,1000000.0,1500000.0,False,False,False,21851968000 -2022,Table 2.1,CC,28,state_and_local_tax_deductions,All,1000000.0,1500000.0,True,False,False,229656 -2022,Table 2.1,CD,29,state_and_local_tax_deductions,All,1500000.0,2000000.0,False,False,False,13145596000 -2022,Table 2.1,CC,29,state_and_local_tax_deductions,All,1500000.0,2000000.0,True,False,False,101270 -2022,Table 2.1,CD,30,state_and_local_tax_deductions,All,2000000.0,5000000.0,False,False,False,33682137000 -2022,Table 2.1,CC,30,state_and_local_tax_deductions,All,2000000.0,5000000.0,True,False,False,153186 -2022,Table 2.1,CD,31,state_and_local_tax_deductions,All,5000000.0,10000000.0,False,False,False,19793471000 -2022,Table 2.1,CC,31,state_and_local_tax_deductions,All,5000000.0,10000000.0,True,False,False,42813 -2022,Table 2.1,CD,32,state_and_local_tax_deductions,All,10000000.0,inf,False,False,False,51907760000 -2022,Table 2.1,CC,32,state_and_local_tax_deductions,All,10000000.0,inf,True,False,False,29965 -2022,Table 1.2,I,10,taxable_income,All,-inf,0.0,False,False,False,0 -2022,Table 1.2,H,10,taxable_income,All,-inf,0.0,True,False,False,0 -2022,Table 1.2,I,9,taxable_income,All,-inf,inf,False,False,True,11714186280000 -2022,Table 1.2,H,9,taxable_income,All,-inf,inf,True,False,True,129349042 -2022,Table 1.2,I,11,taxable_income,All,1.0,5000.0,False,False,False,213811000 -2022,Table 1.2,H,11,taxable_income,All,1.0,5000.0,True,False,False,181081 -2022,Table 1.2,I,12,taxable_income,All,5000.0,10000.0,False,False,False,509165000 -2022,Table 1.2,H,12,taxable_income,All,5000.0,10000.0,True,False,False,171520 -2022,Table 1.2,I,13,taxable_income,All,10000.0,15000.0,False,False,False,2938421000 -2022,Table 1.2,H,13,taxable_income,All,10000.0,15000.0,True,False,False,2568638 -2022,Table 1.2,I,14,taxable_income,All,15000.0,20000.0,False,False,False,24431244000 -2022,Table 1.2,H,14,taxable_income,All,15000.0,20000.0,True,False,False,6078901 -2022,Table 1.2,I,15,taxable_income,All,20000.0,25000.0,False,False,False,51892301000 -2022,Table 1.2,H,15,taxable_income,All,20000.0,25000.0,True,False,False,6813732 -2022,Table 1.2,I,16,taxable_income,All,25000.0,30000.0,False,False,False,85131728000 -2022,Table 1.2,H,16,taxable_income,All,25000.0,30000.0,True,False,False,7425764 -2022,Table 1.2,I,17,taxable_income,All,30000.0,40000.0,False,False,False,278222619000 -2022,Table 1.2,H,17,taxable_income,All,30000.0,40000.0,True,False,False,15678991 -2022,Table 1.2,I,18,taxable_income,All,40000.0,50000.0,False,False,False,358916800000 -2022,Table 1.2,H,18,taxable_income,All,40000.0,50000.0,True,False,False,13208042 -2022,Table 1.2,I,19,taxable_income,All,50000.0,75000.0,False,False,False,1007053999000 -2022,Table 1.2,H,19,taxable_income,All,50000.0,75000.0,True,False,False,23729171 -2022,Table 1.2,I,20,taxable_income,All,75000.0,100000.0,False,False,False,979156790000 -2022,Table 1.2,H,20,taxable_income,All,75000.0,100000.0,True,False,False,15144544 -2022,Table 1.2,I,21,taxable_income,All,100000.0,200000.0,False,False,False,2884827377000 -2022,Table 1.2,H,21,taxable_income,All,100000.0,200000.0,True,False,False,25858946 -2022,Table 1.2,I,22,taxable_income,All,200000.0,500000.0,False,False,False,2546130393000 -2022,Table 1.2,H,22,taxable_income,All,200000.0,500000.0,True,False,False,10012726 -2022,Table 1.2,I,23,taxable_income,All,500000.0,1000000.0,False,False,False,1029732840000 -2022,Table 1.2,H,23,taxable_income,All,500000.0,1000000.0,True,False,False,1672890 -2022,Table 1.2,I,24,taxable_income,All,1000000.0,1500000.0,False,False,False,398810860000 -2022,Table 1.2,H,24,taxable_income,All,1000000.0,1500000.0,True,False,False,360624 -2022,Table 1.2,I,25,taxable_income,All,1500000.0,2000000.0,False,False,False,232503836000 -2022,Table 1.2,H,25,taxable_income,All,1500000.0,2000000.0,True,False,False,148065 -2022,Table 1.2,I,26,taxable_income,All,2000000.0,5000000.0,False,False,False,566143508000 -2022,Table 1.2,H,26,taxable_income,All,2000000.0,5000000.0,True,False,False,207905 -2022,Table 1.2,I,27,taxable_income,All,5000000.0,10000000.0,False,False,False,329548099000 -2022,Table 1.2,H,27,taxable_income,All,5000000.0,10000000.0,True,False,False,52914 -2022,Table 1.2,I,28,taxable_income,All,10000000.0,inf,False,False,False,938022489000 -2022,Table 1.2,H,28,taxable_income,All,10000000.0,inf,True,False,False,34587 -2022,Table 1.4,U,10,taxable_interest_income,All,-inf,0.0,False,False,False,3365630000 -2022,Table 1.4,T,10,taxable_interest_income,All,-inf,0.0,True,False,False,679966 -2022,Table 1.4,U,9,taxable_interest_income,All,-inf,inf,False,False,True,133596569000 -2022,Table 1.4,T,9,taxable_interest_income,All,-inf,inf,True,False,True,49736855 -2022,Table 1.4,U,11,taxable_interest_income,All,1.0,5000.0,False,False,False,498432000 -2022,Table 1.4,T,11,taxable_interest_income,All,1.0,5000.0,True,False,False,1665026 -2022,Table 1.4,U,12,taxable_interest_income,All,5000.0,10000.0,False,False,False,675967000 -2022,Table 1.4,T,12,taxable_interest_income,All,5000.0,10000.0,True,False,False,1280664 -2022,Table 1.4,U,13,taxable_interest_income,All,10000.0,15000.0,False,False,False,757213000 -2022,Table 1.4,T,13,taxable_interest_income,All,10000.0,15000.0,True,False,False,1375568 -2022,Table 1.4,U,14,taxable_interest_income,All,15000.0,20000.0,False,False,False,858052000 -2022,Table 1.4,T,14,taxable_interest_income,All,15000.0,20000.0,True,False,False,1331696 -2022,Table 1.4,U,15,taxable_interest_income,All,20000.0,25000.0,False,False,False,746963000 -2022,Table 1.4,T,15,taxable_interest_income,All,20000.0,25000.0,True,False,False,1266528 -2022,Table 1.4,U,16,taxable_interest_income,All,25000.0,30000.0,False,False,False,825814000 -2022,Table 1.4,T,16,taxable_interest_income,All,25000.0,30000.0,True,False,False,1342809 -2022,Table 1.4,U,17,taxable_interest_income,All,30000.0,40000.0,False,False,False,1844279000 -2022,Table 1.4,T,17,taxable_interest_income,All,30000.0,40000.0,True,False,False,2570802 -2022,Table 1.4,U,18,taxable_interest_income,All,40000.0,50000.0,False,False,False,1577729000 -2022,Table 1.4,T,18,taxable_interest_income,All,40000.0,50000.0,True,False,False,2667327 -2022,Table 1.4,U,19,taxable_interest_income,All,50000.0,75000.0,False,False,False,5341764000 -2022,Table 1.4,T,19,taxable_interest_income,All,50000.0,75000.0,True,False,False,6774179 -2022,Table 1.4,U,20,taxable_interest_income,All,75000.0,100000.0,False,False,False,4965163000 -2022,Table 1.4,T,20,taxable_interest_income,All,75000.0,100000.0,True,False,False,5800861 -2022,Table 1.4,U,21,taxable_interest_income,All,100000.0,200000.0,False,False,False,17661595000 -2022,Table 1.4,T,21,taxable_interest_income,All,100000.0,200000.0,True,False,False,13454221 -2022,Table 1.4,U,22,taxable_interest_income,All,200000.0,500000.0,False,False,False,20375918000 -2022,Table 1.4,T,22,taxable_interest_income,All,200000.0,500000.0,True,False,False,7280415 -2022,Table 1.4,U,23,taxable_interest_income,All,500000.0,1000000.0,False,False,False,11558538000 -2022,Table 1.4,T,23,taxable_interest_income,All,500000.0,1000000.0,True,False,False,1476964 -2022,Table 1.4,U,24,taxable_interest_income,All,1000000.0,1500000.0,False,False,False,6183046000 -2022,Table 1.4,T,24,taxable_interest_income,All,1000000.0,1500000.0,True,False,False,339954 -2022,Table 1.4,U,25,taxable_interest_income,All,1500000.0,2000000.0,False,False,False,4095630000 -2022,Table 1.4,T,25,taxable_interest_income,All,1500000.0,2000000.0,True,False,False,141749 -2022,Table 1.4,U,26,taxable_interest_income,All,2000000.0,5000000.0,False,False,False,12342959000 -2022,Table 1.4,T,26,taxable_interest_income,All,2000000.0,5000000.0,True,False,False,201919 -2022,Table 1.4,U,27,taxable_interest_income,All,5000000.0,10000000.0,False,False,False,8523479000 -2022,Table 1.4,T,27,taxable_interest_income,All,5000000.0,10000000.0,True,False,False,51995 -2022,Table 1.4,U,28,taxable_interest_income,All,10000000.0,inf,False,False,False,31398399000 -2022,Table 1.4,T,28,taxable_interest_income,All,10000000.0,inf,True,False,False,34213 -2022,Table 1.4,AY,10,taxable_pension_income,All,-inf,0.0,False,False,False,2461700000 -2022,Table 1.4,AX,10,taxable_pension_income,All,-inf,0.0,True,False,False,188928 -2022,Table 1.4,AY,9,taxable_pension_income,All,-inf,inf,False,False,True,911698884000 -2022,Table 1.4,AX,9,taxable_pension_income,All,-inf,inf,True,False,True,30020638 -2022,Table 1.4,AY,11,taxable_pension_income,All,1.0,5000.0,False,False,False,1926765000 -2022,Table 1.4,AX,11,taxable_pension_income,All,1.0,5000.0,True,False,False,678087 -2022,Table 1.4,AY,12,taxable_pension_income,All,5000.0,10000.0,False,False,False,5456915000 -2022,Table 1.4,AX,12,taxable_pension_income,All,5000.0,10000.0,True,False,False,935924 -2022,Table 1.4,AY,13,taxable_pension_income,All,10000.0,15000.0,False,False,False,11584932000 -2022,Table 1.4,AX,13,taxable_pension_income,All,10000.0,15000.0,True,False,False,1305060 -2022,Table 1.4,AY,14,taxable_pension_income,All,15000.0,20000.0,False,False,False,14116951000 -2022,Table 1.4,AX,14,taxable_pension_income,All,15000.0,20000.0,True,False,False,1238841 -2022,Table 1.4,AY,15,taxable_pension_income,All,20000.0,25000.0,False,False,False,14414125000 -2022,Table 1.4,AX,15,taxable_pension_income,All,20000.0,25000.0,True,False,False,1122645 -2022,Table 1.4,AY,16,taxable_pension_income,All,25000.0,30000.0,False,False,False,16717855000 -2022,Table 1.4,AX,16,taxable_pension_income,All,25000.0,30000.0,True,False,False,1126270 -2022,Table 1.4,AY,17,taxable_pension_income,All,30000.0,40000.0,False,False,False,36978754000 -2022,Table 1.4,AX,17,taxable_pension_income,All,30000.0,40000.0,True,False,False,2182773 -2022,Table 1.4,AY,18,taxable_pension_income,All,40000.0,50000.0,False,False,False,41935487000 -2022,Table 1.4,AX,18,taxable_pension_income,All,40000.0,50000.0,True,False,False,2115246 -2022,Table 1.4,AY,19,taxable_pension_income,All,50000.0,75000.0,False,False,False,123924570000 -2022,Table 1.4,AX,19,taxable_pension_income,All,50000.0,75000.0,True,False,False,4883689 -2022,Table 1.4,AY,20,taxable_pension_income,All,75000.0,100000.0,False,False,False,128997640000 -2022,Table 1.4,AX,20,taxable_pension_income,All,75000.0,100000.0,True,False,False,3956479 -2022,Table 1.4,AY,21,taxable_pension_income,All,100000.0,200000.0,False,False,False,326624026000 -2022,Table 1.4,AX,21,taxable_pension_income,All,100000.0,200000.0,True,False,False,7404672 -2022,Table 1.4,AY,22,taxable_pension_income,All,200000.0,500000.0,False,False,False,153405814000 -2022,Table 1.4,AX,22,taxable_pension_income,All,200000.0,500000.0,True,False,False,2466379 -2022,Table 1.4,AY,23,taxable_pension_income,All,500000.0,1000000.0,False,False,False,21980856000 -2022,Table 1.4,AX,23,taxable_pension_income,All,500000.0,1000000.0,True,False,False,290436 -2022,Table 1.4,AY,24,taxable_pension_income,All,1000000.0,1500000.0,False,False,False,4646272000 -2022,Table 1.4,AX,24,taxable_pension_income,All,1000000.0,1500000.0,True,False,False,56206 -2022,Table 1.4,AY,25,taxable_pension_income,All,1500000.0,2000000.0,False,False,False,2023264000 -2022,Table 1.4,AX,25,taxable_pension_income,All,1500000.0,2000000.0,True,False,False,23738 -2022,Table 1.4,AY,26,taxable_pension_income,All,2000000.0,5000000.0,False,False,False,2543726000 -2022,Table 1.4,AX,26,taxable_pension_income,All,2000000.0,5000000.0,True,False,False,31713 -2022,Table 1.4,AY,27,taxable_pension_income,All,5000000.0,10000000.0,False,False,False,1000482000 -2022,Table 1.4,AX,27,taxable_pension_income,All,5000000.0,10000000.0,True,False,False,8093 -2022,Table 1.4,AY,28,taxable_pension_income,All,10000000.0,inf,False,False,False,958750000 -2022,Table 1.4,AX,28,taxable_pension_income,All,10000000.0,inf,True,False,False,5456 -2022,Table 1.4,CK,10,taxable_social_security,All,-inf,0.0,False,False,False,9577000 -2022,Table 1.4,CJ,10,taxable_social_security,All,-inf,0.0,True,False,False,3272 -2022,Table 1.4,CK,9,taxable_social_security,All,-inf,inf,False,False,True,458513595000 -2022,Table 1.4,CJ,9,taxable_social_security,All,-inf,inf,True,False,True,24667460 -2022,Table 1.4,CK,11,taxable_social_security,All,1.0,5000.0,False,False,False,36938000 -2022,Table 1.4,CJ,11,taxable_social_security,All,1.0,5000.0,True,False,False,13833 -2022,Table 1.4,CK,12,taxable_social_security,All,5000.0,10000.0,False,False,False,277763000 -2022,Table 1.4,CJ,12,taxable_social_security,All,5000.0,10000.0,True,False,False,78956 -2022,Table 1.4,CK,13,taxable_social_security,All,10000.0,15000.0,False,False,False,574534000 -2022,Table 1.4,CJ,13,taxable_social_security,All,10000.0,15000.0,True,False,False,390560 -2022,Table 1.4,CK,14,taxable_social_security,All,15000.0,20000.0,False,False,False,1828129000 -2022,Table 1.4,CJ,14,taxable_social_security,All,15000.0,20000.0,True,False,False,1093175 -2022,Table 1.4,CK,15,taxable_social_security,All,20000.0,25000.0,False,False,False,3692023000 -2022,Table 1.4,CJ,15,taxable_social_security,All,20000.0,25000.0,True,False,False,1226518 -2022,Table 1.4,CK,16,taxable_social_security,All,25000.0,30000.0,False,False,False,5137194000 -2022,Table 1.4,CJ,16,taxable_social_security,All,25000.0,30000.0,True,False,False,1189658 -2022,Table 1.4,CK,17,taxable_social_security,All,30000.0,40000.0,False,False,False,16288336000 -2022,Table 1.4,CJ,17,taxable_social_security,All,30000.0,40000.0,True,False,False,2240513 -2022,Table 1.4,CK,18,taxable_social_security,All,40000.0,50000.0,False,False,False,22132636000 -2022,Table 1.4,CJ,18,taxable_social_security,All,40000.0,50000.0,True,False,False,1953921 -2022,Table 1.4,CK,19,taxable_social_security,All,50000.0,75000.0,False,False,False,78864758000 -2022,Table 1.4,CJ,19,taxable_social_security,All,50000.0,75000.0,True,False,False,4637686 -2022,Table 1.4,CK,20,taxable_social_security,All,75000.0,100000.0,False,False,False,78886207000 -2022,Table 1.4,CJ,20,taxable_social_security,All,75000.0,100000.0,True,False,False,3479283 -2022,Table 1.4,CK,21,taxable_social_security,All,100000.0,200000.0,False,False,False,171524062000 -2022,Table 1.4,CJ,21,taxable_social_security,All,100000.0,200000.0,True,False,False,5998511 -2022,Table 1.4,CK,22,taxable_social_security,All,200000.0,500000.0,False,False,False,62981505000 -2022,Table 1.4,CJ,22,taxable_social_security,All,200000.0,500000.0,True,False,False,1908375 -2022,Table 1.4,CK,23,taxable_social_security,All,500000.0,1000000.0,False,False,False,10628872000 -2022,Table 1.4,CJ,23,taxable_social_security,All,500000.0,1000000.0,True,False,False,299809 -2022,Table 1.4,CK,24,taxable_social_security,All,1000000.0,1500000.0,False,False,False,2420263000 -2022,Table 1.4,CJ,24,taxable_social_security,All,1000000.0,1500000.0,True,False,False,67263 -2022,Table 1.4,CK,25,taxable_social_security,All,1500000.0,2000000.0,False,False,False,1019752000 -2022,Table 1.4,CJ,25,taxable_social_security,All,1500000.0,2000000.0,True,False,False,27760 -2022,Table 1.4,CK,26,taxable_social_security,All,2000000.0,5000000.0,False,False,False,1531738000 -2022,Table 1.4,CJ,26,taxable_social_security,All,2000000.0,5000000.0,True,False,False,40927 -2022,Table 1.4,CK,27,taxable_social_security,All,5000000.0,10000000.0,False,False,False,400286000 -2022,Table 1.4,CJ,27,taxable_social_security,All,5000000.0,10000000.0,True,False,False,10496 -2022,Table 1.4,CK,28,taxable_social_security,All,10000000.0,inf,False,False,False,279021000 -2022,Table 1.4,CJ,28,taxable_social_security,All,10000000.0,inf,True,False,False,6942 -2022,Table 1.4,AW,10,total_pension_income,All,-inf,0.0,False,False,False,8256209000 -2022,Table 1.4,AV,10,total_pension_income,All,-inf,0.0,True,False,False,263919 -2022,Table 1.4,AW,9,total_pension_income,All,-inf,inf,False,False,True,1528410590000 -2022,Table 1.4,AV,9,total_pension_income,All,-inf,inf,True,False,True,32975793 -2022,Table 1.4,AW,11,total_pension_income,All,1.0,5000.0,False,False,False,8681447000 -2022,Table 1.4,AV,11,total_pension_income,All,1.0,5000.0,True,False,False,749981 -2022,Table 1.4,AW,12,total_pension_income,All,5000.0,10000.0,False,False,False,10839260000 -2022,Table 1.4,AV,12,total_pension_income,All,5000.0,10000.0,True,False,False,976411 -2022,Table 1.4,AW,13,total_pension_income,All,10000.0,15000.0,False,False,False,17268768000 -2022,Table 1.4,AV,13,total_pension_income,All,10000.0,15000.0,True,False,False,1358259 -2022,Table 1.4,AW,14,total_pension_income,All,15000.0,20000.0,False,False,False,19136480000 -2022,Table 1.4,AV,14,total_pension_income,All,15000.0,20000.0,True,False,False,1282289 -2022,Table 1.4,AW,15,total_pension_income,All,20000.0,25000.0,False,False,False,20089714000 -2022,Table 1.4,AV,15,total_pension_income,All,20000.0,25000.0,True,False,False,1185076 -2022,Table 1.4,AW,16,total_pension_income,All,25000.0,30000.0,False,False,False,22429177000 -2022,Table 1.4,AV,16,total_pension_income,All,25000.0,30000.0,True,False,False,1183550 -2022,Table 1.4,AW,17,total_pension_income,All,30000.0,40000.0,False,False,False,50139171000 -2022,Table 1.4,AV,17,total_pension_income,All,30000.0,40000.0,True,False,False,2309694 -2022,Table 1.4,AW,18,total_pension_income,All,40000.0,50000.0,False,False,False,87280416000 -2022,Table 1.4,AV,18,total_pension_income,All,40000.0,50000.0,True,False,False,2267786 -2022,Table 1.4,AW,19,total_pension_income,All,50000.0,75000.0,False,False,False,165452006000 -2022,Table 1.4,AV,19,total_pension_income,All,50000.0,75000.0,True,False,False,5280824 -2022,Table 1.4,AW,20,total_pension_income,All,75000.0,100000.0,False,False,False,179611887000 -2022,Table 1.4,AV,20,total_pension_income,All,75000.0,100000.0,True,False,False,4323974 -2022,Table 1.4,AW,21,total_pension_income,All,100000.0,200000.0,False,False,False,507229081000 -2022,Table 1.4,AV,21,total_pension_income,All,100000.0,200000.0,True,False,False,8204662 -2022,Table 1.4,AW,22,total_pension_income,All,200000.0,500000.0,False,False,False,319047092000 -2022,Table 1.4,AV,22,total_pension_income,All,200000.0,500000.0,True,False,False,2991496 -2022,Table 1.4,AW,23,total_pension_income,All,500000.0,1000000.0,False,False,False,66577278000 -2022,Table 1.4,AV,23,total_pension_income,All,500000.0,1000000.0,True,False,False,412073 -2022,Table 1.4,AW,24,total_pension_income,All,1000000.0,1500000.0,False,False,False,18042784000 -2022,Table 1.4,AV,24,total_pension_income,All,1000000.0,1500000.0,True,False,False,85028 -2022,Table 1.4,AW,25,total_pension_income,All,1500000.0,2000000.0,False,False,False,7211207000 -2022,Table 1.4,AV,25,total_pension_income,All,1500000.0,2000000.0,True,False,False,34671 -2022,Table 1.4,AW,26,total_pension_income,All,2000000.0,5000000.0,False,False,False,13141378000 -2022,Table 1.4,AV,26,total_pension_income,All,2000000.0,5000000.0,True,False,False,46735 -2022,Table 1.4,AW,27,total_pension_income,All,5000000.0,10000000.0,False,False,False,4099993000 -2022,Table 1.4,AV,27,total_pension_income,All,5000000.0,10000000.0,True,False,False,11735 -2022,Table 1.4,AW,28,total_pension_income,All,10000000.0,inf,False,False,False,3877241000 -2022,Table 1.4,AV,28,total_pension_income,All,10000000.0,inf,True,False,False,7631 -2022,Table 1.4,CI,10,total_social_security,All,-inf,0.0,False,False,False,22784191000 -2022,Table 1.4,CH,10,total_social_security,All,-inf,0.0,True,False,False,1029709 -2022,Table 1.4,CI,9,total_social_security,All,-inf,inf,False,False,True,871307268000 -2022,Table 1.4,CH,9,total_social_security,All,-inf,inf,True,False,True,31861807 -2022,Table 1.4,CI,11,total_social_security,All,1.0,5000.0,False,False,False,44808940000 -2022,Table 1.4,CH,11,total_social_security,All,1.0,5000.0,True,False,False,2102117 -2022,Table 1.4,CI,12,total_social_security,All,5000.0,10000.0,False,False,False,39170034000 -2022,Table 1.4,CH,12,total_social_security,All,5000.0,10000.0,True,False,False,1812315 -2022,Table 1.4,CI,13,total_social_security,All,10000.0,15000.0,False,False,False,42729805000 -2022,Table 1.4,CH,13,total_social_security,All,10000.0,15000.0,True,False,False,1933305 -2022,Table 1.4,CI,14,total_social_security,All,15000.0,20000.0,False,False,False,38636556000 -2022,Table 1.4,CH,14,total_social_security,All,15000.0,20000.0,True,False,False,1707714 -2022,Table 1.4,CI,15,total_social_security,All,20000.0,25000.0,False,False,False,33482285000 -2022,Table 1.4,CH,15,total_social_security,All,20000.0,25000.0,True,False,False,1368527 -2022,Table 1.4,CI,16,total_social_security,All,25000.0,30000.0,False,False,False,30641677000 -2022,Table 1.4,CH,16,total_social_security,All,25000.0,30000.0,True,False,False,1224515 -2022,Table 1.4,CI,17,total_social_security,All,30000.0,40000.0,False,False,False,57117804000 -2022,Table 1.4,CH,17,total_social_security,All,30000.0,40000.0,True,False,False,2241530 -2022,Table 1.4,CI,18,total_social_security,All,40000.0,50000.0,False,False,False,49489596000 -2022,Table 1.4,CH,18,total_social_security,All,40000.0,50000.0,True,False,False,1955929 -2022,Table 1.4,CI,19,total_social_security,All,50000.0,75000.0,False,False,False,118478556000 -2022,Table 1.4,CH,19,total_social_security,All,50000.0,75000.0,True,False,False,4638670 -2022,Table 1.4,CI,20,total_social_security,All,75000.0,100000.0,False,False,False,98175681000 -2022,Table 1.4,CH,20,total_social_security,All,75000.0,100000.0,True,False,False,3481308 -2022,Table 1.4,CI,21,total_social_security,All,100000.0,200000.0,False,False,False,202495359000 -2022,Table 1.4,CH,21,total_social_security,All,100000.0,200000.0,True,False,False,6002667 -2022,Table 1.4,CI,22,total_social_security,All,200000.0,500000.0,False,False,False,74138027000 -2022,Table 1.4,CH,22,total_social_security,All,200000.0,500000.0,True,False,False,1910013 -2022,Table 1.4,CI,23,total_social_security,All,500000.0,1000000.0,False,False,False,12508307000 -2022,Table 1.4,CH,23,total_social_security,All,500000.0,1000000.0,True,False,False,299988 -2022,Table 1.4,CI,24,total_social_security,All,1000000.0,1500000.0,False,False,False,2847599000 -2022,Table 1.4,CH,24,total_social_security,All,1000000.0,1500000.0,True,False,False,67304 -2022,Table 1.4,CI,25,total_social_security,All,1500000.0,2000000.0,False,False,False,1201194000 -2022,Table 1.4,CH,25,total_social_security,All,1500000.0,2000000.0,True,False,False,27809 -2022,Table 1.4,CI,26,total_social_security,All,2000000.0,5000000.0,False,False,False,1802248000 -2022,Table 1.4,CH,26,total_social_security,All,2000000.0,5000000.0,True,False,False,40937 -2022,Table 1.4,CI,27,total_social_security,All,5000000.0,10000000.0,False,False,False,470996000 -2022,Table 1.4,CH,27,total_social_security,All,5000000.0,10000000.0,True,False,False,10500 -2022,Table 1.4,CI,28,total_social_security,All,10000000.0,inf,False,False,False,328415000 -2022,Table 1.4,CH,28,total_social_security,All,10000000.0,inf,True,False,False,6948 -2022,Table 1.2,M,10,tottax,All,-inf,0.0,False,False,False,128418000 -2022,Table 1.2,L,10,tottax,All,-inf,0.0,True,False,False,3843 -2022,Table 1.2,M,9,tottax,All,-inf,inf,False,False,True,2139922072000 -2022,Table 1.2,L,9,tottax,All,-inf,inf,True,False,True,110640128 -2022,Table 1.2,M,11,tottax,All,1.0,5000.0,False,False,False,18734000 -2022,Table 1.2,L,11,tottax,All,1.0,5000.0,True,False,False,105475 -2022,Table 1.2,M,12,tottax,All,5000.0,10000.0,False,False,False,41423000 -2022,Table 1.2,L,12,tottax,All,5000.0,10000.0,True,False,False,119109 -2022,Table 1.2,M,13,tottax,All,10000.0,15000.0,False,False,False,188178000 -2022,Table 1.2,L,13,tottax,All,10000.0,15000.0,True,False,False,1370355 -2022,Table 1.2,M,14,tottax,All,15000.0,20000.0,False,False,False,1736237000 -2022,Table 1.2,L,14,tottax,All,15000.0,20000.0,True,False,False,4429445 -2022,Table 1.2,M,15,tottax,All,20000.0,25000.0,False,False,False,3804019000 -2022,Table 1.2,L,15,tottax,All,20000.0,25000.0,True,False,False,4393888 -2022,Table 1.2,M,16,tottax,All,25000.0,30000.0,False,False,False,6376403000 -2022,Table 1.2,L,16,tottax,All,25000.0,30000.0,True,False,False,4801988 -2022,Table 1.2,M,17,tottax,All,30000.0,40000.0,False,False,False,21322304000 -2022,Table 1.2,L,17,tottax,All,30000.0,40000.0,True,False,False,10791934 -2022,Table 1.2,M,18,tottax,All,40000.0,50000.0,False,False,False,30309343000 -2022,Table 1.2,L,18,tottax,All,40000.0,50000.0,True,False,False,10680343 -2022,Table 1.2,M,19,tottax,All,50000.0,75000.0,False,False,False,100103598000 -2022,Table 1.2,L,19,tottax,All,50000.0,75000.0,True,False,False,21378339 -2022,Table 1.2,M,20,tottax,All,75000.0,100000.0,False,False,False,113079420000 -2022,Table 1.2,L,20,tottax,All,75000.0,100000.0,True,False,False,14549648 -2022,Table 1.2,M,21,tottax,All,100000.0,200000.0,False,False,False,397758377000 -2022,Table 1.2,L,21,tottax,All,100000.0,200000.0,True,False,False,25547389 -2022,Table 1.2,M,22,tottax,All,200000.0,500000.0,False,False,False,483056987000 -2022,Table 1.2,L,22,tottax,All,200000.0,500000.0,True,False,False,9992304 -2022,Table 1.2,M,23,tottax,All,500000.0,1000000.0,False,False,False,260282198000 -2022,Table 1.2,L,23,tottax,All,500000.0,1000000.0,True,False,False,1672148 -2022,Table 1.2,M,24,tottax,All,1000000.0,1500000.0,False,False,False,114003393000 -2022,Table 1.2,L,24,tottax,All,1000000.0,1500000.0,True,False,False,360444 -2022,Table 1.2,M,25,tottax,All,1500000.0,2000000.0,False,False,False,69338677000 -2022,Table 1.2,L,25,tottax,All,1500000.0,2000000.0,True,False,False,148056 -2022,Table 1.2,M,26,tottax,All,2000000.0,5000000.0,False,False,False,171825620000 -2022,Table 1.2,L,26,tottax,All,2000000.0,5000000.0,True,False,False,207905 -2022,Table 1.2,M,27,tottax,All,5000000.0,10000000.0,False,False,False,100262125000 -2022,Table 1.2,L,27,tottax,All,5000000.0,10000000.0,True,False,False,52913 -2022,Table 1.2,M,28,tottax,All,10000000.0,inf,False,False,False,266286618000 -2022,Table 1.2,L,28,tottax,All,10000000.0,inf,True,False,False,34604 -2022,Table 1.4,CG,10,unemployment_compensation,All,-inf,0.0,False,False,False,297874000 -2022,Table 1.4,CF,10,unemployment_compensation,All,-inf,0.0,True,False,False,30375 -2022,Table 1.4,CG,9,unemployment_compensation,All,-inf,inf,False,False,True,30247572000 -2022,Table 1.4,CF,9,unemployment_compensation,All,-inf,inf,True,False,True,4728507 -2022,Table 1.4,CG,11,unemployment_compensation,All,1.0,5000.0,False,False,False,259782000 -2022,Table 1.4,CF,11,unemployment_compensation,All,1.0,5000.0,True,False,False,80787 -2022,Table 1.4,CG,12,unemployment_compensation,All,5000.0,10000.0,False,False,False,736433000 -2022,Table 1.4,CF,12,unemployment_compensation,All,5000.0,10000.0,True,False,False,151452 -2022,Table 1.4,CG,13,unemployment_compensation,All,10000.0,15000.0,False,False,False,1295114000 -2022,Table 1.4,CF,13,unemployment_compensation,All,10000.0,15000.0,True,False,False,241578 -2022,Table 1.4,CG,14,unemployment_compensation,All,15000.0,20000.0,False,False,False,1962929000 -2022,Table 1.4,CF,14,unemployment_compensation,All,15000.0,20000.0,True,False,False,302689 -2022,Table 1.4,CG,15,unemployment_compensation,All,20000.0,25000.0,False,False,False,2112690000 -2022,Table 1.4,CF,15,unemployment_compensation,All,20000.0,25000.0,True,False,False,304130 -2022,Table 1.4,CG,16,unemployment_compensation,All,25000.0,30000.0,False,False,False,2109457000 -2022,Table 1.4,CF,16,unemployment_compensation,All,25000.0,30000.0,True,False,False,317628 -2022,Table 1.4,CG,17,unemployment_compensation,All,30000.0,40000.0,False,False,False,3491782000 -2022,Table 1.4,CF,17,unemployment_compensation,All,30000.0,40000.0,True,False,False,547305 -2022,Table 1.4,CG,18,unemployment_compensation,All,40000.0,50000.0,False,False,False,2743510000 -2022,Table 1.4,CF,18,unemployment_compensation,All,40000.0,50000.0,True,False,False,404022 -2022,Table 1.4,CG,19,unemployment_compensation,All,50000.0,75000.0,False,False,False,4978676000 -2022,Table 1.4,CF,19,unemployment_compensation,All,50000.0,75000.0,True,False,False,776781 -2022,Table 1.4,CG,20,unemployment_compensation,All,75000.0,100000.0,False,False,False,3087608000 -2022,Table 1.4,CF,20,unemployment_compensation,All,75000.0,100000.0,True,False,False,511954 -2022,Table 1.4,CG,21,unemployment_compensation,All,100000.0,200000.0,False,False,False,5240219000 -2022,Table 1.4,CF,21,unemployment_compensation,All,100000.0,200000.0,True,False,False,817583 -2022,Table 1.4,CG,22,unemployment_compensation,All,200000.0,500000.0,False,False,False,1691302000 -2022,Table 1.4,CF,22,unemployment_compensation,All,200000.0,500000.0,True,False,False,215466 -2022,Table 1.4,CG,23,unemployment_compensation,All,500000.0,1000000.0,False,False,False,182568000 -2022,Table 1.4,CF,23,unemployment_compensation,All,500000.0,1000000.0,True,False,False,20982 -2022,Table 1.4,CG,24,unemployment_compensation,All,1000000.0,1500000.0,False,False,False,30487000 -2022,Table 1.4,CF,24,unemployment_compensation,All,1000000.0,1500000.0,True,False,False,3694 -2022,Table 1.4,CG,25,unemployment_compensation,All,1500000.0,2000000.0,False,False,False,6834000 -2022,Table 1.4,CF,25,unemployment_compensation,All,1500000.0,2000000.0,True,False,False,856 -2022,Table 1.4,CG,26,unemployment_compensation,All,2000000.0,5000000.0,False,False,False,8058000 -2022,Table 1.4,CF,26,unemployment_compensation,All,2000000.0,5000000.0,True,False,False,993 -2022,Table 1.4,CG,27,unemployment_compensation,All,5000000.0,10000000.0,False,False,False,1618000 -2022,Table 1.4,CF,27,unemployment_compensation,All,5000000.0,10000000.0,True,False,False,169 -2022,Table 1.4,CG,28,unemployment_compensation,All,10000000.0,inf,False,False,False,10632000 -2022,Table 1.4,CF,28,unemployment_compensation,All,10000000.0,inf,True,False,False,61 +2015,Table 1.1,D,10,adjusted_gross_income,All,-inf,inf,False,False,True,10210310102000.0 +2015,Table 1.1,B,10,count,All,-inf,inf,True,False,True,150493263.0 +2015,Table 1.1,D,11,adjusted_gross_income,All,-inf,0.0,False,False,False,-203775058000.0 +2015,Table 1.1,B,11,count,All,-inf,0.0,True,False,False,2072066.0 +2015,Table 1.1,D,12,adjusted_gross_income,All,1.0,5000.0,False,False,False,26240798000.0 +2015,Table 1.1,B,12,count,All,1.0,5000.0,True,False,False,10134704.0 +2015,Table 1.1,D,13,adjusted_gross_income,All,5000.0,10000.0,False,False,False,86411986000.0 +2015,Table 1.1,B,13,count,All,5000.0,10000.0,True,False,False,11398595.0 +2015,Table 1.1,D,14,adjusted_gross_income,All,10000.0,15000.0,False,False,False,152752468000.0 +2015,Table 1.1,B,14,count,All,10000.0,15000.0,True,False,False,12219480.0 +2015,Table 1.1,D,15,adjusted_gross_income,All,15000.0,20000.0,False,False,False,195857688000.0 +2015,Table 1.1,B,15,count,All,15000.0,20000.0,True,False,False,11228447.0 +2015,Table 1.1,D,16,adjusted_gross_income,All,20000.0,25000.0,False,False,False,224230854000.0 +2015,Table 1.1,B,16,count,All,20000.0,25000.0,True,False,False,9981450.0 +2015,Table 1.1,D,17,adjusted_gross_income,All,25000.0,30000.0,False,False,False,242572775000.0 +2015,Table 1.1,B,17,count,All,25000.0,30000.0,True,False,False,8832875.0 +2015,Table 1.1,D,18,adjusted_gross_income,All,30000.0,40000.0,False,False,False,519525813000.0 +2015,Table 1.1,B,18,count,All,30000.0,40000.0,True,False,False,14913880.0 +2015,Table 1.1,D,19,adjusted_gross_income,All,40000.0,50000.0,False,False,False,520845982000.0 +2015,Table 1.1,B,19,count,All,40000.0,50000.0,True,False,False,11625418.0 +2015,Table 1.1,D,20,adjusted_gross_income,All,50000.0,75000.0,False,False,False,1228299087000.0 +2015,Table 1.1,B,20,count,All,50000.0,75000.0,True,False,False,19980117.0 +2015,Table 1.1,D,21,adjusted_gross_income,All,75000.0,100000.0,False,False,False,1111174843000.0 +2015,Table 1.1,B,21,count,All,75000.0,100000.0,True,False,False,12821791.0 +2015,Table 1.1,D,22,adjusted_gross_income,All,100000.0,200000.0,False,False,False,2506497828000.0 +2015,Table 1.1,B,22,count,All,100000.0,200000.0,True,False,False,18532593.0 +2015,Table 1.1,D,23,adjusted_gross_income,All,200000.0,500000.0,False,False,False,1546515483000.0 +2015,Table 1.1,B,23,count,All,200000.0,500000.0,True,False,False,5428176.0 +2015,Table 1.1,D,24,adjusted_gross_income,All,500000.0,1000000.0,False,False,False,597676645000.0 +2015,Table 1.1,B,24,count,All,500000.0,1000000.0,True,False,False,884335.0 +2015,Table 1.1,D,25,adjusted_gross_income,All,1000000.0,1500000.0,False,False,False,236499605000.0 +2015,Table 1.1,B,25,count,All,1000000.0,1500000.0,True,False,False,195905.0 +2015,Table 1.1,D,26,adjusted_gross_income,All,1500000.0,2000000.0,False,False,False,137686352000.0 +2015,Table 1.1,B,26,count,All,1500000.0,2000000.0,True,False,False,79971.0 +2015,Table 1.1,D,27,adjusted_gross_income,All,2000000.0,5000000.0,False,False,False,346864436000.0 +2015,Table 1.1,B,27,count,All,2000000.0,5000000.0,True,False,False,116718.0 +2015,Table 1.1,D,28,adjusted_gross_income,All,5000000.0,10000000.0,False,False,False,195661353000.0 +2015,Table 1.1,B,28,count,All,5000000.0,10000000.0,True,False,False,28680.0 +2015,Table 1.1,D,29,adjusted_gross_income,All,10000000.0,inf,False,False,False,538771167000.0 +2015,Table 1.1,B,29,count,All,10000000.0,inf,True,False,False,18061.0 +2015,Table 1.2,AP,9,adjusted_gross_income,Head of Household,-inf,inf,False,False,False,823331580000.0 +2015,Table 1.2,P,9,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,-inf,inf,False,False,False,6627921521000.0 +2015,Table 1.2,AC,9,adjusted_gross_income,Married Filing Separately,-inf,inf,False,False,False,190688552000.0 +2015,Table 1.2,BC,9,adjusted_gross_income,Single,-inf,inf,False,False,False,2568368449000.0 +2015,Table 1.2,AO,9,count,Head of Household,-inf,inf,True,False,False,22134303.0 +2015,Table 1.2,O,9,count,Married Filing Jointly/Surviving Spouse,-inf,inf,True,False,False,54294820.0 +2015,Table 1.2,AB,9,count,Married Filing Separately,-inf,inf,True,False,False,2977192.0 +2015,Table 1.2,BB,9,count,Single,-inf,inf,True,False,False,71086947.0 +2015,Table 1.2,D,9,exemptions,All,-inf,inf,False,False,True,1140740415000.0 +2015,Table 1.2,F,9,itemized_deductions,All,-inf,inf,False,False,True,1257437010000.0 +2015,Table 1.2,E,9,itemized_deductions,All,-inf,inf,True,False,True,44567263.0 +2015,Table 1.2,H,9,standard_deduction,All,-inf,inf,False,False,True,900609447000.0 +2015,Table 1.2,G,9,standard_deduction,All,-inf,inf,True,False,True,103844288.0 +2015,Table 1.2,L,9,income_tax_after_credits,All,-inf,inf,False,False,True,1435848586000.0 +2015,Table 1.2,K,9,income_tax_after_credits,All,-inf,inf,True,False,True,99021502.0 +2015,Table 1.2,J,9,taxable_income,All,-inf,inf,False,False,True,7350295492000.0 +2015,Table 1.2,I,9,taxable_income,All,-inf,inf,True,False,True,114871989.0 +2015,Table 1.2,N,9,tottax,All,-inf,inf,False,False,True,1457891441000.0 +2015,Table 1.2,M,9,tottax,All,-inf,inf,True,False,True,99040729.0 +2015,Table 1.2,AP,10,adjusted_gross_income,Head of Household,-inf,0.0,False,False,False,-6112273000.0 +2015,Table 1.2,P,10,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,-inf,0.0,False,False,False,-126340287000.0 +2015,Table 1.2,AC,10,adjusted_gross_income,Married Filing Separately,-inf,0.0,False,False,False,-13605308000.0 +2015,Table 1.2,BC,10,adjusted_gross_income,Single,-inf,0.0,False,False,False,-57717191000.0 +2015,Table 1.2,AO,10,count,Head of Household,-inf,0.0,True,False,False,94006.0 +2015,Table 1.2,O,10,count,Married Filing Jointly/Surviving Spouse,-inf,0.0,True,False,False,631850.0 +2015,Table 1.2,AB,10,count,Married Filing Separately,-inf,0.0,True,False,False,82706.0 +2015,Table 1.2,BB,10,count,Single,-inf,0.0,True,False,False,1263503.0 +2015,Table 1.2,D,10,exemptions,All,-inf,0.0,False,False,False,12446491000.0 +2015,Table 1.2,F,10,itemized_deductions,All,-inf,0.0,False,False,False,0.0 +2015,Table 1.2,E,10,itemized_deductions,All,-inf,0.0,True,False,False,0.0 +2015,Table 1.2,H,10,standard_deduction,All,-inf,0.0,False,False,False,0.0 +2015,Table 1.2,G,10,standard_deduction,All,-inf,0.0,True,False,False,0.0 +2015,Table 1.2,L,10,income_tax_after_credits,All,-inf,0.0,False,False,False,241975000.0 +2015,Table 1.2,K,10,income_tax_after_credits,All,-inf,0.0,True,False,False,6628.0 +2015,Table 1.2,J,10,taxable_income,All,-inf,0.0,False,False,False,0.0 +2015,Table 1.2,I,10,taxable_income,All,-inf,0.0,True,False,False,0.0 +2015,Table 1.2,N,10,tottax,All,-inf,0.0,False,False,False,242459000.0 +2015,Table 1.2,M,10,tottax,All,-inf,0.0,True,False,False,6640.0 +2015,Table 1.2,AP,11,adjusted_gross_income,Head of Household,1.0,5000.0,False,False,False,1575074000.0 +2015,Table 1.2,P,11,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,1.0,5000.0,False,False,False,1722543000.0 +2015,Table 1.2,AC,11,adjusted_gross_income,Married Filing Separately,1.0,5000.0,False,False,False,291398000.0 +2015,Table 1.2,BC,11,adjusted_gross_income,Single,1.0,5000.0,False,False,False,22651783000.0 +2015,Table 1.2,AO,11,count,Head of Household,1.0,5000.0,True,False,False,522095.0 +2015,Table 1.2,O,11,count,Married Filing Jointly/Surviving Spouse,1.0,5000.0,True,False,False,721218.0 +2015,Table 1.2,AB,11,count,Married Filing Separately,1.0,5000.0,True,False,False,136980.0 +2015,Table 1.2,BB,11,count,Single,1.0,5000.0,True,False,False,8754410.0 +2015,Table 1.2,D,11,exemptions,All,1.0,5000.0,False,False,False,31087459000.0 +2015,Table 1.2,F,11,itemized_deductions,All,1.0,5000.0,False,False,False,5062303000.0 +2015,Table 1.2,E,11,itemized_deductions,All,1.0,5000.0,True,False,False,317443.0 +2015,Table 1.2,H,11,standard_deduction,All,1.0,5000.0,False,False,False,54726212000.0 +2015,Table 1.2,G,11,standard_deduction,All,1.0,5000.0,True,False,False,9815255.0 +2015,Table 1.2,L,11,income_tax_after_credits,All,1.0,5000.0,False,False,False,40941000.0 +2015,Table 1.2,K,11,income_tax_after_credits,All,1.0,5000.0,True,False,False,199682.0 +2015,Table 1.2,J,11,taxable_income,All,1.0,5000.0,False,False,False,433802000.0 +2015,Table 1.2,I,11,taxable_income,All,1.0,5000.0,True,False,False,355760.0 +2015,Table 1.2,N,11,tottax,All,1.0,5000.0,False,False,False,40941000.0 +2015,Table 1.2,M,11,tottax,All,1.0,5000.0,True,False,False,199682.0 +2015,Table 1.2,AP,12,adjusted_gross_income,Head of Household,5000.0,10000.0,False,False,False,12792368000.0 +2015,Table 1.2,P,12,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,5000.0,10000.0,False,False,False,7565279000.0 +2015,Table 1.2,AC,12,adjusted_gross_income,Married Filing Separately,5000.0,10000.0,False,False,False,1031674000.0 +2015,Table 1.2,BC,12,adjusted_gross_income,Single,5000.0,10000.0,False,False,False,65022665000.0 +2015,Table 1.2,AO,12,count,Head of Household,5000.0,10000.0,True,False,False,1579866.0 +2015,Table 1.2,O,12,count,Married Filing Jointly/Surviving Spouse,5000.0,10000.0,True,False,False,983536.0 +2015,Table 1.2,AB,12,count,Married Filing Separately,5000.0,10000.0,True,False,False,137000.0 +2015,Table 1.2,BB,12,count,Single,5000.0,10000.0,True,False,False,8698192.0 +2015,Table 1.2,D,12,exemptions,All,5000.0,10000.0,False,False,False,52312323000.0 +2015,Table 1.2,F,12,itemized_deductions,All,5000.0,10000.0,False,False,False,6390443000.0 +2015,Table 1.2,E,12,itemized_deductions,All,5000.0,10000.0,True,False,False,384355.0 +2015,Table 1.2,H,12,standard_deduction,All,5000.0,10000.0,False,False,False,81276862000.0 +2015,Table 1.2,G,12,standard_deduction,All,5000.0,10000.0,True,False,False,11012200.0 +2015,Table 1.2,L,12,income_tax_after_credits,All,5000.0,10000.0,False,False,False,368015000.0 +2015,Table 1.2,K,12,income_tax_after_credits,All,5000.0,10000.0,True,False,False,1926254.0 +2015,Table 1.2,J,12,taxable_income,All,5000.0,10000.0,False,False,False,3654755000.0 +2015,Table 1.2,I,12,taxable_income,All,5000.0,10000.0,True,False,False,1971291.0 +2015,Table 1.2,N,12,tottax,All,5000.0,10000.0,False,False,False,368015000.0 +2015,Table 1.2,M,12,tottax,All,5000.0,10000.0,True,False,False,1926254.0 +2015,Table 1.2,AP,13,adjusted_gross_income,Head of Household,10000.0,15000.0,False,False,False,38156366000.0 +2015,Table 1.2,P,13,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,10000.0,15000.0,False,False,False,18485113000.0 +2015,Table 1.2,AC,13,adjusted_gross_income,Married Filing Separately,10000.0,15000.0,False,False,False,1957818000.0 +2015,Table 1.2,BC,13,adjusted_gross_income,Single,10000.0,15000.0,False,False,False,94153171000.0 +2015,Table 1.2,AO,13,count,Head of Household,10000.0,15000.0,True,False,False,2997105.0 +2015,Table 1.2,O,13,count,Married Filing Jointly/Surviving Spouse,10000.0,15000.0,True,False,False,1464654.0 +2015,Table 1.2,AB,13,count,Married Filing Separately,10000.0,15000.0,True,False,False,158225.0 +2015,Table 1.2,BB,13,count,Single,10000.0,15000.0,True,False,False,7599496.0 +2015,Table 1.2,D,13,exemptions,All,10000.0,15000.0,False,False,False,78326220000.0 +2015,Table 1.2,F,13,itemized_deductions,All,10000.0,15000.0,False,False,False,9962058000.0 +2015,Table 1.2,E,13,itemized_deductions,All,10000.0,15000.0,True,False,False,662599.0 +2015,Table 1.2,H,13,standard_deduction,All,10000.0,15000.0,False,False,False,92616719000.0 +2015,Table 1.2,G,13,standard_deduction,All,10000.0,15000.0,True,False,False,11555885.0 +2015,Table 1.2,L,13,income_tax_after_credits,All,10000.0,15000.0,False,False,False,1381283000.0 +2015,Table 1.2,K,13,income_tax_after_credits,All,10000.0,15000.0,True,False,False,4333058.0 +2015,Table 1.2,J,13,taxable_income,All,10000.0,15000.0,False,False,False,17534933000.0 +2015,Table 1.2,I,13,taxable_income,All,10000.0,15000.0,True,False,False,6085567.0 +2015,Table 1.2,N,13,tottax,All,10000.0,15000.0,False,False,False,1381283000.0 +2015,Table 1.2,M,13,tottax,All,10000.0,15000.0,True,False,False,4333058.0 +2015,Table 1.2,AP,14,adjusted_gross_income,Head of Household,15000.0,20000.0,False,False,False,50267348000.0 +2015,Table 1.2,P,14,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,15000.0,20000.0,False,False,False,30393578000.0 +2015,Table 1.2,AC,14,adjusted_gross_income,Married Filing Separately,15000.0,20000.0,False,False,False,3161912000.0 +2015,Table 1.2,BC,14,adjusted_gross_income,Single,15000.0,20000.0,False,False,False,112034850000.0 +2015,Table 1.2,AO,14,count,Head of Household,15000.0,20000.0,True,False,False,2885867.0 +2015,Table 1.2,O,14,count,Married Filing Jointly/Surviving Spouse,15000.0,20000.0,True,False,False,1739384.0 +2015,Table 1.2,AB,14,count,Married Filing Separately,15000.0,20000.0,True,False,False,178490.0 +2015,Table 1.2,BB,14,count,Single,15000.0,20000.0,True,False,False,6424705.0 +2015,Table 1.2,D,14,exemptions,All,15000.0,20000.0,False,False,False,80165929000.0 +2015,Table 1.2,F,14,itemized_deductions,All,15000.0,20000.0,False,False,False,12524176000.0 +2015,Table 1.2,E,14,itemized_deductions,All,15000.0,20000.0,True,False,False,811728.0 +2015,Table 1.2,H,14,standard_deduction,All,15000.0,20000.0,False,False,False,86251291000.0 +2015,Table 1.2,G,14,standard_deduction,All,15000.0,20000.0,True,False,False,10416717.0 +2015,Table 1.2,L,14,income_tax_after_credits,All,15000.0,20000.0,False,False,False,3523850000.0 +2015,Table 1.2,K,14,income_tax_after_credits,All,15000.0,20000.0,True,False,False,5195436.0 +2015,Table 1.2,J,14,taxable_income,All,15000.0,20000.0,False,False,False,43206787000.0 +2015,Table 1.2,I,14,taxable_income,All,15000.0,20000.0,True,False,False,6850887.0 +2015,Table 1.2,N,14,tottax,All,15000.0,20000.0,False,False,False,3523850000.0 +2015,Table 1.2,M,14,tottax,All,15000.0,20000.0,True,False,False,5195436.0 +2015,Table 1.2,AP,15,adjusted_gross_income,Head of Household,20000.0,25000.0,False,False,False,54911539000.0 +2015,Table 1.2,P,15,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,20000.0,25000.0,False,False,False,41271852000.0 +2015,Table 1.2,AC,15,adjusted_gross_income,Married Filing Separately,20000.0,25000.0,False,False,False,4940024000.0 +2015,Table 1.2,BC,15,adjusted_gross_income,Single,20000.0,25000.0,False,False,False,123107439000.0 +2015,Table 1.2,AO,15,count,Head of Household,20000.0,25000.0,True,False,False,2444577.0 +2015,Table 1.2,O,15,count,Married Filing Jointly/Surviving Spouse,20000.0,25000.0,True,False,False,1829227.0 +2015,Table 1.2,AB,15,count,Married Filing Separately,20000.0,25000.0,True,False,False,219122.0 +2015,Table 1.2,BB,15,count,Single,20000.0,25000.0,True,False,False,5488525.0 +2015,Table 1.2,D,15,exemptions,All,20000.0,25000.0,False,False,False,72448913000.0 +2015,Table 1.2,F,15,itemized_deductions,All,20000.0,25000.0,False,False,False,14912176000.0 +2015,Table 1.2,E,15,itemized_deductions,All,20000.0,25000.0,True,False,False,941085.0 +2015,Table 1.2,H,15,standard_deduction,All,20000.0,25000.0,False,False,False,76036514000.0 +2015,Table 1.2,G,15,standard_deduction,All,20000.0,25000.0,True,False,False,9039307.0 +2015,Table 1.2,L,15,income_tax_after_credits,All,20000.0,25000.0,False,False,False,6191130000.0 +2015,Table 1.2,K,15,income_tax_after_credits,All,20000.0,25000.0,True,False,False,5404801.0 +2015,Table 1.2,J,15,taxable_income,All,20000.0,25000.0,False,False,False,71587937000.0 +2015,Table 1.2,I,15,taxable_income,All,20000.0,25000.0,True,False,False,7851151.0 +2015,Table 1.2,N,15,tottax,All,20000.0,25000.0,False,False,False,6191130000.0 +2015,Table 1.2,M,15,tottax,All,20000.0,25000.0,True,False,False,5404801.0 +2015,Table 1.2,AP,16,adjusted_gross_income,Head of Household,25000.0,30000.0,False,False,False,57018894000.0 +2015,Table 1.2,P,16,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,25000.0,30000.0,False,False,False,50362264000.0 +2015,Table 1.2,AC,16,adjusted_gross_income,Married Filing Separately,25000.0,30000.0,False,False,False,6252129000.0 +2015,Table 1.2,BC,16,adjusted_gross_income,Single,25000.0,30000.0,False,False,False,128939489000.0 +2015,Table 1.2,AO,16,count,Head of Household,25000.0,30000.0,True,False,False,2074644.0 +2015,Table 1.2,O,16,count,Married Filing Jointly/Surviving Spouse,25000.0,30000.0,True,False,False,1833147.0 +2015,Table 1.2,AB,16,count,Married Filing Separately,25000.0,30000.0,True,False,False,227923.0 +2015,Table 1.2,BB,16,count,Single,25000.0,30000.0,True,False,False,4697161.0 +2015,Table 1.2,D,16,exemptions,All,25000.0,30000.0,False,False,False,66284851000.0 +2015,Table 1.2,F,16,itemized_deductions,All,25000.0,30000.0,False,False,False,17588605000.0 +2015,Table 1.2,E,16,itemized_deductions,All,25000.0,30000.0,True,False,False,1081500.0 +2015,Table 1.2,H,16,standard_deduction,All,25000.0,30000.0,False,False,False,66157579000.0 +2015,Table 1.2,G,16,standard_deduction,All,25000.0,30000.0,True,False,False,7749382.0 +2015,Table 1.2,L,16,income_tax_after_credits,All,25000.0,30000.0,False,False,False,8752577000.0 +2015,Table 1.2,K,16,income_tax_after_credits,All,25000.0,30000.0,True,False,False,5319345.0 +2015,Table 1.2,J,16,taxable_income,All,25000.0,30000.0,False,False,False,97548763000.0 +2015,Table 1.2,I,16,taxable_income,All,25000.0,30000.0,True,False,False,7999445.0 +2015,Table 1.2,N,16,tottax,All,25000.0,30000.0,False,False,False,8752589000.0 +2015,Table 1.2,M,16,tottax,All,25000.0,30000.0,True,False,False,5319345.0 +2015,Table 1.2,AP,17,adjusted_gross_income,Head of Household,30000.0,40000.0,False,False,False,111505100000.0 +2015,Table 1.2,P,17,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,30000.0,40000.0,False,False,False,129496107000.0 +2015,Table 1.2,AC,17,adjusted_gross_income,Married Filing Separately,30000.0,40000.0,False,False,False,14102338000.0 +2015,Table 1.2,BC,17,adjusted_gross_income,Single,30000.0,40000.0,False,False,False,264422268000.0 +2015,Table 1.2,AO,17,count,Head of Household,30000.0,40000.0,True,False,False,3213969.0 +2015,Table 1.2,O,17,count,Married Filing Jointly/Surviving Spouse,30000.0,40000.0,True,False,False,3693642.0 +2015,Table 1.2,AB,17,count,Married Filing Separately,30000.0,40000.0,True,False,False,404882.0 +2015,Table 1.2,BB,17,count,Single,30000.0,40000.0,True,False,False,7601388.0 +2015,Table 1.2,D,17,exemptions,All,30000.0,40000.0,False,False,False,115442883000.0 +2015,Table 1.2,F,17,itemized_deductions,All,30000.0,40000.0,False,False,False,40798529000.0 +2015,Table 1.2,E,17,itemized_deductions,All,30000.0,40000.0,True,False,False,2565311.0 +2015,Table 1.2,H,17,standard_deduction,All,30000.0,40000.0,False,False,False,108298415000.0 +2015,Table 1.2,G,17,standard_deduction,All,30000.0,40000.0,True,False,False,12348570.0 +2015,Table 1.2,L,17,income_tax_after_credits,All,30000.0,40000.0,False,False,False,25167659000.0 +2015,Table 1.2,K,17,income_tax_after_credits,All,30000.0,40000.0,True,False,False,10561750.0 +2015,Table 1.2,J,17,taxable_income,All,30000.0,40000.0,False,False,False,258870165000.0 +2015,Table 1.2,I,17,taxable_income,All,30000.0,40000.0,True,False,False,14358239.0 +2015,Table 1.2,N,17,tottax,All,30000.0,40000.0,False,False,False,25167676000.0 +2015,Table 1.2,M,17,tottax,All,30000.0,40000.0,True,False,False,10563700.0 +2015,Table 1.2,AP,18,adjusted_gross_income,Head of Household,40000.0,50000.0,False,False,False,87765923000.0 +2015,Table 1.2,P,18,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,40000.0,50000.0,False,False,False,163840994000.0 +2015,Table 1.2,AC,18,adjusted_gross_income,Married Filing Separately,40000.0,50000.0,False,False,False,16245296000.0 +2015,Table 1.2,BC,18,adjusted_gross_income,Single,40000.0,50000.0,False,False,False,252993769000.0 +2015,Table 1.2,AO,18,count,Head of Household,40000.0,50000.0,True,False,False,1966315.0 +2015,Table 1.2,O,18,count,Married Filing Jointly/Surviving Spouse,40000.0,50000.0,True,False,False,3643135.0 +2015,Table 1.2,AB,18,count,Married Filing Separately,40000.0,50000.0,True,False,False,362595.0 +2015,Table 1.2,BB,18,count,Single,40000.0,50000.0,True,False,False,5653373.0 +2015,Table 1.2,D,18,exemptions,All,40000.0,50000.0,False,False,False,91236099000.0 +2015,Table 1.2,F,18,itemized_deductions,All,40000.0,50000.0,False,False,False,48716667000.0 +2015,Table 1.2,E,18,itemized_deductions,All,40000.0,50000.0,True,False,False,2983529.0 +2015,Table 1.2,H,18,standard_deduction,All,40000.0,50000.0,False,False,False,79302209000.0 +2015,Table 1.2,G,18,standard_deduction,All,40000.0,50000.0,True,False,False,8640831.0 +2015,Table 1.2,L,18,income_tax_after_credits,All,40000.0,50000.0,False,False,False,32530107000.0 +2015,Table 1.2,K,18,income_tax_after_credits,All,40000.0,50000.0,True,False,False,9701526.0 +2015,Table 1.2,J,18,taxable_income,All,40000.0,50000.0,False,False,False,303324644000.0 +2015,Table 1.2,I,18,taxable_income,All,40000.0,50000.0,True,False,False,11493776.0 +2015,Table 1.2,N,18,tottax,All,40000.0,50000.0,False,False,False,32530207000.0 +2015,Table 1.2,M,18,tottax,All,40000.0,50000.0,True,False,False,9702501.0 +2015,Table 1.2,AP,19,adjusted_gross_income,Head of Household,50000.0,75000.0,False,False,False,149872637000.0 +2015,Table 1.2,P,19,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,50000.0,75000.0,False,False,False,558395634000.0 +2015,Table 1.2,AC,19,adjusted_gross_income,Married Filing Separately,50000.0,75000.0,False,False,False,33923498000.0 +2015,Table 1.2,BC,19,adjusted_gross_income,Single,50000.0,75000.0,False,False,False,486107317000.0 +2015,Table 1.2,AO,19,count,Head of Household,50000.0,75000.0,True,False,False,2477603.0 +2015,Table 1.2,O,19,count,Married Filing Jointly/Surviving Spouse,50000.0,75000.0,True,False,False,8915819.0 +2015,Table 1.2,AB,19,count,Married Filing Separately,50000.0,75000.0,True,False,False,561196.0 +2015,Table 1.2,BB,19,count,Single,50000.0,75000.0,True,False,False,8025499.0 +2015,Table 1.2,D,19,exemptions,All,50000.0,75000.0,False,False,False,169228826000.0 +2015,Table 1.2,F,19,itemized_deductions,All,50000.0,75000.0,False,False,False,134805158000.0 +2015,Table 1.2,E,19,itemized_deductions,All,50000.0,75000.0,True,False,False,7518141.0 +2015,Table 1.2,H,19,standard_deduction,All,50000.0,75000.0,False,False,False,126871911000.0 +2015,Table 1.2,G,19,standard_deduction,All,50000.0,75000.0,True,False,False,12461976.0 +2015,Table 1.2,L,19,income_tax_after_credits,All,50000.0,75000.0,False,False,False,99790385000.0 +2015,Table 1.2,K,19,income_tax_after_credits,All,50000.0,75000.0,True,False,False,18683039.0 +2015,Table 1.2,J,19,taxable_income,All,50000.0,75000.0,False,False,False,799873339000.0 +2015,Table 1.2,I,19,taxable_income,All,50000.0,75000.0,True,False,False,19872288.0 +2015,Table 1.2,N,19,tottax,All,50000.0,75000.0,False,False,False,99791796000.0 +2015,Table 1.2,M,19,tottax,All,50000.0,75000.0,True,False,False,18684013.0 +2015,Table 1.2,AP,20,adjusted_gross_income,Head of Household,75000.0,100000.0,False,False,False,83627737000.0 +2015,Table 1.2,P,20,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,75000.0,100000.0,False,False,False,726506192000.0 +2015,Table 1.2,AC,20,adjusted_gross_income,Married Filing Separately,75000.0,100000.0,False,False,False,20909768000.0 +2015,Table 1.2,BC,20,adjusted_gross_income,Single,75000.0,100000.0,False,False,False,280131146000.0 +2015,Table 1.2,AO,20,count,Head of Household,75000.0,100000.0,True,False,False,981338.0 +2015,Table 1.2,O,20,count,Married Filing Jointly/Surviving Spouse,75000.0,100000.0,True,False,False,8333406.0 +2015,Table 1.2,AB,20,count,Married Filing Separately,75000.0,100000.0,True,False,False,240402.0 +2015,Table 1.2,BB,20,count,Single,75000.0,100000.0,True,False,False,3266645.0 +2015,Table 1.2,D,20,exemptions,All,75000.0,100000.0,False,False,False,122634902000.0 +2015,Table 1.2,F,20,itemized_deductions,All,75000.0,100000.0,False,False,False,143109518000.0 +2015,Table 1.2,E,20,itemized_deductions,All,75000.0,100000.0,True,False,False,6957567.0 +2015,Table 1.2,H,20,standard_deduction,All,75000.0,100000.0,False,False,False,68439631000.0 +2015,Table 1.2,G,20,standard_deduction,All,75000.0,100000.0,True,False,False,5864215.0 +2015,Table 1.2,L,20,income_tax_after_credits,All,75000.0,100000.0,False,False,False,105900927000.0 +2015,Table 1.2,K,20,income_tax_after_credits,All,75000.0,100000.0,True,False,False,12561202.0 +2015,Table 1.2,J,20,taxable_income,All,75000.0,100000.0,False,False,False,778011174000.0 +2015,Table 1.2,I,20,taxable_income,All,75000.0,100000.0,True,False,False,12780368.0 +2015,Table 1.2,N,20,tottax,All,75000.0,100000.0,False,False,False,105901459000.0 +2015,Table 1.2,M,20,tottax,All,75000.0,100000.0,True,False,False,12562177.0 +2015,Table 1.2,AP,21,adjusted_gross_income,Head of Household,100000.0,200000.0,False,False,False,95168655000.0 +2015,Table 1.2,P,21,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,100000.0,200000.0,False,False,False,2010365290000.0 +2015,Table 1.2,AC,21,adjusted_gross_income,Married Filing Separately,100000.0,200000.0,False,False,False,25864087000.0 +2015,Table 1.2,BC,21,adjusted_gross_income,Single,100000.0,200000.0,False,False,False,375099797000.0 +2015,Table 1.2,AO,21,count,Head of Household,100000.0,200000.0,True,False,False,729595.0 +2015,Table 1.2,O,21,count,Married Filing Jointly/Surviving Spouse,100000.0,200000.0,True,False,False,14734839.0 +2015,Table 1.2,AB,21,count,Married Filing Separately,100000.0,200000.0,True,False,False,202292.0 +2015,Table 1.2,BB,21,count,Single,100000.0,200000.0,True,False,False,2865867.0 +2015,Table 1.2,D,21,exemptions,All,100000.0,200000.0,False,False,False,198173870000.0 +2015,Table 1.2,F,21,itemized_deductions,All,100000.0,200000.0,False,False,False,358208357000.0 +2015,Table 1.2,E,21,itemized_deductions,All,100000.0,200000.0,True,False,False,14038259.0 +2015,Table 1.2,H,21,standard_deduction,All,100000.0,200000.0,False,False,False,55233169000.0 +2015,Table 1.2,G,21,standard_deduction,All,100000.0,200000.0,True,False,False,4494023.0 +2015,Table 1.2,L,21,income_tax_after_credits,All,100000.0,200000.0,False,False,False,316328337000.0 +2015,Table 1.2,K,21,income_tax_after_credits,All,100000.0,200000.0,True,False,False,18399987.0 +2015,Table 1.2,J,21,taxable_income,All,100000.0,200000.0,False,False,False,1895870893000.0 +2015,Table 1.2,I,21,taxable_income,All,100000.0,200000.0,True,False,False,18510747.0 +2015,Table 1.2,N,21,tottax,All,100000.0,200000.0,False,False,False,316349637000.0 +2015,Table 1.2,M,21,tottax,All,100000.0,200000.0,True,False,False,18402358.0 +2015,Table 1.2,AP,22,adjusted_gross_income,Head of Household,200000.0,500000.0,False,False,False,38411664000.0 +2015,Table 1.2,P,22,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,200000.0,500000.0,False,False,False,1322258013000.0 +2015,Table 1.2,AC,22,adjusted_gross_income,Married Filing Separately,200000.0,500000.0,False,False,False,12954865000.0 +2015,Table 1.2,BC,22,adjusted_gross_income,Single,200000.0,500000.0,False,False,False,172890940000.0 +2015,Table 1.2,AO,22,count,Head of Household,200000.0,500000.0,True,False,False,135203.0 +2015,Table 1.2,O,22,count,Married Filing Jointly/Surviving Spouse,200000.0,500000.0,True,False,False,4644659.0 +2015,Table 1.2,AB,22,count,Married Filing Separately,200000.0,500000.0,True,False,False,45272.0 +2015,Table 1.2,BB,22,count,Single,200000.0,500000.0,True,False,False,603042.0 +2015,Table 1.2,D,22,exemptions,All,200000.0,500000.0,False,False,False,50951651000.0 +2015,Table 1.2,F,22,itemized_deductions,All,200000.0,500000.0,False,False,False,220760559000.0 +2015,Table 1.2,E,22,itemized_deductions,All,200000.0,500000.0,True,False,False,5083499.0 +2015,Table 1.2,H,22,standard_deduction,All,200000.0,500000.0,False,False,False,4196553000.0 +2015,Table 1.2,G,22,standard_deduction,All,200000.0,500000.0,True,False,False,344509.0 +2015,Table 1.2,L,22,income_tax_after_credits,All,200000.0,500000.0,False,False,False,297192494000.0 +2015,Table 1.2,K,22,income_tax_after_credits,All,200000.0,500000.0,True,False,False,5409762.0 +2015,Table 1.2,J,22,taxable_income,All,200000.0,500000.0,False,False,False,1271631085000.0 +2015,Table 1.2,I,22,taxable_income,All,200000.0,500000.0,True,False,False,5421049.0 +2015,Table 1.2,N,22,tottax,All,200000.0,500000.0,False,False,False,299832203000.0 +2015,Table 1.2,M,22,tottax,All,200000.0,500000.0,True,False,False,5418598.0 +2015,Table 1.2,AP,23,adjusted_gross_income,Head of Household,500000.0,1000000.0,False,False,False,14214904000.0 +2015,Table 1.2,P,23,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,500000.0,1000000.0,False,False,False,512355084000.0 +2015,Table 1.2,AC,23,adjusted_gross_income,Married Filing Separately,500000.0,1000000.0,False,False,False,7551360000.0 +2015,Table 1.2,BC,23,adjusted_gross_income,Single,500000.0,1000000.0,False,False,False,63555296000.0 +2015,Table 1.2,AO,23,count,Head of Household,500000.0,1000000.0,True,False,False,21033.0 +2015,Table 1.2,O,23,count,Married Filing Jointly/Surviving Spouse,500000.0,1000000.0,True,False,False,758569.0 +2015,Table 1.2,AB,23,count,Married Filing Separately,500000.0,1000000.0,True,False,False,11170.0 +2015,Table 1.2,BB,23,count,Single,500000.0,1000000.0,True,False,False,93563.0 +2015,Table 1.2,D,23,exemptions,All,500000.0,1000000.0,False,False,False,0.0 +2015,Table 1.2,F,23,itemized_deductions,All,500000.0,1000000.0,False,False,False,69703881000.0 +2015,Table 1.2,E,23,itemized_deductions,All,500000.0,1000000.0,True,False,False,821784.0 +2015,Table 1.2,H,23,standard_deduction,All,500000.0,1000000.0,False,False,False,740487000.0 +2015,Table 1.2,G,23,standard_deduction,All,500000.0,1000000.0,True,False,False,62549.0 +2015,Table 1.2,L,23,income_tax_after_credits,All,500000.0,1000000.0,False,False,False,151253134000.0 +2015,Table 1.2,K,23,income_tax_after_credits,All,500000.0,1000000.0,True,False,False,881330.0 +2015,Table 1.2,J,23,taxable_income,All,500000.0,1000000.0,False,False,False,527614042000.0 +2015,Table 1.2,I,23,taxable_income,All,500000.0,1000000.0,True,False,False,883020.0 +2015,Table 1.2,N,23,tottax,All,500000.0,1000000.0,False,False,False,154388762000.0 +2015,Table 1.2,M,23,tottax,All,500000.0,1000000.0,True,False,False,883288.0 +2015,Table 1.2,AP,24,adjusted_gross_income,Head of Household,1000000.0,1500000.0,False,False,False,5808236000.0 +2015,Table 1.2,P,24,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,1000000.0,1500000.0,False,False,False,199994480000.0 +2015,Table 1.2,AC,24,adjusted_gross_income,Married Filing Separately,1000000.0,1500000.0,False,False,False,3762883000.0 +2015,Table 1.2,BC,24,adjusted_gross_income,Single,1000000.0,1500000.0,False,False,False,26934006000.0 +2015,Table 1.2,AO,24,count,Head of Household,1000000.0,1500000.0,True,False,False,4826.0 +2015,Table 1.2,O,24,count,Married Filing Jointly/Surviving Spouse,1000000.0,1500000.0,True,False,False,165678.0 +2015,Table 1.2,AB,24,count,Married Filing Separately,1000000.0,1500000.0,True,False,False,3056.0 +2015,Table 1.2,BB,24,count,Single,1000000.0,1500000.0,True,False,False,22345.0 +2015,Table 1.2,D,24,exemptions,All,1000000.0,1500000.0,False,False,False,0.0 +2015,Table 1.2,F,24,itemized_deductions,All,1000000.0,1500000.0,False,False,False,26437560000.0 +2015,Table 1.2,E,24,itemized_deductions,All,1000000.0,1500000.0,True,False,False,177407.0 +2015,Table 1.2,H,24,standard_deduction,All,1000000.0,1500000.0,False,False,False,218776000.0 +2015,Table 1.2,G,24,standard_deduction,All,1000000.0,1500000.0,True,False,False,18497.0 +2015,Table 1.2,L,24,income_tax_after_credits,All,1000000.0,1500000.0,False,False,False,64652109000.0 +2015,Table 1.2,K,24,income_tax_after_credits,All,1000000.0,1500000.0,True,False,False,195087.0 +2015,Table 1.2,J,24,taxable_income,All,1000000.0,1500000.0,False,False,False,210041628000.0 +2015,Table 1.2,I,24,taxable_income,All,1000000.0,1500000.0,True,False,False,195466.0 +2015,Table 1.2,N,24,tottax,All,1000000.0,1500000.0,False,False,False,66323590000.0 +2015,Table 1.2,M,24,tottax,All,1000000.0,1500000.0,True,False,False,195676.0 +2015,Table 1.2,AP,25,adjusted_gross_income,Head of Household,1500000.0,2000000.0,False,False,False,3590648000.0 +2015,Table 1.2,P,25,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,1500000.0,2000000.0,False,False,False,115599264000.0 +2015,Table 1.2,AC,25,adjusted_gross_income,Married Filing Separately,1500000.0,2000000.0,False,False,False,2741360000.0 +2015,Table 1.2,BC,25,adjusted_gross_income,Single,1500000.0,2000000.0,False,False,False,15755080000.0 +2015,Table 1.2,AO,25,count,Head of Household,1500000.0,2000000.0,True,False,False,2091.0 +2015,Table 1.2,O,25,count,Married Filing Jointly/Surviving Spouse,1500000.0,2000000.0,True,False,False,67141.0 +2015,Table 1.2,AB,25,count,Married Filing Separately,1500000.0,2000000.0,True,False,False,1587.0 +2015,Table 1.2,BB,25,count,Single,1500000.0,2000000.0,True,False,False,9152.0 +2015,Table 1.2,D,25,exemptions,All,1500000.0,2000000.0,False,False,False,0.0 +2015,Table 1.2,F,25,itemized_deductions,All,1500000.0,2000000.0,False,False,False,14954416000.0 +2015,Table 1.2,E,25,itemized_deductions,All,1500000.0,2000000.0,True,False,False,71685.0 +2015,Table 1.2,H,25,standard_deduction,All,1500000.0,2000000.0,False,False,False,98942000.0 +2015,Table 1.2,G,25,standard_deduction,All,1500000.0,2000000.0,True,False,False,8285.0 +2015,Table 1.2,L,25,income_tax_after_credits,All,1500000.0,2000000.0,False,False,False,38594091000.0 +2015,Table 1.2,K,25,income_tax_after_credits,All,1500000.0,2000000.0,True,False,False,79731.0 +2015,Table 1.2,J,25,taxable_income,All,1500000.0,2000000.0,False,False,False,122829421000.0 +2015,Table 1.2,I,25,taxable_income,All,1500000.0,2000000.0,True,False,False,79839.0 +2015,Table 1.2,N,25,tottax,All,1500000.0,2000000.0,False,False,False,39671617000.0 +2015,Table 1.2,M,25,tottax,All,1500000.0,2000000.0,True,False,False,79884.0 +2015,Table 1.2,AP,26,adjusted_gross_income,Head of Household,2000000.0,5000000.0,False,False,False,8909085000.0 +2015,Table 1.2,P,26,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,2000000.0,5000000.0,False,False,False,287553194000.0 +2015,Table 1.2,AC,26,adjusted_gross_income,Married Filing Separately,2000000.0,5000000.0,False,False,False,8073951000.0 +2015,Table 1.2,BC,26,adjusted_gross_income,Single,2000000.0,5000000.0,False,False,False,42328206000.0 +2015,Table 1.2,AO,26,count,Head of Household,2000000.0,5000000.0,True,False,False,3043.0 +2015,Table 1.2,O,26,count,Married Filing Jointly/Surviving Spouse,2000000.0,5000000.0,True,False,False,96769.0 +2015,Table 1.2,AB,26,count,Married Filing Separately,2000000.0,5000000.0,True,False,False,2656.0 +2015,Table 1.2,BB,26,count,Single,2000000.0,5000000.0,True,False,False,14249.0 +2015,Table 1.2,D,26,exemptions,All,2000000.0,5000000.0,False,False,False,0.0 +2015,Table 1.2,F,26,itemized_deductions,All,2000000.0,5000000.0,False,False,False,38021038000.0 +2015,Table 1.2,E,26,itemized_deductions,All,2000000.0,5000000.0,True,False,False,106755.0 +2015,Table 1.2,H,26,standard_deduction,All,2000000.0,5000000.0,False,False,False,118857000.0 +2015,Table 1.2,G,26,standard_deduction,All,2000000.0,5000000.0,True,False,False,9963.0 +2015,Table 1.2,L,26,income_tax_after_credits,All,2000000.0,5000000.0,False,False,False,98361813000.0 +2015,Table 1.2,K,26,income_tax_after_credits,All,2000000.0,5000000.0,True,False,False,116288.0 +2015,Table 1.2,J,26,taxable_income,All,2000000.0,5000000.0,False,False,False,308993986000.0 +2015,Table 1.2,I,26,taxable_income,All,2000000.0,5000000.0,True,False,False,116452.0 +2015,Table 1.2,N,26,tottax,All,2000000.0,5000000.0,False,False,False,101488542000.0 +2015,Table 1.2,M,26,tottax,All,2000000.0,5000000.0,True,False,False,116605.0 +2015,Table 1.2,AP,27,adjusted_gross_income,Head of Household,5000000.0,10000000.0,False,False,False,4737921000.0 +2015,Table 1.2,P,27,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,5000000.0,10000000.0,False,False,False,161324719000.0 +2015,Table 1.2,AC,27,adjusted_gross_income,Married Filing Separately,5000000.0,10000000.0,False,False,False,5621137000.0 +2015,Table 1.2,BC,27,adjusted_gross_income,Single,5000000.0,10000000.0,False,False,False,23977575000.0 +2015,Table 1.2,AO,27,count,Head of Household,5000000.0,10000000.0,True,False,False,703.0 +2015,Table 1.2,O,27,count,Married Filing Jointly/Surviving Spouse,5000000.0,10000000.0,True,False,False,23661.0 +2015,Table 1.2,AB,27,count,Married Filing Separately,5000000.0,10000000.0,True,False,False,800.0 +2015,Table 1.2,BB,27,count,Single,5000000.0,10000000.0,True,False,False,3516.0 +2015,Table 1.2,D,27,exemptions,All,5000000.0,10000000.0,False,False,False,0.0 +2015,Table 1.2,F,27,itemized_deductions,All,5000000.0,10000000.0,False,False,False,21753953000.0 +2015,Table 1.2,E,27,itemized_deductions,All,5000000.0,10000000.0,True,False,False,27125.0 +2015,Table 1.2,H,27,standard_deduction,All,5000000.0,10000000.0,False,False,False,18800000.0 +2015,Table 1.2,G,27,standard_deduction,All,5000000.0,10000000.0,True,False,False,1555.0 +2015,Table 1.2,L,27,income_tax_after_credits,All,5000000.0,10000000.0,False,False,False,54239522000.0 +2015,Table 1.2,K,27,income_tax_after_credits,All,5000000.0,10000000.0,True,False,False,28583.0 +2015,Table 1.2,J,27,taxable_income,All,5000000.0,10000000.0,False,False,False,173981577000.0 +2015,Table 1.2,I,27,taxable_income,All,5000000.0,10000000.0,True,False,False,28614.0 +2015,Table 1.2,N,27,tottax,All,5000000.0,10000000.0,False,False,False,56334403000.0 +2015,Table 1.2,M,27,tottax,All,5000000.0,10000000.0,True,False,False,28655.0 +2015,Table 1.2,AP,28,adjusted_gross_income,Head of Household,10000000.0,inf,False,False,False,11109754000.0 +2015,Table 1.2,P,28,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,10000000.0,inf,False,False,False,416772208000.0 +2015,Table 1.2,AC,28,adjusted_gross_income,Married Filing Separately,10000000.0,inf,False,False,False,34908361000.0 +2015,Table 1.2,BC,28,adjusted_gross_income,Single,10000000.0,inf,False,False,False,75980843000.0 +2015,Table 1.2,AO,28,count,Head of Household,10000000.0,inf,True,False,False,424.0 +2015,Table 1.2,O,28,count,Married Filing Jointly/Surviving Spouse,10000000.0,inf,True,False,False,14485.0 +2015,Table 1.2,AB,28,count,Married Filing Separately,10000000.0,inf,True,False,False,835.0 +2015,Table 1.2,BB,28,count,Single,10000000.0,inf,True,False,False,2317.0 +2015,Table 1.2,D,28,exemptions,All,10000000.0,inf,False,False,False,0.0 +2015,Table 1.2,F,28,itemized_deductions,All,10000000.0,inf,False,False,False,73727614000.0 +2015,Table 1.2,E,28,itemized_deductions,All,10000000.0,inf,True,False,False,17490.0 +2015,Table 1.2,H,28,standard_deduction,All,10000000.0,inf,False,False,False,6520000.0 +2015,Table 1.2,G,28,standard_deduction,All,10000000.0,inf,True,False,False,569.0 +2015,Table 1.2,L,28,income_tax_after_credits,All,10000000.0,inf,False,False,False,131338237000.0 +2015,Table 1.2,K,28,income_tax_after_credits,All,10000000.0,inf,True,False,False,18012.0 +2015,Table 1.2,J,28,taxable_income,All,10000000.0,inf,False,False,False,465286561000.0 +2015,Table 1.2,I,28,taxable_income,All,10000000.0,inf,True,False,False,18032.0 +2015,Table 1.2,N,28,tottax,All,10000000.0,inf,False,False,False,139611281000.0 +2015,Table 1.2,M,28,tottax,All,10000000.0,inf,True,False,False,18057.0 +2015,Table 1.4,EE,9,alternative_minimum_tax,All,-inf,inf,False,False,True,31165616000.0 +2015,Table 1.4,ED,9,alternative_minimum_tax,All,-inf,inf,True,False,True,4467806.0 +2015,Table 1.4,U,9,business_net_profits,All,-inf,inf,False,False,True,391975736000.0 +2015,Table 1.4,W,9,business_net_losses,All,-inf,inf,False,False,True,60161435000.0 +2015,Table 1.4,T,9,business_net_profits,All,-inf,inf,True,False,True,18791200.0 +2015,Table 1.4,V,9,business_net_losses,All,-inf,inf,True,False,True,5935725.0 +2015,Table 1.4,Y,9,capital_gains_distributions,All,-inf,inf,False,False,True,11563203000.0 +2015,Table 1.4,X,9,capital_gains_distributions,All,-inf,inf,True,False,True,4323250.0 +2015,Table 1.4,AA,9,capital_gains_gross,All,-inf,inf,False,False,True,713598090000.0 +2015,Table 1.4,AC,9,capital_gains_losses,All,-inf,inf,False,False,True,18646316000.0 +2015,Table 1.4,Z,9,capital_gains_gross,All,-inf,inf,True,False,True,11674771.0 +2015,Table 1.4,AB,9,capital_gains_losses,All,-inf,inf,True,False,True,8279783.0 +2015,Table 1.4,BI,9,estate_income,All,-inf,inf,False,False,True,32453002000.0 +2015,Table 1.4,BK,9,estate_losses,All,-inf,inf,False,False,True,5033199000.0 +2015,Table 1.4,BH,9,estate_income,All,-inf,inf,True,False,True,630256.0 +2015,Table 1.4,BJ,9,estate_losses,All,-inf,inf,True,False,True,57802.0 +2015,Table 1.4,K,9,exempt_interest,All,-inf,inf,False,False,True,61871455000.0 +2015,Table 1.4,J,9,exempt_interest,All,-inf,inf,True,False,True,5827038.0 +2015,Table 1.4,DX,9,count_of_exemptions,All,-inf,inf,False,False,True,291938777.0 +2015,Table 1.4,AI,9,ira_distributions,All,-inf,inf,False,False,True,253213041000.0 +2015,Table 1.4,AH,9,ira_distributions,All,-inf,inf,True,False,True,14159018.0 +2015,Table 1.4,M,9,ordinary_dividends,All,-inf,inf,False,False,True,260252720000.0 +2015,Table 1.4,L,9,ordinary_dividends,All,-inf,inf,True,False,True,27607044.0 +2015,Table 1.4,BE,9,partnership_and_s_corp_income,All,-inf,inf,False,False,True,755622761000.0 +2015,Table 1.4,BG,9,partnership_and_s_corp_losses,All,-inf,inf,False,False,True,126618186000.0 +2015,Table 1.4,BD,9,partnership_and_s_corp_income,All,-inf,inf,True,False,True,6044409.0 +2015,Table 1.4,BF,9,partnership_and_s_corp_losses,All,-inf,inf,True,False,True,2699817.0 +2015,Table 1.4,AK,9,total_pension_income,All,-inf,inf,False,False,True,1169067148000.0 +2015,Table 1.4,AJ,9,total_pension_income,All,-inf,inf,True,False,True,30754854.0 +2015,Table 1.4,AM,9,taxable_pension_income,All,-inf,inf,False,False,True,689991999000.0 +2015,Table 1.4,AL,9,taxable_pension_income,All,-inf,inf,True,False,True,28199160.0 +2015,Table 1.4,O,9,qualified_dividends,All,-inf,inf,False,False,True,203187788000.0 +2015,Table 1.4,N,9,qualified_dividends,All,-inf,inf,True,False,True,25755976.0 +2015,Table 1.4,BA,9,rent_and_royalty_net_income,All,-inf,inf,False,False,True,103058883000.0 +2015,Table 1.4,BC,9,rent_and_royalty_net_losses,All,-inf,inf,False,False,True,46245560000.0 +2015,Table 1.4,AZ,9,rent_and_royalty_net_income,All,-inf,inf,True,False,True,6768234.0 +2015,Table 1.4,BB,9,rent_and_royalty_net_losses,All,-inf,inf,True,False,True,4531666.0 +2015,Table 1.4,BU,9,taxable_social_security,All,-inf,inf,False,False,True,277411075000.0 +2015,Table 1.4,BT,9,taxable_social_security,All,-inf,inf,True,False,True,19661104.0 +2015,Table 1.4,BS,9,total_social_security,All,-inf,inf,False,False,True,605152093000.0 +2015,Table 1.4,BR,9,total_social_security,All,-inf,inf,True,False,True,28087514.0 +2015,Table 1.4,EI,9,income_tax_before_credits,All,-inf,inf,False,False,True,1516165675000.0 +2015,Table 1.4,EH,9,income_tax_before_credits,All,-inf,inf,True,False,True,114482785.0 +2015,Table 1.4,I,9,taxable_interest_income,All,-inf,inf,False,False,True,95881223000.0 +2015,Table 1.4,H,9,taxable_interest_income,All,-inf,inf,True,False,True,42636696.0 +2015,Table 1.4,BQ,9,unemployment_compensation,All,-inf,inf,False,False,True,27225383000.0 +2015,Table 1.4,BP,9,unemployment_compensation,All,-inf,inf,True,False,True,6206841.0 +2015,Table 1.4,G,9,employment_income,All,-inf,inf,False,False,True,7112222959000.0 +2015,Table 1.4,F,9,employment_income,All,-inf,inf,True,False,True,124591428.0 +2015,Table 1.4,EE,10,alternative_minimum_tax,All,-inf,0.0,False,False,False,263639000.0 +2015,Table 1.4,ED,10,alternative_minimum_tax,All,-inf,0.0,True,False,False,7177.0 +2015,Table 1.4,U,10,business_net_profits,All,-inf,0.0,False,False,False,4057263000.0 +2015,Table 1.4,W,10,business_net_losses,All,-inf,0.0,False,False,False,12157756000.0 +2015,Table 1.4,T,10,business_net_profits,All,-inf,0.0,True,False,False,237120.0 +2015,Table 1.4,V,10,business_net_losses,All,-inf,0.0,True,False,False,426034.0 +2015,Table 1.4,Y,10,capital_gains_distributions,All,-inf,0.0,False,False,False,46969000.0 +2015,Table 1.4,X,10,capital_gains_distributions,All,-inf,0.0,True,False,False,29097.0 +2015,Table 1.4,AA,10,capital_gains_gross,All,-inf,0.0,False,False,False,17092947000.0 +2015,Table 1.4,AC,10,capital_gains_losses,All,-inf,0.0,False,False,False,1159884000.0 +2015,Table 1.4,Z,10,capital_gains_gross,All,-inf,0.0,True,False,False,167966.0 +2015,Table 1.4,AB,10,capital_gains_losses,All,-inf,0.0,True,False,False,448994.0 +2015,Table 1.4,BI,10,estate_income,All,-inf,0.0,False,False,False,555349000.0 +2015,Table 1.4,BK,10,estate_losses,All,-inf,0.0,False,False,False,1039656000.0 +2015,Table 1.4,BH,10,estate_income,All,-inf,0.0,True,False,False,13700.0 +2015,Table 1.4,BJ,10,estate_losses,All,-inf,0.0,True,False,False,4797.0 +2015,Table 1.4,K,10,exempt_interest,All,-inf,0.0,False,False,False,2127267000.0 +2015,Table 1.4,J,10,exempt_interest,All,-inf,0.0,True,False,False,99447.0 +2015,Table 1.4,DX,10,count_of_exemptions,All,-inf,0.0,False,False,False,3117150.0 +2015,Table 1.4,AI,10,ira_distributions,All,-inf,0.0,False,False,False,2064540000.0 +2015,Table 1.4,AH,10,ira_distributions,All,-inf,0.0,True,False,False,137120.0 +2015,Table 1.4,M,10,ordinary_dividends,All,-inf,0.0,False,False,False,5031112000.0 +2015,Table 1.4,L,10,ordinary_dividends,All,-inf,0.0,True,False,False,468764.0 +2015,Table 1.4,BE,10,partnership_and_s_corp_income,All,-inf,0.0,False,False,False,6548669000.0 +2015,Table 1.4,BG,10,partnership_and_s_corp_losses,All,-inf,0.0,False,False,False,50096035000.0 +2015,Table 1.4,BD,10,partnership_and_s_corp_income,All,-inf,0.0,True,False,False,103383.0 +2015,Table 1.4,BF,10,partnership_and_s_corp_losses,All,-inf,0.0,True,False,False,303549.0 +2015,Table 1.4,AK,10,total_pension_income,All,-inf,0.0,False,False,False,7687787000.0 +2015,Table 1.4,AJ,10,total_pension_income,All,-inf,0.0,True,False,False,295876.0 +2015,Table 1.4,AM,10,taxable_pension_income,All,-inf,0.0,False,False,False,2945570000.0 +2015,Table 1.4,AL,10,taxable_pension_income,All,-inf,0.0,True,False,False,231166.0 +2015,Table 1.4,O,10,qualified_dividends,All,-inf,0.0,False,False,False,3452820000.0 +2015,Table 1.4,N,10,qualified_dividends,All,-inf,0.0,True,False,False,431502.0 +2015,Table 1.4,BA,10,rent_and_royalty_net_income,All,-inf,0.0,False,False,False,2810017000.0 +2015,Table 1.4,BC,10,rent_and_royalty_net_losses,All,-inf,0.0,False,False,False,6061375000.0 +2015,Table 1.4,AZ,10,rent_and_royalty_net_income,All,-inf,0.0,True,False,False,158721.0 +2015,Table 1.4,BB,10,rent_and_royalty_net_losses,All,-inf,0.0,True,False,False,262688.0 +2015,Table 1.4,BU,10,taxable_social_security,All,-inf,0.0,False,False,False,11443000.0 +2015,Table 1.4,BT,10,taxable_social_security,All,-inf,0.0,True,False,False,1092.0 +2015,Table 1.4,BS,10,total_social_security,All,-inf,0.0,False,False,False,17452268000.0 +2015,Table 1.4,BR,10,total_social_security,All,-inf,0.0,True,False,False,892768.0 +2015,Table 1.4,EI,10,income_tax_before_credits,All,-inf,0.0,False,False,False,276447000.0 +2015,Table 1.4,EH,10,income_tax_before_credits,All,-inf,0.0,True,False,False,52934.0 +2015,Table 1.4,I,10,taxable_interest_income,All,-inf,0.0,False,False,False,4706956000.0 +2015,Table 1.4,H,10,taxable_interest_income,All,-inf,0.0,True,False,False,653423.0 +2015,Table 1.4,BQ,10,unemployment_compensation,All,-inf,0.0,False,False,False,95744000.0 +2015,Table 1.4,BP,10,unemployment_compensation,All,-inf,0.0,True,False,False,16718.0 +2015,Table 1.4,G,10,employment_income,All,-inf,0.0,False,False,False,20111022000.0 +2015,Table 1.4,F,10,employment_income,All,-inf,0.0,True,False,False,565122.0 +2015,Table 1.4,EE,11,alternative_minimum_tax,All,1.0,5000.0,False,False,False,3065000.0 +2015,Table 1.4,ED,11,alternative_minimum_tax,All,1.0,5000.0,True,False,False,1142.0 +2015,Table 1.4,U,11,business_net_profits,All,1.0,5000.0,False,False,False,3620847000.0 +2015,Table 1.4,W,11,business_net_losses,All,1.0,5000.0,False,False,False,865618000.0 +2015,Table 1.4,T,11,business_net_profits,All,1.0,5000.0,True,False,False,1275335.0 +2015,Table 1.4,V,11,business_net_losses,All,1.0,5000.0,True,False,False,138269.0 +2015,Table 1.4,Y,11,capital_gains_distributions,All,1.0,5000.0,False,False,False,195181000.0 +2015,Table 1.4,X,11,capital_gains_distributions,All,1.0,5000.0,True,False,False,222771.0 +2015,Table 1.4,AA,11,capital_gains_gross,All,1.0,5000.0,False,False,False,512882000.0 +2015,Table 1.4,AC,11,capital_gains_losses,All,1.0,5000.0,False,False,False,599286000.0 +2015,Table 1.4,Z,11,capital_gains_gross,All,1.0,5000.0,True,False,False,260178.0 +2015,Table 1.4,AB,11,capital_gains_losses,All,1.0,5000.0,True,False,False,309683.0 +2015,Table 1.4,BI,11,estate_income,All,1.0,5000.0,False,False,False,84768000.0 +2015,Table 1.4,BK,11,estate_losses,All,1.0,5000.0,False,False,False,15155000.0 +2015,Table 1.4,BH,11,estate_income,All,1.0,5000.0,True,False,False,20997.0 +2015,Table 1.4,BJ,11,estate_losses,All,1.0,5000.0,True,False,False,1034.0 +2015,Table 1.4,K,11,exempt_interest,All,1.0,5000.0,False,False,False,222610000.0 +2015,Table 1.4,J,11,exempt_interest,All,1.0,5000.0,True,False,False,90663.0 +2015,Table 1.4,DX,11,count_of_exemptions,All,1.0,5000.0,False,False,False,7781604.0 +2015,Table 1.4,AI,11,ira_distributions,All,1.0,5000.0,False,False,False,1141198000.0 +2015,Table 1.4,AH,11,ira_distributions,All,1.0,5000.0,True,False,False,341198.0 +2015,Table 1.4,M,11,ordinary_dividends,All,1.0,5000.0,False,False,False,891234000.0 +2015,Table 1.4,L,11,ordinary_dividends,All,1.0,5000.0,True,False,False,933634.0 +2015,Table 1.4,BE,11,partnership_and_s_corp_income,All,1.0,5000.0,False,False,False,354028000.0 +2015,Table 1.4,BG,11,partnership_and_s_corp_losses,All,1.0,5000.0,False,False,False,870335000.0 +2015,Table 1.4,BD,11,partnership_and_s_corp_income,All,1.0,5000.0,True,False,False,59110.0 +2015,Table 1.4,BF,11,partnership_and_s_corp_losses,All,1.0,5000.0,True,False,False,43820.0 +2015,Table 1.4,AK,11,total_pension_income,All,1.0,5000.0,False,False,False,5148239000.0 +2015,Table 1.4,AJ,11,total_pension_income,All,1.0,5000.0,True,False,False,780085.0 +2015,Table 1.4,AM,11,taxable_pension_income,All,1.0,5000.0,False,False,False,2178118000.0 +2015,Table 1.4,AL,11,taxable_pension_income,All,1.0,5000.0,True,False,False,729226.0 +2015,Table 1.4,O,11,qualified_dividends,All,1.0,5000.0,False,False,False,539192000.0 +2015,Table 1.4,N,11,qualified_dividends,All,1.0,5000.0,True,False,False,846481.0 +2015,Table 1.4,BA,11,rent_and_royalty_net_income,All,1.0,5000.0,False,False,False,550278000.0 +2015,Table 1.4,BC,11,rent_and_royalty_net_losses,All,1.0,5000.0,False,False,False,444446000.0 +2015,Table 1.4,AZ,11,rent_and_royalty_net_income,All,1.0,5000.0,True,False,False,191411.0 +2015,Table 1.4,BB,11,rent_and_royalty_net_losses,All,1.0,5000.0,True,False,False,67699.0 +2015,Table 1.4,BU,11,taxable_social_security,All,1.0,5000.0,False,False,False,51974000.0 +2015,Table 1.4,BT,11,taxable_social_security,All,1.0,5000.0,True,False,False,15592.0 +2015,Table 1.4,BS,11,total_social_security,All,1.0,5000.0,False,False,False,32721934000.0 +2015,Table 1.4,BR,11,total_social_security,All,1.0,5000.0,True,False,False,1927027.0 +2015,Table 1.4,EI,11,income_tax_before_credits,All,1.0,5000.0,False,False,False,63583000.0 +2015,Table 1.4,EH,11,income_tax_before_credits,All,1.0,5000.0,True,False,False,277180.0 +2015,Table 1.4,I,11,taxable_interest_income,All,1.0,5000.0,False,False,False,606099000.0 +2015,Table 1.4,H,11,taxable_interest_income,All,1.0,5000.0,True,False,False,1484669.0 +2015,Table 1.4,BQ,11,unemployment_compensation,All,1.0,5000.0,False,False,False,176649000.0 +2015,Table 1.4,BP,11,unemployment_compensation,All,1.0,5000.0,True,False,False,88807.0 +2015,Table 1.4,G,11,employment_income,All,1.0,5000.0,False,False,False,26379758000.0 +2015,Table 1.4,F,11,employment_income,All,1.0,5000.0,True,False,False,7267723.0 +2015,Table 1.4,EE,12,alternative_minimum_tax,All,5000.0,10000.0,False,False,False,7028000.0 +2015,Table 1.4,ED,12,alternative_minimum_tax,All,5000.0,10000.0,True,False,False,1036.0 +2015,Table 1.4,U,12,business_net_profits,All,5000.0,10000.0,False,False,False,12895688000.0 +2015,Table 1.4,W,12,business_net_losses,All,5000.0,10000.0,False,False,False,1460706000.0 +2015,Table 1.4,T,12,business_net_profits,All,5000.0,10000.0,True,False,False,1847196.0 +2015,Table 1.4,V,12,business_net_losses,All,5000.0,10000.0,True,False,False,185654.0 +2015,Table 1.4,Y,12,capital_gains_distributions,All,5000.0,10000.0,False,False,False,224309000.0 +2015,Table 1.4,X,12,capital_gains_distributions,All,5000.0,10000.0,True,False,False,179305.0 +2015,Table 1.4,AA,12,capital_gains_gross,All,5000.0,10000.0,False,False,False,927640000.0 +2015,Table 1.4,AC,12,capital_gains_losses,All,5000.0,10000.0,False,False,False,664177000.0 +2015,Table 1.4,Z,12,capital_gains_gross,All,5000.0,10000.0,True,False,False,302754.0 +2015,Table 1.4,AB,12,capital_gains_losses,All,5000.0,10000.0,True,False,False,297621.0 +2015,Table 1.4,BI,12,estate_income,All,5000.0,10000.0,False,False,False,0.0 +2015,Table 1.4,BK,12,estate_losses,All,5000.0,10000.0,False,False,False,0.0 +2015,Table 1.4,BH,12,estate_income,All,5000.0,10000.0,True,False,False,0.0 +2015,Table 1.4,BJ,12,estate_losses,All,5000.0,10000.0,True,False,False,0.0 +2015,Table 1.4,K,12,exempt_interest,All,5000.0,10000.0,False,False,False,285516000.0 +2015,Table 1.4,J,12,exempt_interest,All,5000.0,10000.0,True,False,False,107702.0 +2015,Table 1.4,DX,12,count_of_exemptions,All,5000.0,10000.0,False,False,False,13087264.0 +2015,Table 1.4,AI,12,ira_distributions,All,5000.0,10000.0,False,False,False,2781145000.0 +2015,Table 1.4,AH,12,ira_distributions,All,5000.0,10000.0,True,False,False,590259.0 +2015,Table 1.4,M,12,ordinary_dividends,All,5000.0,10000.0,False,False,False,1434663000.0 +2015,Table 1.4,L,12,ordinary_dividends,All,5000.0,10000.0,True,False,False,857987.0 +2015,Table 1.4,BE,12,partnership_and_s_corp_income,All,5000.0,10000.0,False,False,False,720111000.0 +2015,Table 1.4,BG,12,partnership_and_s_corp_losses,All,5000.0,10000.0,False,False,False,533252000.0 +2015,Table 1.4,BD,12,partnership_and_s_corp_income,All,5000.0,10000.0,True,False,False,95076.0 +2015,Table 1.4,BF,12,partnership_and_s_corp_losses,All,5000.0,10000.0,True,False,False,51701.0 +2015,Table 1.4,AK,12,total_pension_income,All,5000.0,10000.0,False,False,False,10187637000.0 +2015,Table 1.4,AJ,12,total_pension_income,All,5000.0,10000.0,True,False,False,1184278.0 +2015,Table 1.4,AM,12,taxable_pension_income,All,5000.0,10000.0,False,False,False,6291022000.0 +2015,Table 1.4,AL,12,taxable_pension_income,All,5000.0,10000.0,True,False,False,1139203.0 +2015,Table 1.4,O,12,qualified_dividends,All,5000.0,10000.0,False,False,False,847872000.0 +2015,Table 1.4,N,12,qualified_dividends,All,5000.0,10000.0,True,False,False,792431.0 +2015,Table 1.4,BA,12,rent_and_royalty_net_income,All,5000.0,10000.0,False,False,False,960758000.0 +2015,Table 1.4,BC,12,rent_and_royalty_net_losses,All,5000.0,10000.0,False,False,False,653822000.0 +2015,Table 1.4,AZ,12,rent_and_royalty_net_income,All,5000.0,10000.0,True,False,False,225477.0 +2015,Table 1.4,BB,12,rent_and_royalty_net_losses,All,5000.0,10000.0,True,False,False,95906.0 +2015,Table 1.4,BU,12,taxable_social_security,All,5000.0,10000.0,False,False,False,191427000.0 +2015,Table 1.4,BT,12,taxable_social_security,All,5000.0,10000.0,True,False,False,39948.0 +2015,Table 1.4,BS,12,total_social_security,All,5000.0,10000.0,False,False,False,36055882000.0 +2015,Table 1.4,BR,12,total_social_security,All,5000.0,10000.0,True,False,False,2002601.0 +2015,Table 1.4,EI,12,income_tax_before_credits,All,5000.0,10000.0,False,False,False,412244000.0 +2015,Table 1.4,EH,12,income_tax_before_credits,All,5000.0,10000.0,True,False,False,2025070.0 +2015,Table 1.4,I,12,taxable_interest_income,All,5000.0,10000.0,False,False,False,666442000.0 +2015,Table 1.4,H,12,taxable_interest_income,All,5000.0,10000.0,True,False,False,1339223.0 +2015,Table 1.4,BQ,12,unemployment_compensation,All,5000.0,10000.0,False,False,False,758938000.0 +2015,Table 1.4,BP,12,unemployment_compensation,All,5000.0,10000.0,True,False,False,281347.0 +2015,Table 1.4,G,12,employment_income,All,5000.0,10000.0,False,False,False,65527117000.0 +2015,Table 1.4,F,12,employment_income,All,5000.0,10000.0,True,False,False,8804222.0 +2015,Table 1.4,EE,13,alternative_minimum_tax,All,10000.0,15000.0,False,False,False,372000.0 +2015,Table 1.4,ED,13,alternative_minimum_tax,All,10000.0,15000.0,True,False,False,1011.0 +2015,Table 1.4,U,13,business_net_profits,All,10000.0,15000.0,False,False,False,24401379000.0 +2015,Table 1.4,W,13,business_net_losses,All,10000.0,15000.0,False,False,False,2411493000.0 +2015,Table 1.4,T,13,business_net_profits,All,10000.0,15000.0,True,False,False,2430904.0 +2015,Table 1.4,V,13,business_net_losses,All,10000.0,15000.0,True,False,False,270797.0 +2015,Table 1.4,Y,13,capital_gains_distributions,All,10000.0,15000.0,False,False,False,234373000.0 +2015,Table 1.4,X,13,capital_gains_distributions,All,10000.0,15000.0,True,False,False,159924.0 +2015,Table 1.4,AA,13,capital_gains_gross,All,10000.0,15000.0,False,False,False,1230847000.0 +2015,Table 1.4,AC,13,capital_gains_losses,All,10000.0,15000.0,False,False,False,646526000.0 +2015,Table 1.4,Z,13,capital_gains_gross,All,10000.0,15000.0,True,False,False,290743.0 +2015,Table 1.4,AB,13,capital_gains_losses,All,10000.0,15000.0,True,False,False,288721.0 +2015,Table 1.4,BI,13,estate_income,All,10000.0,15000.0,False,False,False,190506000.0 +2015,Table 1.4,BK,13,estate_losses,All,10000.0,15000.0,False,False,False,14646000.0 +2015,Table 1.4,BH,13,estate_income,All,10000.0,15000.0,True,False,False,35192.0 +2015,Table 1.4,BJ,13,estate_losses,All,10000.0,15000.0,True,False,False,3116.0 +2015,Table 1.4,K,13,exempt_interest,All,10000.0,15000.0,False,False,False,438006000.0 +2015,Table 1.4,J,13,exempt_interest,All,10000.0,15000.0,True,False,False,124166.0 +2015,Table 1.4,DX,13,count_of_exemptions,All,10000.0,15000.0,False,False,False,19593638.0 +2015,Table 1.4,AI,13,ira_distributions,All,10000.0,15000.0,False,False,False,4470039000.0 +2015,Table 1.4,AH,13,ira_distributions,All,10000.0,15000.0,True,False,False,724858.0 +2015,Table 1.4,M,13,ordinary_dividends,All,10000.0,15000.0,False,False,False,1924846000.0 +2015,Table 1.4,L,13,ordinary_dividends,All,10000.0,15000.0,True,False,False,875080.0 +2015,Table 1.4,BE,13,partnership_and_s_corp_income,All,10000.0,15000.0,False,False,False,1058534000.0 +2015,Table 1.4,BG,13,partnership_and_s_corp_losses,All,10000.0,15000.0,False,False,False,688625000.0 +2015,Table 1.4,BD,13,partnership_and_s_corp_income,All,10000.0,15000.0,True,False,False,99991.0 +2015,Table 1.4,BF,13,partnership_and_s_corp_losses,All,10000.0,15000.0,True,False,False,65337.0 +2015,Table 1.4,AK,13,total_pension_income,All,10000.0,15000.0,False,False,False,20894458000.0 +2015,Table 1.4,AJ,13,total_pension_income,All,10000.0,15000.0,True,False,False,1774742.0 +2015,Table 1.4,AM,13,taxable_pension_income,All,10000.0,15000.0,False,False,False,15061276000.0 +2015,Table 1.4,AL,13,taxable_pension_income,All,10000.0,15000.0,True,False,False,1727011.0 +2015,Table 1.4,O,13,qualified_dividends,All,10000.0,15000.0,False,False,False,1236652000.0 +2015,Table 1.4,N,13,qualified_dividends,All,10000.0,15000.0,True,False,False,781678.0 +2015,Table 1.4,BA,13,rent_and_royalty_net_income,All,10000.0,15000.0,False,False,False,1443449000.0 +2015,Table 1.4,BC,13,rent_and_royalty_net_losses,All,10000.0,15000.0,False,False,False,1110992000.0 +2015,Table 1.4,AZ,13,rent_and_royalty_net_income,All,10000.0,15000.0,True,False,False,257700.0 +2015,Table 1.4,BB,13,rent_and_royalty_net_losses,All,10000.0,15000.0,True,False,False,123523.0 +2015,Table 1.4,BU,13,taxable_social_security,All,10000.0,15000.0,False,False,False,306013000.0 +2015,Table 1.4,BT,13,taxable_social_security,All,10000.0,15000.0,True,False,False,153032.0 +2015,Table 1.4,BS,13,total_social_security,All,10000.0,15000.0,False,False,False,43794038000.0 +2015,Table 1.4,BR,13,total_social_security,All,10000.0,15000.0,True,False,False,2349570.0 +2015,Table 1.4,EI,13,income_tax_before_credits,All,10000.0,15000.0,False,False,False,1802382000.0 +2015,Table 1.4,EH,13,income_tax_before_credits,All,10000.0,15000.0,True,False,False,6033815.0 +2015,Table 1.4,I,13,taxable_interest_income,All,10000.0,15000.0,False,False,False,1053897000.0 +2015,Table 1.4,H,13,taxable_interest_income,All,10000.0,15000.0,True,False,False,1583302.0 +2015,Table 1.4,BQ,13,unemployment_compensation,All,10000.0,15000.0,False,False,False,1685162000.0 +2015,Table 1.4,BP,13,unemployment_compensation,All,10000.0,15000.0,True,False,False,495187.0 +2015,Table 1.4,G,13,employment_income,All,10000.0,15000.0,False,False,False,108945675000.0 +2015,Table 1.4,F,13,employment_income,All,10000.0,15000.0,True,False,False,9192735.0 +2015,Table 1.4,EE,14,alternative_minimum_tax,All,15000.0,20000.0,False,False,False,1900000.0 +2015,Table 1.4,ED,14,alternative_minimum_tax,All,15000.0,20000.0,True,False,False,1037.0 +2015,Table 1.4,U,14,business_net_profits,All,15000.0,20000.0,False,False,False,18943319000.0 +2015,Table 1.4,W,14,business_net_losses,All,15000.0,20000.0,False,False,False,3467702000.0 +2015,Table 1.4,T,14,business_net_profits,All,15000.0,20000.0,True,False,False,1551550.0 +2015,Table 1.4,V,14,business_net_losses,All,15000.0,20000.0,True,False,False,344286.0 +2015,Table 1.4,Y,14,capital_gains_distributions,All,15000.0,20000.0,False,False,False,251117000.0 +2015,Table 1.4,X,14,capital_gains_distributions,All,15000.0,20000.0,True,False,False,169070.0 +2015,Table 1.4,AA,14,capital_gains_gross,All,15000.0,20000.0,False,False,False,1550202000.0 +2015,Table 1.4,AC,14,capital_gains_losses,All,15000.0,20000.0,False,False,False,513433000.0 +2015,Table 1.4,Z,14,capital_gains_gross,All,15000.0,20000.0,True,False,False,295391.0 +2015,Table 1.4,AB,14,capital_gains_losses,All,15000.0,20000.0,True,False,False,232409.0 +2015,Table 1.4,BI,14,estate_income,All,15000.0,20000.0,False,False,False,0.0 +2015,Table 1.4,BK,14,estate_losses,All,15000.0,20000.0,False,False,False,0.0 +2015,Table 1.4,BH,14,estate_income,All,15000.0,20000.0,True,False,False,0.0 +2015,Table 1.4,BJ,14,estate_losses,All,15000.0,20000.0,True,False,False,0.0 +2015,Table 1.4,K,14,exempt_interest,All,15000.0,20000.0,False,False,False,322515000.0 +2015,Table 1.4,J,14,exempt_interest,All,15000.0,20000.0,True,False,False,119598.0 +2015,Table 1.4,DX,14,count_of_exemptions,All,15000.0,20000.0,False,False,False,20051079.0 +2015,Table 1.4,AI,14,ira_distributions,All,15000.0,20000.0,False,False,False,4835309000.0 +2015,Table 1.4,AH,14,ira_distributions,All,15000.0,20000.0,True,False,False,666843.0 +2015,Table 1.4,M,14,ordinary_dividends,All,15000.0,20000.0,False,False,False,1911854000.0 +2015,Table 1.4,L,14,ordinary_dividends,All,15000.0,20000.0,True,False,False,878063.0 +2015,Table 1.4,BE,14,partnership_and_s_corp_income,All,15000.0,20000.0,False,False,False,1448351000.0 +2015,Table 1.4,BG,14,partnership_and_s_corp_losses,All,15000.0,20000.0,False,False,False,1035999000.0 +2015,Table 1.4,BD,14,partnership_and_s_corp_income,All,15000.0,20000.0,True,False,False,141254.0 +2015,Table 1.4,BF,14,partnership_and_s_corp_losses,All,15000.0,20000.0,True,False,False,69076.0 +2015,Table 1.4,AK,14,total_pension_income,All,15000.0,20000.0,False,False,False,25706689000.0 +2015,Table 1.4,AJ,14,total_pension_income,All,15000.0,20000.0,True,False,False,1678316.0 +2015,Table 1.4,AM,14,taxable_pension_income,All,15000.0,20000.0,False,False,False,18313815000.0 +2015,Table 1.4,AL,14,taxable_pension_income,All,15000.0,20000.0,True,False,False,1604960.0 +2015,Table 1.4,O,14,qualified_dividends,All,15000.0,20000.0,False,False,False,1223553000.0 +2015,Table 1.4,N,14,qualified_dividends,All,15000.0,20000.0,True,False,False,801164.0 +2015,Table 1.4,BA,14,rent_and_royalty_net_income,All,15000.0,20000.0,False,False,False,1530758000.0 +2015,Table 1.4,BC,14,rent_and_royalty_net_losses,All,15000.0,20000.0,False,False,False,991953000.0 +2015,Table 1.4,AZ,14,rent_and_royalty_net_income,All,15000.0,20000.0,True,False,False,256116.0 +2015,Table 1.4,BB,14,rent_and_royalty_net_losses,All,15000.0,20000.0,True,False,False,141801.0 +2015,Table 1.4,BU,14,taxable_social_security,All,15000.0,20000.0,False,False,False,976124000.0 +2015,Table 1.4,BT,14,taxable_social_security,All,15000.0,20000.0,True,False,False,862286.0 +2015,Table 1.4,BS,14,total_social_security,All,15000.0,20000.0,False,False,False,37323814000.0 +2015,Table 1.4,BR,14,total_social_security,All,15000.0,20000.0,True,False,False,1959197.0 +2015,Table 1.4,EI,14,income_tax_before_credits,All,15000.0,20000.0,False,False,False,4400309000.0 +2015,Table 1.4,EH,14,income_tax_before_credits,All,15000.0,20000.0,True,False,False,6874181.0 +2015,Table 1.4,I,14,taxable_interest_income,All,15000.0,20000.0,False,False,False,1041566000.0 +2015,Table 1.4,H,14,taxable_interest_income,All,15000.0,20000.0,True,False,False,1476103.0 +2015,Table 1.4,BQ,14,unemployment_compensation,All,15000.0,20000.0,False,False,False,2228391000.0 +2015,Table 1.4,BP,14,unemployment_compensation,All,15000.0,20000.0,True,False,False,584579.0 +2015,Table 1.4,G,14,employment_income,All,15000.0,20000.0,False,False,False,152713467000.0 +2015,Table 1.4,F,14,employment_income,All,15000.0,20000.0,True,False,False,9033568.0 +2015,Table 1.4,EE,15,alternative_minimum_tax,All,20000.0,25000.0,False,False,False,1816000.0 +2015,Table 1.4,ED,15,alternative_minimum_tax,All,20000.0,25000.0,True,False,False,2070.0 +2015,Table 1.4,U,15,business_net_profits,All,20000.0,25000.0,False,False,False,13222482000.0 +2015,Table 1.4,W,15,business_net_losses,All,20000.0,25000.0,False,False,False,3067186000.0 +2015,Table 1.4,T,15,business_net_profits,All,20000.0,25000.0,True,False,False,940440.0 +2015,Table 1.4,V,15,business_net_losses,All,20000.0,25000.0,True,False,False,351371.0 +2015,Table 1.4,Y,15,capital_gains_distributions,All,20000.0,25000.0,False,False,False,259026000.0 +2015,Table 1.4,X,15,capital_gains_distributions,All,20000.0,25000.0,True,False,False,147995.0 +2015,Table 1.4,AA,15,capital_gains_gross,All,20000.0,25000.0,False,False,False,1917490000.0 +2015,Table 1.4,AC,15,capital_gains_losses,All,20000.0,25000.0,False,False,False,493407000.0 +2015,Table 1.4,Z,15,capital_gains_gross,All,20000.0,25000.0,True,False,False,301961.0 +2015,Table 1.4,AB,15,capital_gains_losses,All,20000.0,25000.0,True,False,False,227031.0 +2015,Table 1.4,BI,15,estate_income,All,20000.0,25000.0,False,False,False,157934000.0 +2015,Table 1.4,BK,15,estate_losses,All,20000.0,25000.0,False,False,False,40026000.0 +2015,Table 1.4,BH,15,estate_income,All,20000.0,25000.0,True,False,False,17715.0 +2015,Table 1.4,BJ,15,estate_losses,All,20000.0,25000.0,True,False,False,1040.0 +2015,Table 1.4,K,15,exempt_interest,All,20000.0,25000.0,False,False,False,689080000.0 +2015,Table 1.4,J,15,exempt_interest,All,20000.0,25000.0,True,False,False,115165.0 +2015,Table 1.4,DX,15,count_of_exemptions,All,20000.0,25000.0,False,False,False,18120763.0 +2015,Table 1.4,AI,15,ira_distributions,All,20000.0,25000.0,False,False,False,5104234000.0 +2015,Table 1.4,AH,15,ira_distributions,All,20000.0,25000.0,True,False,False,636239.0 +2015,Table 1.4,M,15,ordinary_dividends,All,20000.0,25000.0,False,False,False,1967324000.0 +2015,Table 1.4,L,15,ordinary_dividends,All,20000.0,25000.0,True,False,False,810499.0 +2015,Table 1.4,BE,15,partnership_and_s_corp_income,All,20000.0,25000.0,False,False,False,1449194000.0 +2015,Table 1.4,BG,15,partnership_and_s_corp_losses,All,20000.0,25000.0,False,False,False,1111283000.0 +2015,Table 1.4,BD,15,partnership_and_s_corp_income,All,20000.0,25000.0,True,False,False,111274.0 +2015,Table 1.4,BF,15,partnership_and_s_corp_losses,All,20000.0,25000.0,True,False,False,68713.0 +2015,Table 1.4,AK,15,total_pension_income,All,20000.0,25000.0,False,False,False,24128687000.0 +2015,Table 1.4,AJ,15,total_pension_income,All,20000.0,25000.0,True,False,False,1502390.0 +2015,Table 1.4,AM,15,taxable_pension_income,All,20000.0,25000.0,False,False,False,18470507000.0 +2015,Table 1.4,AL,15,taxable_pension_income,All,20000.0,25000.0,True,False,False,1438998.0 +2015,Table 1.4,O,15,qualified_dividends,All,20000.0,25000.0,False,False,False,1326078000.0 +2015,Table 1.4,N,15,qualified_dividends,All,20000.0,25000.0,True,False,False,746510.0 +2015,Table 1.4,BA,15,rent_and_royalty_net_income,All,20000.0,25000.0,False,False,False,1594658000.0 +2015,Table 1.4,BC,15,rent_and_royalty_net_losses,All,20000.0,25000.0,False,False,False,1204536000.0 +2015,Table 1.4,AZ,15,rent_and_royalty_net_income,All,20000.0,25000.0,True,False,False,234703.0 +2015,Table 1.4,BB,15,rent_and_royalty_net_losses,All,20000.0,25000.0,True,False,False,148541.0 +2015,Table 1.4,BU,15,taxable_social_security,All,20000.0,25000.0,False,False,False,2722534000.0 +2015,Table 1.4,BT,15,taxable_social_security,All,20000.0,25000.0,True,False,False,1293573.0 +2015,Table 1.4,BS,15,total_social_security,All,20000.0,25000.0,False,False,False,32034479000.0 +2015,Table 1.4,BR,15,total_social_security,All,20000.0,25000.0,True,False,False,1581873.0 +2015,Table 1.4,EI,15,income_tax_before_credits,All,20000.0,25000.0,False,False,False,7889130000.0 +2015,Table 1.4,EH,15,income_tax_before_credits,All,20000.0,25000.0,True,False,False,7797618.0 +2015,Table 1.4,I,15,taxable_interest_income,All,20000.0,25000.0,False,False,False,1068287000.0 +2015,Table 1.4,H,15,taxable_interest_income,All,20000.0,25000.0,True,False,False,1371510.0 +2015,Table 1.4,BQ,15,unemployment_compensation,All,20000.0,25000.0,False,False,False,2221652000.0 +2015,Table 1.4,BP,15,unemployment_compensation,All,20000.0,25000.0,True,False,False,523513.0 +2015,Table 1.4,G,15,employment_income,All,20000.0,25000.0,False,False,False,182841964000.0 +2015,Table 1.4,F,15,employment_income,All,20000.0,25000.0,True,False,False,8423553.0 +2015,Table 1.4,EE,16,alternative_minimum_tax,All,25000.0,30000.0,False,False,False,11832000.0 +2015,Table 1.4,ED,16,alternative_minimum_tax,All,25000.0,30000.0,True,False,False,1614.0 +2015,Table 1.4,U,16,business_net_profits,All,25000.0,30000.0,False,False,False,11435760000.0 +2015,Table 1.4,W,16,business_net_losses,All,25000.0,30000.0,False,False,False,2973206000.0 +2015,Table 1.4,T,16,business_net_profits,All,25000.0,30000.0,True,False,False,746527.0 +2015,Table 1.4,V,16,business_net_losses,All,25000.0,30000.0,True,False,False,316757.0 +2015,Table 1.4,Y,16,capital_gains_distributions,All,25000.0,30000.0,False,False,False,245274000.0 +2015,Table 1.4,X,16,capital_gains_distributions,All,25000.0,30000.0,True,False,False,128487.0 +2015,Table 1.4,AA,16,capital_gains_gross,All,25000.0,30000.0,False,False,False,1686136000.0 +2015,Table 1.4,AC,16,capital_gains_losses,All,25000.0,30000.0,False,False,False,568206000.0 +2015,Table 1.4,Z,16,capital_gains_gross,All,25000.0,30000.0,True,False,False,269216.0 +2015,Table 1.4,AB,16,capital_gains_losses,All,25000.0,30000.0,True,False,False,256667.0 +2015,Table 1.4,BI,16,estate_income,All,25000.0,30000.0,False,False,False,70147000.0 +2015,Table 1.4,BK,16,estate_losses,All,25000.0,30000.0,False,False,False,852000.0 +2015,Table 1.4,BH,16,estate_income,All,25000.0,30000.0,True,False,False,10077.0 +2015,Table 1.4,BJ,16,estate_losses,All,25000.0,30000.0,True,False,False,8.0 +2015,Table 1.4,K,16,exempt_interest,All,25000.0,30000.0,False,False,False,720058000.0 +2015,Table 1.4,J,16,exempt_interest,All,25000.0,30000.0,True,False,False,122363.0 +2015,Table 1.4,DX,16,count_of_exemptions,All,25000.0,30000.0,False,False,False,16579665.0 +2015,Table 1.4,AI,16,ira_distributions,All,25000.0,30000.0,False,False,False,4905412000.0 +2015,Table 1.4,AH,16,ira_distributions,All,25000.0,30000.0,True,False,False,552767.0 +2015,Table 1.4,M,16,ordinary_dividends,All,25000.0,30000.0,False,False,False,2129499000.0 +2015,Table 1.4,L,16,ordinary_dividends,All,25000.0,30000.0,True,False,False,778412.0 +2015,Table 1.4,BE,16,partnership_and_s_corp_income,All,25000.0,30000.0,False,False,False,1835799000.0 +2015,Table 1.4,BG,16,partnership_and_s_corp_losses,All,25000.0,30000.0,False,False,False,844699000.0 +2015,Table 1.4,BD,16,partnership_and_s_corp_income,All,25000.0,30000.0,True,False,False,145162.0 +2015,Table 1.4,BF,16,partnership_and_s_corp_losses,All,25000.0,30000.0,True,False,False,60331.0 +2015,Table 1.4,AK,16,total_pension_income,All,25000.0,30000.0,False,False,False,24639911000.0 +2015,Table 1.4,AJ,16,total_pension_income,All,25000.0,30000.0,True,False,False,1392254.0 +2015,Table 1.4,AM,16,taxable_pension_income,All,25000.0,30000.0,False,False,False,18858034000.0 +2015,Table 1.4,AL,16,taxable_pension_income,All,25000.0,30000.0,True,False,False,1323185.0 +2015,Table 1.4,O,16,qualified_dividends,All,25000.0,30000.0,False,False,False,1265438000.0 +2015,Table 1.4,N,16,qualified_dividends,All,25000.0,30000.0,True,False,False,694987.0 +2015,Table 1.4,BA,16,rent_and_royalty_net_income,All,25000.0,30000.0,False,False,False,1604665000.0 +2015,Table 1.4,BC,16,rent_and_royalty_net_losses,All,25000.0,30000.0,False,False,False,1061144000.0 +2015,Table 1.4,AZ,16,rent_and_royalty_net_income,All,25000.0,30000.0,True,False,False,224961.0 +2015,Table 1.4,BB,16,rent_and_royalty_net_losses,All,25000.0,30000.0,True,False,False,152200.0 +2015,Table 1.4,BU,16,taxable_social_security,All,25000.0,30000.0,False,False,False,4409525000.0 +2015,Table 1.4,BT,16,taxable_social_security,All,25000.0,30000.0,True,False,False,1245729.0 +2015,Table 1.4,BS,16,total_social_security,All,25000.0,30000.0,False,False,False,27085903000.0 +2015,Table 1.4,BR,16,total_social_security,All,25000.0,30000.0,True,False,False,1319452.0 +2015,Table 1.4,EI,16,income_tax_before_credits,All,25000.0,30000.0,False,False,False,11452784000.0 +2015,Table 1.4,EH,16,income_tax_before_credits,All,25000.0,30000.0,True,False,False,7927284.0 +2015,Table 1.4,I,16,taxable_interest_income,All,25000.0,30000.0,False,False,False,1061273000.0 +2015,Table 1.4,H,16,taxable_interest_income,All,25000.0,30000.0,True,False,False,1380757.0 +2015,Table 1.4,BQ,16,unemployment_compensation,All,25000.0,30000.0,False,False,False,2065402000.0 +2015,Table 1.4,BP,16,unemployment_compensation,All,25000.0,30000.0,True,False,False,465381.0 +2015,Table 1.4,G,16,employment_income,All,25000.0,30000.0,False,False,False,200342638000.0 +2015,Table 1.4,F,16,employment_income,All,25000.0,30000.0,True,False,False,7585499.0 +2015,Table 1.4,EE,17,alternative_minimum_tax,All,30000.0,40000.0,False,False,False,9877000.0 +2015,Table 1.4,ED,17,alternative_minimum_tax,All,30000.0,40000.0,True,False,False,3577.0 +2015,Table 1.4,U,17,business_net_profits,All,30000.0,40000.0,False,False,False,21209538000.0 +2015,Table 1.4,W,17,business_net_losses,All,30000.0,40000.0,False,False,False,3929244000.0 +2015,Table 1.4,T,17,business_net_profits,All,30000.0,40000.0,True,False,False,1369005.0 +2015,Table 1.4,V,17,business_net_losses,All,30000.0,40000.0,True,False,False,532987.0 +2015,Table 1.4,Y,17,capital_gains_distributions,All,30000.0,40000.0,False,False,False,462119000.0 +2015,Table 1.4,X,17,capital_gains_distributions,All,30000.0,40000.0,True,False,False,287469.0 +2015,Table 1.4,AA,17,capital_gains_gross,All,30000.0,40000.0,False,False,False,3565980000.0 +2015,Table 1.4,AC,17,capital_gains_losses,All,30000.0,40000.0,False,False,False,941534000.0 +2015,Table 1.4,Z,17,capital_gains_gross,All,30000.0,40000.0,True,False,False,564977.0 +2015,Table 1.4,AB,17,capital_gains_losses,All,30000.0,40000.0,True,False,False,456707.0 +2015,Table 1.4,BI,17,estate_income,All,30000.0,40000.0,False,False,False,212077000.0 +2015,Table 1.4,BK,17,estate_losses,All,30000.0,40000.0,False,False,False,2635000.0 +2015,Table 1.4,BH,17,estate_income,All,30000.0,40000.0,True,False,False,23005.0 +2015,Table 1.4,BJ,17,estate_losses,All,30000.0,40000.0,True,False,False,1218.0 +2015,Table 1.4,K,17,exempt_interest,All,30000.0,40000.0,False,False,False,1483145000.0 +2015,Table 1.4,J,17,exempt_interest,All,30000.0,40000.0,True,False,False,261909.0 +2015,Table 1.4,DX,17,count_of_exemptions,All,30000.0,40000.0,False,False,False,28873650.0 +2015,Table 1.4,AI,17,ira_distributions,All,30000.0,40000.0,False,False,False,10670749000.0 +2015,Table 1.4,AH,17,ira_distributions,All,30000.0,40000.0,True,False,False,1078333.0 +2015,Table 1.4,M,17,ordinary_dividends,All,30000.0,40000.0,False,False,False,4356423000.0 +2015,Table 1.4,L,17,ordinary_dividends,All,30000.0,40000.0,True,False,False,1576139.0 +2015,Table 1.4,BE,17,partnership_and_s_corp_income,All,30000.0,40000.0,False,False,False,4021340000.0 +2015,Table 1.4,BG,17,partnership_and_s_corp_losses,All,30000.0,40000.0,False,False,False,1696781000.0 +2015,Table 1.4,BD,17,partnership_and_s_corp_income,All,30000.0,40000.0,True,False,False,252120.0 +2015,Table 1.4,BF,17,partnership_and_s_corp_losses,All,30000.0,40000.0,True,False,False,132665.0 +2015,Table 1.4,AK,17,total_pension_income,All,30000.0,40000.0,False,False,False,56413216000.0 +2015,Table 1.4,AJ,17,total_pension_income,All,30000.0,40000.0,True,False,False,2593950.0 +2015,Table 1.4,AM,17,taxable_pension_income,All,30000.0,40000.0,False,False,False,40025378000.0 +2015,Table 1.4,AL,17,taxable_pension_income,All,30000.0,40000.0,True,False,False,2453670.0 +2015,Table 1.4,O,17,qualified_dividends,All,30000.0,40000.0,False,False,False,3001477000.0 +2015,Table 1.4,N,17,qualified_dividends,All,30000.0,40000.0,True,False,False,1440362.0 +2015,Table 1.4,BA,17,rent_and_royalty_net_income,All,30000.0,40000.0,False,False,False,2691722000.0 +2015,Table 1.4,BC,17,rent_and_royalty_net_losses,All,30000.0,40000.0,False,False,False,2737329000.0 +2015,Table 1.4,AZ,17,rent_and_royalty_net_income,All,30000.0,40000.0,True,False,False,360815.0 +2015,Table 1.4,BB,17,rent_and_royalty_net_losses,All,30000.0,40000.0,True,False,False,320136.0 +2015,Table 1.4,BU,17,taxable_social_security,All,30000.0,40000.0,False,False,False,13187212000.0 +2015,Table 1.4,BT,17,taxable_social_security,All,30000.0,40000.0,True,False,False,2188504.0 +2015,Table 1.4,BS,17,total_social_security,All,30000.0,40000.0,False,False,False,45862459000.0 +2015,Table 1.4,BR,17,total_social_security,All,30000.0,40000.0,True,False,False,2190498.0 +2015,Table 1.4,EI,17,income_tax_before_credits,All,30000.0,40000.0,False,False,False,31571224000.0 +2015,Table 1.4,EH,17,income_tax_before_credits,All,30000.0,40000.0,True,False,False,14274348.0 +2015,Table 1.4,I,17,taxable_interest_income,All,30000.0,40000.0,False,False,False,2080661000.0 +2015,Table 1.4,H,17,taxable_interest_income,All,30000.0,40000.0,True,False,False,2779716.0 +2015,Table 1.4,BQ,17,unemployment_compensation,All,30000.0,40000.0,False,False,False,3372825000.0 +2015,Table 1.4,BP,17,unemployment_compensation,All,30000.0,40000.0,True,False,False,766880.0 +2015,Table 1.4,G,17,employment_income,All,30000.0,40000.0,False,False,False,428313928000.0 +2015,Table 1.4,F,17,employment_income,All,30000.0,40000.0,True,False,False,12978605.0 +2015,Table 1.4,EE,18,alternative_minimum_tax,All,40000.0,50000.0,False,False,False,10880000.0 +2015,Table 1.4,ED,18,alternative_minimum_tax,All,40000.0,50000.0,True,False,False,2279.0 +2015,Table 1.4,U,18,business_net_profits,All,40000.0,50000.0,False,False,False,16756939000.0 +2015,Table 1.4,W,18,business_net_losses,All,40000.0,50000.0,False,False,False,3386681000.0 +2015,Table 1.4,T,18,business_net_profits,All,40000.0,50000.0,True,False,False,1028493.0 +2015,Table 1.4,V,18,business_net_losses,All,40000.0,50000.0,True,False,False,469339.0 +2015,Table 1.4,Y,18,capital_gains_distributions,All,40000.0,50000.0,False,False,False,479156000.0 +2015,Table 1.4,X,18,capital_gains_distributions,All,40000.0,50000.0,True,False,False,274422.0 +2015,Table 1.4,AA,18,capital_gains_gross,All,40000.0,50000.0,False,False,False,4180676000.0 +2015,Table 1.4,AC,18,capital_gains_losses,All,40000.0,50000.0,False,False,False,837906000.0 +2015,Table 1.4,Z,18,capital_gains_gross,All,40000.0,50000.0,True,False,False,583462.0 +2015,Table 1.4,AB,18,capital_gains_losses,All,40000.0,50000.0,True,False,False,383768.0 +2015,Table 1.4,BI,18,estate_income,All,40000.0,50000.0,False,False,False,323856000.0 +2015,Table 1.4,BK,18,estate_losses,All,40000.0,50000.0,False,False,False,4481000.0 +2015,Table 1.4,BH,18,estate_income,All,40000.0,50000.0,True,False,False,23142.0 +2015,Table 1.4,BJ,18,estate_losses,All,40000.0,50000.0,True,False,False,1428.0 +2015,Table 1.4,K,18,exempt_interest,All,40000.0,50000.0,False,False,False,1177454000.0 +2015,Table 1.4,J,18,exempt_interest,All,40000.0,50000.0,True,False,False,239360.0 +2015,Table 1.4,DX,18,count_of_exemptions,All,40000.0,50000.0,False,False,False,22819923.0 +2015,Table 1.4,AI,18,ira_distributions,All,40000.0,50000.0,False,False,False,10855178000.0 +2015,Table 1.4,AH,18,ira_distributions,All,40000.0,50000.0,True,False,False,991898.0 +2015,Table 1.4,M,18,ordinary_dividends,All,40000.0,50000.0,False,False,False,4083422000.0 +2015,Table 1.4,L,18,ordinary_dividends,All,40000.0,50000.0,True,False,False,1514544.0 +2015,Table 1.4,BE,18,partnership_and_s_corp_income,All,40000.0,50000.0,False,False,False,4772241000.0 +2015,Table 1.4,BG,18,partnership_and_s_corp_losses,All,40000.0,50000.0,False,False,False,1518190000.0 +2015,Table 1.4,BD,18,partnership_and_s_corp_income,All,40000.0,50000.0,True,False,False,259365.0 +2015,Table 1.4,BF,18,partnership_and_s_corp_losses,All,40000.0,50000.0,True,False,False,118326.0 +2015,Table 1.4,AK,18,total_pension_income,All,40000.0,50000.0,False,False,False,57820520000.0 +2015,Table 1.4,AJ,18,total_pension_income,All,40000.0,50000.0,True,False,False,2352393.0 +2015,Table 1.4,AM,18,taxable_pension_income,All,40000.0,50000.0,False,False,False,42423815000.0 +2015,Table 1.4,AL,18,taxable_pension_income,All,40000.0,50000.0,True,False,False,2197229.0 +2015,Table 1.4,O,18,qualified_dividends,All,40000.0,50000.0,False,False,False,2826332000.0 +2015,Table 1.4,N,18,qualified_dividends,All,40000.0,50000.0,True,False,False,1389336.0 +2015,Table 1.4,BA,18,rent_and_royalty_net_income,All,40000.0,50000.0,False,False,False,3049824000.0 +2015,Table 1.4,BC,18,rent_and_royalty_net_losses,All,40000.0,50000.0,False,False,False,2384944000.0 +2015,Table 1.4,AZ,18,rent_and_royalty_net_income,All,40000.0,50000.0,True,False,False,389458.0 +2015,Table 1.4,BB,18,rent_and_royalty_net_losses,All,40000.0,50000.0,True,False,False,311887.0 +2015,Table 1.4,BU,18,taxable_social_security,All,40000.0,50000.0,False,False,False,18003861000.0 +2015,Table 1.4,BT,18,taxable_social_security,All,40000.0,50000.0,True,False,False,1846896.0 +2015,Table 1.4,BS,18,total_social_security,All,40000.0,50000.0,False,False,False,37692182000.0 +2015,Table 1.4,BR,18,total_social_security,All,40000.0,50000.0,True,False,False,1848962.0 +2015,Table 1.4,EI,18,income_tax_before_credits,All,40000.0,50000.0,False,False,False,38429463000.0 +2015,Table 1.4,EH,18,income_tax_before_credits,All,40000.0,50000.0,True,False,False,11449438.0 +2015,Table 1.4,I,18,taxable_interest_income,All,40000.0,50000.0,False,False,False,1991377000.0 +2015,Table 1.4,H,18,taxable_interest_income,All,40000.0,50000.0,True,False,False,2748982.0 +2015,Table 1.4,BQ,18,unemployment_compensation,All,40000.0,50000.0,False,False,False,2512534000.0 +2015,Table 1.4,BP,18,unemployment_compensation,All,40000.0,50000.0,True,False,False,543079.0 +2015,Table 1.4,G,18,employment_income,All,40000.0,50000.0,False,False,False,424369612000.0 +2015,Table 1.4,F,18,employment_income,All,40000.0,50000.0,True,False,False,10142723.0 +2015,Table 1.4,EE,19,alternative_minimum_tax,All,50000.0,75000.0,False,False,False,51299000.0 +2015,Table 1.4,ED,19,alternative_minimum_tax,All,50000.0,75000.0,True,False,False,33879.0 +2015,Table 1.4,U,19,business_net_profits,All,50000.0,75000.0,False,False,False,34762519000.0 +2015,Table 1.4,W,19,business_net_losses,All,50000.0,75000.0,False,False,False,5767819000.0 +2015,Table 1.4,T,19,business_net_profits,All,50000.0,75000.0,True,False,False,2076929.0 +2015,Table 1.4,V,19,business_net_losses,All,50000.0,75000.0,True,False,False,833699.0 +2015,Table 1.4,Y,19,capital_gains_distributions,All,50000.0,75000.0,False,False,False,1542572000.0 +2015,Table 1.4,X,19,capital_gains_distributions,All,50000.0,75000.0,True,False,False,662186.0 +2015,Table 1.4,AA,19,capital_gains_gross,All,50000.0,75000.0,False,False,False,12531337000.0 +2015,Table 1.4,AC,19,capital_gains_losses,All,50000.0,75000.0,False,False,False,2371829000.0 +2015,Table 1.4,Z,19,capital_gains_gross,All,50000.0,75000.0,True,False,False,1499292.0 +2015,Table 1.4,AB,19,capital_gains_losses,All,50000.0,75000.0,True,False,False,1058241.0 +2015,Table 1.4,BI,19,estate_income,All,50000.0,75000.0,False,False,False,1005042000.0 +2015,Table 1.4,BK,19,estate_losses,All,50000.0,75000.0,False,False,False,42194000.0 +2015,Table 1.4,BH,19,estate_income,All,50000.0,75000.0,True,False,False,83233.0 +2015,Table 1.4,BJ,19,estate_losses,All,50000.0,75000.0,True,False,False,3066.0 +2015,Table 1.4,K,19,exempt_interest,All,50000.0,75000.0,False,False,False,3326378000.0 +2015,Table 1.4,J,19,exempt_interest,All,50000.0,75000.0,True,False,False,704167.0 +2015,Table 1.4,DX,19,count_of_exemptions,All,50000.0,75000.0,False,False,False,42326102.0 +2015,Table 1.4,AI,19,ira_distributions,All,50000.0,75000.0,False,False,False,32261073000.0 +2015,Table 1.4,AH,19,ira_distributions,All,50000.0,75000.0,True,False,False,2370301.0 +2015,Table 1.4,M,19,ordinary_dividends,All,50000.0,75000.0,False,False,False,13570392000.0 +2015,Table 1.4,L,19,ordinary_dividends,All,50000.0,75000.0,True,False,False,3896386.0 +2015,Table 1.4,BE,19,partnership_and_s_corp_income,All,50000.0,75000.0,False,False,False,14201601000.0 +2015,Table 1.4,BG,19,partnership_and_s_corp_losses,All,50000.0,75000.0,False,False,False,3826000000.0 +2015,Table 1.4,BD,19,partnership_and_s_corp_income,All,50000.0,75000.0,True,False,False,625054.0 +2015,Table 1.4,BF,19,partnership_and_s_corp_losses,All,50000.0,75000.0,True,False,False,317031.0 +2015,Table 1.4,AK,19,total_pension_income,All,50000.0,75000.0,False,False,False,160899524000.0 +2015,Table 1.4,AJ,19,total_pension_income,All,50000.0,75000.0,True,False,False,5145456.0 +2015,Table 1.4,AM,19,taxable_pension_income,All,50000.0,75000.0,False,False,False,114723085000.0 +2015,Table 1.4,AL,19,taxable_pension_income,All,50000.0,75000.0,True,False,False,4794838.0 +2015,Table 1.4,O,19,qualified_dividends,All,50000.0,75000.0,False,False,False,9668810000.0 +2015,Table 1.4,N,19,qualified_dividends,All,50000.0,75000.0,True,False,False,3586978.0 +2015,Table 1.4,BA,19,rent_and_royalty_net_income,All,50000.0,75000.0,False,False,False,7756628000.0 +2015,Table 1.4,BC,19,rent_and_royalty_net_losses,All,50000.0,75000.0,False,False,False,6069198000.0 +2015,Table 1.4,AZ,19,rent_and_royalty_net_income,All,50000.0,75000.0,True,False,False,927723.0 +2015,Table 1.4,BB,19,rent_and_royalty_net_losses,All,50000.0,75000.0,True,False,False,768581.0 +2015,Table 1.4,BU,19,taxable_social_security,All,50000.0,75000.0,False,False,False,61729360000.0 +2015,Table 1.4,BT,19,taxable_social_security,All,50000.0,75000.0,True,False,False,4138890.0 +2015,Table 1.4,BS,19,total_social_security,All,50000.0,75000.0,False,False,False,86766286000.0 +2015,Table 1.4,BR,19,total_social_security,All,50000.0,75000.0,True,False,False,4139897.0 +2015,Table 1.4,EI,19,income_tax_before_credits,All,50000.0,75000.0,False,False,False,112834149000.0 +2015,Table 1.4,EH,19,income_tax_before_credits,All,50000.0,75000.0,True,False,False,19806008.0 +2015,Table 1.4,I,19,taxable_interest_income,All,50000.0,75000.0,False,False,False,5759010000.0 +2015,Table 1.4,H,19,taxable_interest_income,All,50000.0,75000.0,True,False,False,6568582.0 +2015,Table 1.4,BQ,19,unemployment_compensation,All,50000.0,75000.0,False,False,False,4591758000.0 +2015,Table 1.4,BP,19,unemployment_compensation,All,50000.0,75000.0,True,False,False,963756.0 +2015,Table 1.4,G,19,employment_income,All,50000.0,75000.0,False,False,False,952347137000.0 +2015,Table 1.4,F,19,employment_income,All,50000.0,75000.0,True,False,False,17158839.0 +2015,Table 1.4,EE,20,alternative_minimum_tax,All,75000.0,100000.0,False,False,False,115377000.0 +2015,Table 1.4,ED,20,alternative_minimum_tax,All,75000.0,100000.0,True,False,False,83418.0 +2015,Table 1.4,U,20,business_net_profits,All,75000.0,100000.0,False,False,False,30010398000.0 +2015,Table 1.4,W,20,business_net_losses,All,75000.0,100000.0,False,False,False,4253862000.0 +2015,Table 1.4,T,20,business_net_profits,All,75000.0,100000.0,True,False,False,1521248.0 +2015,Table 1.4,V,20,business_net_losses,All,75000.0,100000.0,True,False,False,626398.0 +2015,Table 1.4,Y,20,capital_gains_distributions,All,75000.0,100000.0,False,False,False,1370439000.0 +2015,Table 1.4,X,20,capital_gains_distributions,All,75000.0,100000.0,True,False,False,564896.0 +2015,Table 1.4,AA,20,capital_gains_gross,All,75000.0,100000.0,False,False,False,15108775000.0 +2015,Table 1.4,AC,20,capital_gains_losses,All,75000.0,100000.0,False,False,False,2047954000.0 +2015,Table 1.4,Z,20,capital_gains_gross,All,75000.0,100000.0,True,False,False,1417852.0 +2015,Table 1.4,AB,20,capital_gains_losses,All,75000.0,100000.0,True,False,False,933896.0 +2015,Table 1.4,BI,20,estate_income,All,75000.0,100000.0,False,False,False,1208291000.0 +2015,Table 1.4,BK,20,estate_losses,All,75000.0,100000.0,False,False,False,110657000.0 +2015,Table 1.4,BH,20,estate_income,All,75000.0,100000.0,True,False,False,82692.0 +2015,Table 1.4,BJ,20,estate_losses,All,75000.0,100000.0,True,False,False,5895.0 +2015,Table 1.4,K,20,exempt_interest,All,75000.0,100000.0,False,False,False,3510870000.0 +2015,Table 1.4,J,20,exempt_interest,All,75000.0,100000.0,True,False,False,668070.0 +2015,Table 1.4,DX,20,count_of_exemptions,All,75000.0,100000.0,False,False,False,30669581.0 +2015,Table 1.4,AI,20,ira_distributions,All,75000.0,100000.0,False,False,False,36089085000.0 +2015,Table 1.4,AH,20,ira_distributions,All,75000.0,100000.0,True,False,False,1933400.0 +2015,Table 1.4,M,20,ordinary_dividends,All,75000.0,100000.0,False,False,False,13679218000.0 +2015,Table 1.4,L,20,ordinary_dividends,All,75000.0,100000.0,True,False,False,3468135.0 +2015,Table 1.4,BE,20,partnership_and_s_corp_income,All,75000.0,100000.0,False,False,False,16254478000.0 +2015,Table 1.4,BG,20,partnership_and_s_corp_losses,All,75000.0,100000.0,False,False,False,3003805000.0 +2015,Table 1.4,BD,20,partnership_and_s_corp_income,All,75000.0,100000.0,True,False,False,620308.0 +2015,Table 1.4,BF,20,partnership_and_s_corp_losses,All,75000.0,100000.0,True,False,False,276952.0 +2015,Table 1.4,AK,20,total_pension_income,All,75000.0,100000.0,False,False,False,163857153000.0 +2015,Table 1.4,AJ,20,total_pension_income,All,75000.0,100000.0,True,False,False,3958703.0 +2015,Table 1.4,AM,20,taxable_pension_income,All,75000.0,100000.0,False,False,False,109640293000.0 +2015,Table 1.4,AL,20,taxable_pension_income,All,75000.0,100000.0,True,False,False,3613164.0 +2015,Table 1.4,O,20,qualified_dividends,All,75000.0,100000.0,False,False,False,9950326000.0 +2015,Table 1.4,N,20,qualified_dividends,All,75000.0,100000.0,True,False,False,3253110.0 +2015,Table 1.4,BA,20,rent_and_royalty_net_income,All,75000.0,100000.0,False,False,False,7990607000.0 +2015,Table 1.4,BC,20,rent_and_royalty_net_losses,All,75000.0,100000.0,False,False,False,5876752000.0 +2015,Table 1.4,AZ,20,rent_and_royalty_net_income,All,75000.0,100000.0,True,False,False,801435.0 +2015,Table 1.4,BB,20,rent_and_royalty_net_losses,All,75000.0,100000.0,True,False,False,738546.0 +2015,Table 1.4,BU,20,taxable_social_security,All,75000.0,100000.0,False,False,False,57871398000.0 +2015,Table 1.4,BT,20,taxable_social_security,All,75000.0,100000.0,True,False,False,2935392.0 +2015,Table 1.4,BS,20,total_social_security,All,75000.0,100000.0,False,False,False,69506791000.0 +2015,Table 1.4,BR,20,total_social_security,All,75000.0,100000.0,True,False,False,2935395.0 +2015,Table 1.4,EI,20,income_tax_before_credits,All,75000.0,100000.0,False,False,False,116165597000.0 +2015,Table 1.4,EH,20,income_tax_before_credits,All,75000.0,100000.0,True,False,False,12736353.0 +2015,Table 1.4,I,20,taxable_interest_income,All,75000.0,100000.0,False,False,False,5351418000.0 +2015,Table 1.4,H,20,taxable_interest_income,All,75000.0,100000.0,True,False,False,5553172.0 +2015,Table 1.4,BQ,20,unemployment_compensation,All,75000.0,100000.0,False,False,False,2965498000.0 +2015,Table 1.4,BP,20,unemployment_compensation,All,75000.0,100000.0,True,False,False,602671.0 +2015,Table 1.4,G,20,employment_income,All,75000.0,100000.0,False,False,False,835434509000.0 +2015,Table 1.4,F,20,employment_income,All,75000.0,100000.0,True,False,False,11083392.0 +2015,Table 1.4,EE,21,alternative_minimum_tax,All,100000.0,200000.0,False,False,False,1490373000.0 +2015,Table 1.4,ED,21,alternative_minimum_tax,All,100000.0,200000.0,True,False,False,617682.0 +2015,Table 1.4,U,21,business_net_profits,All,100000.0,200000.0,False,False,False,75753230000.0 +2015,Table 1.4,W,21,business_net_losses,All,100000.0,200000.0,False,False,False,7646665000.0 +2015,Table 1.4,T,21,business_net_profits,All,100000.0,200000.0,True,False,False,2546650.0 +2015,Table 1.4,V,21,business_net_losses,All,100000.0,200000.0,True,False,False,1047891.0 +2015,Table 1.4,Y,21,capital_gains_distributions,All,100000.0,200000.0,False,False,False,3639073000.0 +2015,Table 1.4,X,21,capital_gains_distributions,All,100000.0,200000.0,True,False,False,1078572.0 +2015,Table 1.4,AA,21,capital_gains_gross,All,100000.0,200000.0,False,False,False,55975478000.0 +2015,Table 1.4,AC,21,capital_gains_losses,All,100000.0,200000.0,False,False,False,4308359000.0 +2015,Table 1.4,Z,21,capital_gains_gross,All,100000.0,200000.0,True,False,False,3160989.0 +2015,Table 1.4,AB,21,capital_gains_losses,All,100000.0,200000.0,True,False,False,1959116.0 +2015,Table 1.4,BI,21,estate_income,All,100000.0,200000.0,False,False,False,3738120000.0 +2015,Table 1.4,BK,21,estate_losses,All,100000.0,200000.0,False,False,False,85897000.0 +2015,Table 1.4,BH,21,estate_income,All,100000.0,200000.0,True,False,False,167481.0 +2015,Table 1.4,BJ,21,estate_losses,All,100000.0,200000.0,True,False,False,15632.0 +2015,Table 1.4,K,21,exempt_interest,All,100000.0,200000.0,False,False,False,11019779000.0 +2015,Table 1.4,J,21,exempt_interest,All,100000.0,200000.0,True,False,False,1581470.0 +2015,Table 1.4,DX,21,count_of_exemptions,All,100000.0,200000.0,False,False,False,49572105.0 +2015,Table 1.4,AI,21,ira_distributions,All,100000.0,200000.0,False,False,False,79751792000.0 +2015,Table 1.4,AH,21,ira_distributions,All,100000.0,200000.0,True,False,False,2997506.0 +2015,Table 1.4,M,21,ordinary_dividends,All,100000.0,200000.0,False,False,False,43684842000.0 +2015,Table 1.4,L,21,ordinary_dividends,All,100000.0,200000.0,True,False,False,7062743.0 +2015,Table 1.4,BE,21,partnership_and_s_corp_income,All,100000.0,200000.0,False,False,False,67887613000.0 +2015,Table 1.4,BG,21,partnership_and_s_corp_losses,All,100000.0,200000.0,False,False,False,8663474000.0 +2015,Table 1.4,BD,21,partnership_and_s_corp_income,All,100000.0,200000.0,True,False,False,1614680.0 +2015,Table 1.4,BF,21,partnership_and_s_corp_losses,All,100000.0,200000.0,True,False,False,655397.0 +2015,Table 1.4,AK,21,total_pension_income,All,100000.0,200000.0,False,False,False,378312328000.0 +2015,Table 1.4,AJ,21,total_pension_income,All,100000.0,200000.0,True,False,False,6106990.0 +2015,Table 1.4,AM,21,taxable_pension_income,All,100000.0,200000.0,False,False,False,216352535000.0 +2015,Table 1.4,AL,21,taxable_pension_income,All,100000.0,200000.0,True,False,False,5391242.0 +2015,Table 1.4,O,21,qualified_dividends,All,100000.0,200000.0,False,False,False,33501662000.0 +2015,Table 1.4,N,21,qualified_dividends,All,100000.0,200000.0,True,False,False,6651049.0 +2015,Table 1.4,BA,21,rent_and_royalty_net_income,All,100000.0,200000.0,False,False,False,22286270000.0 +2015,Table 1.4,BC,21,rent_and_royalty_net_losses,All,100000.0,200000.0,False,False,False,8530522000.0 +2015,Table 1.4,AZ,21,rent_and_royalty_net_income,All,100000.0,200000.0,True,False,False,1666542.0 +2015,Table 1.4,BB,21,rent_and_royalty_net_losses,All,100000.0,200000.0,True,False,False,1051247.0 +2015,Table 1.4,BU,21,taxable_social_security,All,100000.0,200000.0,False,False,False,86214692000.0 +2015,Table 1.4,BT,21,taxable_social_security,All,100000.0,200000.0,True,False,False,3751578.0 +2015,Table 1.4,BS,21,total_social_security,All,100000.0,200000.0,False,False,False,101513861000.0 +2015,Table 1.4,BR,21,total_social_security,All,100000.0,200000.0,True,False,False,3751605.0 +2015,Table 1.4,EI,21,income_tax_before_credits,All,100000.0,200000.0,False,False,False,330069452000.0 +2015,Table 1.4,EH,21,income_tax_before_credits,All,100000.0,200000.0,True,False,False,18483267.0 +2015,Table 1.4,I,21,taxable_interest_income,All,100000.0,200000.0,False,False,False,13932224000.0 +2015,Table 1.4,H,21,taxable_interest_income,All,100000.0,200000.0,True,False,False,10353254.0 +2015,Table 1.4,BQ,21,unemployment_compensation,All,100000.0,200000.0,False,False,False,3794597000.0 +2015,Table 1.4,BP,21,unemployment_compensation,All,100000.0,200000.0,True,False,False,739643.0 +2015,Table 1.4,G,21,employment_income,All,100000.0,200000.0,False,False,False,1876094165000.0 +2015,Table 1.4,F,21,employment_income,All,100000.0,200000.0,True,False,False,16409095.0 +2015,Table 1.4,EE,22,alternative_minimum_tax,All,200000.0,500000.0,False,False,False,16510191000.0 +2015,Table 1.4,ED,22,alternative_minimum_tax,All,200000.0,500000.0,True,False,False,3220348.0 +2015,Table 1.4,U,22,business_net_profits,All,200000.0,500000.0,False,False,False,70271445000.0 +2015,Table 1.4,W,22,business_net_losses,All,200000.0,500000.0,False,False,False,3726278000.0 +2015,Table 1.4,T,22,business_net_profits,All,200000.0,500000.0,True,False,False,960730.0 +2015,Table 1.4,V,22,business_net_losses,All,200000.0,500000.0,True,False,False,312389.0 +2015,Table 1.4,Y,22,capital_gains_distributions,All,200000.0,500000.0,False,False,False,1989633000.0 +2015,Table 1.4,X,22,capital_gains_distributions,All,200000.0,500000.0,True,False,False,369651.0 +2015,Table 1.4,AA,22,capital_gains_gross,All,200000.0,500000.0,False,False,False,84003935000.0 +2015,Table 1.4,AC,22,capital_gains_losses,All,200000.0,500000.0,False,False,False,2548526000.0 +2015,Table 1.4,Z,22,capital_gains_gross,All,200000.0,500000.0,True,False,False,1841053.0 +2015,Table 1.4,AB,22,capital_gains_losses,All,200000.0,500000.0,True,False,False,1070458.0 +2015,Table 1.4,BI,22,estate_income,All,200000.0,500000.0,False,False,False,5145144000.0 +2015,Table 1.4,BK,22,estate_losses,All,200000.0,500000.0,False,False,False,269765000.0 +2015,Table 1.4,BH,22,estate_income,All,200000.0,500000.0,True,False,False,98024.0 +2015,Table 1.4,BJ,22,estate_losses,All,200000.0,500000.0,True,False,False,9856.0 +2015,Table 1.4,K,22,exempt_interest,All,200000.0,500000.0,False,False,False,12958810000.0 +2015,Table 1.4,J,22,exempt_interest,All,200000.0,500000.0,True,False,False,1030721.0 +2015,Table 1.4,DX,22,count_of_exemptions,All,200000.0,500000.0,False,False,False,15480744.0 +2015,Table 1.4,AI,22,ira_distributions,All,200000.0,500000.0,False,False,False,44053588000.0 +2015,Table 1.4,AH,22,ira_distributions,All,200000.0,500000.0,True,False,False,938904.0 +2015,Table 1.4,M,22,ordinary_dividends,All,200000.0,500000.0,False,False,False,45283033000.0 +2015,Table 1.4,L,22,ordinary_dividends,All,200000.0,500000.0,True,False,False,3391442.0 +2015,Table 1.4,BE,22,partnership_and_s_corp_income,All,200000.0,500000.0,False,False,False,142299712000.0 +2015,Table 1.4,BG,22,partnership_and_s_corp_losses,All,200000.0,500000.0,False,False,False,10221016000.0 +2015,Table 1.4,BD,22,partnership_and_s_corp_income,All,200000.0,500000.0,True,False,False,1259135.0 +2015,Table 1.4,BF,22,partnership_and_s_corp_losses,All,200000.0,500000.0,True,False,False,361082.0 +2015,Table 1.4,AK,22,total_pension_income,All,200000.0,500000.0,False,False,False,176275803000.0 +2015,Table 1.4,AJ,22,total_pension_income,All,200000.0,500000.0,True,False,False,1658908.0 +2015,Table 1.4,AM,22,taxable_pension_income,All,200000.0,500000.0,False,False,False,71287369000.0 +2015,Table 1.4,AL,22,taxable_pension_income,All,200000.0,500000.0,True,False,False,1320681.0 +2015,Table 1.4,O,22,qualified_dividends,All,200000.0,500000.0,False,False,False,36267006000.0 +2015,Table 1.4,N,22,qualified_dividends,All,200000.0,500000.0,True,False,False,3272768.0 +2015,Table 1.4,BA,22,rent_and_royalty_net_income,All,200000.0,500000.0,False,False,False,20783283000.0 +2015,Table 1.4,BC,22,rent_and_royalty_net_losses,All,200000.0,500000.0,False,False,False,4792737000.0 +2015,Table 1.4,AZ,22,rent_and_royalty_net_income,All,200000.0,500000.0,True,False,False,746946.0 +2015,Table 1.4,BB,22,rent_and_royalty_net_losses,All,200000.0,500000.0,True,False,False,237953.0 +2015,Table 1.4,BU,22,taxable_social_security,All,200000.0,500000.0,False,False,False,25321729000.0 +2015,Table 1.4,BT,22,taxable_social_security,All,200000.0,500000.0,True,False,False,961000.0 +2015,Table 1.4,BS,22,total_social_security,All,200000.0,500000.0,False,False,False,29790900000.0 +2015,Table 1.4,BR,22,total_social_security,All,200000.0,500000.0,True,False,False,961029.0 +2015,Table 1.4,EI,22,income_tax_before_credits,All,200000.0,500000.0,False,False,False,302060350000.0 +2015,Table 1.4,EH,22,income_tax_before_credits,All,200000.0,500000.0,True,False,False,5422360.0 +2015,Table 1.4,I,22,taxable_interest_income,All,200000.0,500000.0,False,False,False,12956349000.0 +2015,Table 1.4,H,22,taxable_interest_income,All,200000.0,500000.0,True,False,False,4116012.0 +2015,Table 1.4,BQ,22,unemployment_compensation,All,200000.0,500000.0,False,False,False,688738000.0 +2015,Table 1.4,BP,22,unemployment_compensation,All,200000.0,500000.0,True,False,False,125117.0 +2015,Table 1.4,G,22,employment_income,All,200000.0,500000.0,False,False,False,1055689937000.0 +2015,Table 1.4,F,22,employment_income,All,200000.0,500000.0,True,False,False,4812720.0 +2015,Table 1.4,EE,23,alternative_minimum_tax,All,500000.0,1000000.0,False,False,False,5414951000.0 +2015,Table 1.4,ED,23,alternative_minimum_tax,All,500000.0,1000000.0,True,False,False,407046.0 +2015,Table 1.4,U,23,business_net_profits,All,500000.0,1000000.0,False,False,False,25065426000.0 +2015,Table 1.4,W,23,business_net_losses,All,500000.0,1000000.0,False,False,False,1320995000.0 +2015,Table 1.4,T,23,business_net_profits,All,500000.0,1000000.0,True,False,False,177361.0 +2015,Table 1.4,V,23,business_net_losses,All,500000.0,1000000.0,True,False,False,50356.0 +2015,Table 1.4,Y,23,capital_gains_distributions,All,500000.0,1000000.0,False,False,False,397268000.0 +2015,Table 1.4,X,23,capital_gains_distributions,All,500000.0,1000000.0,True,False,False,39917.0 +2015,Table 1.4,AA,23,capital_gains_gross,All,500000.0,1000000.0,False,False,False,61321058000.0 +2015,Table 1.4,AC,23,capital_gains_losses,All,500000.0,1000000.0,False,False,False,620944000.0 +2015,Table 1.4,Z,23,capital_gains_gross,All,500000.0,1000000.0,True,False,False,442833.0 +2015,Table 1.4,AB,23,capital_gains_losses,All,500000.0,1000000.0,True,False,False,240175.0 +2015,Table 1.4,BI,23,estate_income,All,500000.0,1000000.0,False,False,False,3109812000.0 +2015,Table 1.4,BK,23,estate_losses,All,500000.0,1000000.0,False,False,False,115685000.0 +2015,Table 1.4,BH,23,estate_income,All,500000.0,1000000.0,True,False,False,27807.0 +2015,Table 1.4,BJ,23,estate_losses,All,500000.0,1000000.0,True,False,False,4063.0 +2015,Table 1.4,K,23,exempt_interest,All,500000.0,1000000.0,False,False,False,6889926000.0 +2015,Table 1.4,J,23,exempt_interest,All,500000.0,1000000.0,True,False,False,323378.0 +2015,Table 1.4,DX,23,count_of_exemptions,All,500000.0,1000000.0,False,False,False,2597527.0 +2015,Table 1.4,AI,23,ira_distributions,All,500000.0,1000000.0,False,False,False,9379854000.0 +2015,Table 1.4,AH,23,ira_distributions,All,500000.0,1000000.0,True,False,False,135662.0 +2015,Table 1.4,M,23,ordinary_dividends,All,500000.0,1000000.0,False,False,False,24854824000.0 +2015,Table 1.4,L,23,ordinary_dividends,All,500000.0,1000000.0,True,False,False,708986.0 +2015,Table 1.4,BE,23,partnership_and_s_corp_income,All,500000.0,1000000.0,False,False,False,119801813000.0 +2015,Table 1.4,BG,23,partnership_and_s_corp_losses,All,500000.0,1000000.0,False,False,False,5967617000.0 +2015,Table 1.4,BD,23,partnership_and_s_corp_income,All,500000.0,1000000.0,True,False,False,403560.0 +2015,Table 1.4,BF,23,partnership_and_s_corp_losses,All,500000.0,1000000.0,True,False,False,101888.0 +2015,Table 1.4,AK,23,total_pension_income,All,500000.0,1000000.0,False,False,False,33682369000.0 +2015,Table 1.4,AJ,23,total_pension_income,All,500000.0,1000000.0,True,False,False,221493.0 +2015,Table 1.4,AM,23,taxable_pension_income,All,500000.0,1000000.0,False,False,False,8552399000.0 +2015,Table 1.4,AL,23,taxable_pension_income,All,500000.0,1000000.0,True,False,False,158716.0 +2015,Table 1.4,O,23,qualified_dividends,All,500000.0,1000000.0,False,False,False,20014498000.0 +2015,Table 1.4,N,23,qualified_dividends,All,500000.0,1000000.0,True,False,False,690017.0 +2015,Table 1.4,BA,23,rent_and_royalty_net_income,All,500000.0,1000000.0,False,False,False,10292595000.0 +2015,Table 1.4,BC,23,rent_and_royalty_net_losses,All,500000.0,1000000.0,False,False,False,1784427000.0 +2015,Table 1.4,AZ,23,rent_and_royalty_net_income,All,500000.0,1000000.0,True,False,False,189624.0 +2015,Table 1.4,BB,23,rent_and_royalty_net_losses,All,500000.0,1000000.0,True,False,False,63040.0 +2015,Table 1.4,BU,23,taxable_social_security,All,500000.0,1000000.0,False,False,False,4111568000.0 +2015,Table 1.4,BT,23,taxable_social_security,All,500000.0,1000000.0,True,False,False,148824.0 +2015,Table 1.4,BS,23,total_social_security,All,500000.0,1000000.0,False,False,False,4837200000.0 +2015,Table 1.4,BR,23,total_social_security,All,500000.0,1000000.0,True,False,False,148836.0 +2015,Table 1.4,EI,23,income_tax_before_credits,All,500000.0,1000000.0,False,False,False,155670713000.0 +2015,Table 1.4,EH,23,income_tax_before_credits,All,500000.0,1000000.0,True,False,False,883896.0 +2015,Table 1.4,I,23,taxable_interest_income,All,500000.0,1000000.0,False,False,False,7248337000.0 +2015,Table 1.4,H,23,taxable_interest_income,All,500000.0,1000000.0,True,False,False,802733.0 +2015,Table 1.4,BQ,23,unemployment_compensation,All,500000.0,1000000.0,False,False,False,48402000.0 +2015,Table 1.4,BP,23,unemployment_compensation,All,500000.0,1000000.0,True,False,False,7602.0 +2015,Table 1.4,G,23,employment_income,All,500000.0,1000000.0,False,False,False,337666673000.0 +2015,Table 1.4,F,23,employment_income,All,500000.0,1000000.0,True,False,False,767954.0 +2015,Table 1.4,EE,24,alternative_minimum_tax,All,1000000.0,1500000.0,False,False,False,1207369000.0 +2015,Table 1.4,ED,24,alternative_minimum_tax,All,1000000.0,1500000.0,True,False,False,37864.0 +2015,Table 1.4,U,24,business_net_profits,All,1000000.0,1500000.0,False,False,False,8889443000.0 +2015,Table 1.4,W,24,business_net_losses,All,1000000.0,1500000.0,False,False,False,593080000.0 +2015,Table 1.4,T,24,business_net_profits,All,1000000.0,1500000.0,True,False,False,38755.0 +2015,Table 1.4,V,24,business_net_losses,All,1000000.0,1500000.0,True,False,False,11619.0 +2015,Table 1.4,Y,24,capital_gains_distributions,All,1000000.0,1500000.0,False,False,False,82981000.0 +2015,Table 1.4,X,24,capital_gains_distributions,All,1000000.0,1500000.0,True,False,False,5619.0 +2015,Table 1.4,AA,24,capital_gains_gross,All,1000000.0,1500000.0,False,False,False,34034315000.0 +2015,Table 1.4,AC,24,capital_gains_losses,All,1000000.0,1500000.0,False,False,False,149959000.0 +2015,Table 1.4,Z,24,capital_gains_gross,All,1000000.0,1500000.0,True,False,False,114426.0 +2015,Table 1.4,AB,24,capital_gains_losses,All,1000000.0,1500000.0,True,False,False,54398.0 +2015,Table 1.4,BI,24,estate_income,All,1000000.0,1500000.0,False,False,False,2035739000.0 +2015,Table 1.4,BK,24,estate_losses,All,1000000.0,1500000.0,False,False,False,108963000.0 +2015,Table 1.4,BH,24,estate_income,All,1000000.0,1500000.0,True,False,False,9417.0 +2015,Table 1.4,BJ,24,estate_losses,All,1000000.0,1500000.0,True,False,False,1615.0 +2015,Table 1.4,K,24,exempt_interest,All,1000000.0,1500000.0,False,False,False,3113401000.0 +2015,Table 1.4,J,24,exempt_interest,All,1000000.0,1500000.0,True,False,False,93059.0 +2015,Table 1.4,DX,24,count_of_exemptions,All,1000000.0,1500000.0,False,False,False,568476.0 +2015,Table 1.4,AI,24,ira_distributions,All,1000000.0,1500000.0,False,False,False,1851835000.0 +2015,Table 1.4,AH,24,ira_distributions,All,1000000.0,1500000.0,True,False,False,29577.0 +2015,Table 1.4,M,24,ordinary_dividends,All,1000000.0,1500000.0,False,False,False,11605051000.0 +2015,Table 1.4,L,24,ordinary_dividends,All,1000000.0,1500000.0,True,False,False,167209.0 +2015,Table 1.4,BE,24,partnership_and_s_corp_income,All,1000000.0,1500000.0,False,False,False,62221699000.0 +2015,Table 1.4,BG,24,partnership_and_s_corp_losses,All,1000000.0,1500000.0,False,False,False,3082586000.0 +2015,Table 1.4,BD,24,partnership_and_s_corp_income,All,1000000.0,1500000.0,True,False,False,109248.0 +2015,Table 1.4,BF,24,partnership_and_s_corp_losses,All,1000000.0,1500000.0,True,False,False,26711.0 +2015,Table 1.4,AK,24,total_pension_income,All,1000000.0,1500000.0,False,False,False,9298366000.0 +2015,Table 1.4,AJ,24,total_pension_income,All,1000000.0,1500000.0,True,False,False,49598.0 +2015,Table 1.4,AM,24,taxable_pension_income,All,1000000.0,1500000.0,False,False,False,1899631000.0 +2015,Table 1.4,AL,24,taxable_pension_income,All,1000000.0,1500000.0,True,False,False,34329.0 +2015,Table 1.4,O,24,qualified_dividends,All,1000000.0,1500000.0,False,False,False,9328800000.0 +2015,Table 1.4,N,24,qualified_dividends,All,1000000.0,1500000.0,True,False,False,163261.0 +2015,Table 1.4,BA,24,rent_and_royalty_net_income,All,1000000.0,1500000.0,False,False,False,4351297000.0 +2015,Table 1.4,BC,24,rent_and_royalty_net_losses,All,1000000.0,1500000.0,False,False,False,745208000.0 +2015,Table 1.4,AZ,24,rent_and_royalty_net_income,All,1000000.0,1500000.0,True,False,False,52337.0 +2015,Table 1.4,BB,24,rent_and_royalty_net_losses,All,1000000.0,1500000.0,True,False,False,19059.0 +2015,Table 1.4,BU,24,taxable_social_security,All,1000000.0,1500000.0,False,False,False,991360000.0 +2015,Table 1.4,BT,24,taxable_social_security,All,1000000.0,1500000.0,True,False,False,35055.0 +2015,Table 1.4,BS,24,total_social_security,All,1000000.0,1500000.0,False,False,False,1169114000.0 +2015,Table 1.4,BR,24,total_social_security,All,1000000.0,1500000.0,True,False,False,35055.0 +2015,Table 1.4,EI,24,income_tax_before_credits,All,1000000.0,1500000.0,False,False,False,67038640000.0 +2015,Table 1.4,EH,24,income_tax_before_credits,All,1000000.0,1500000.0,True,False,False,195769.0 +2015,Table 1.4,I,24,taxable_interest_income,All,1000000.0,1500000.0,False,False,False,3733575000.0 +2015,Table 1.4,H,24,taxable_interest_income,All,1000000.0,1500000.0,True,False,False,187220.0 +2015,Table 1.4,BQ,24,unemployment_compensation,All,1000000.0,1500000.0,False,False,False,11553000.0 +2015,Table 1.4,BP,24,unemployment_compensation,All,1000000.0,1500000.0,True,False,False,1552.0 +2015,Table 1.4,G,24,employment_income,All,1000000.0,1500000.0,False,False,False,109129351000.0 +2015,Table 1.4,F,24,employment_income,All,1000000.0,1500000.0,True,False,False,164367.0 +2015,Table 1.4,EE,25,alternative_minimum_tax,All,1500000.0,2000000.0,False,False,False,680282000.0 +2015,Table 1.4,ED,25,alternative_minimum_tax,All,1500000.0,2000000.0,True,False,False,14534.0 +2015,Table 1.4,U,25,business_net_profits,All,1500000.0,2000000.0,False,False,False,4087303000.0 +2015,Table 1.4,W,25,business_net_losses,All,1500000.0,2000000.0,False,False,False,392245000.0 +2015,Table 1.4,T,25,business_net_profits,All,1500000.0,2000000.0,True,False,False,14068.0 +2015,Table 1.4,V,25,business_net_losses,All,1500000.0,2000000.0,True,False,False,5327.0 +2015,Table 1.4,Y,25,capital_gains_distributions,All,1500000.0,2000000.0,False,False,False,35912000.0 +2015,Table 1.4,X,25,capital_gains_distributions,All,1500000.0,2000000.0,True,False,False,1759.0 +2015,Table 1.4,AA,25,capital_gains_gross,All,1500000.0,2000000.0,False,False,False,24162327000.0 +2015,Table 1.4,AC,25,capital_gains_losses,All,1500000.0,2000000.0,False,False,False,61278000.0 +2015,Table 1.4,Z,25,capital_gains_gross,All,1500000.0,2000000.0,True,False,False,49072.0 +2015,Table 1.4,AB,25,capital_gains_losses,All,1500000.0,2000000.0,True,False,False,22018.0 +2015,Table 1.4,BI,25,estate_income,All,1500000.0,2000000.0,False,False,False,1379830000.0 +2015,Table 1.4,BK,25,estate_losses,All,1500000.0,2000000.0,False,False,False,80746000.0 +2015,Table 1.4,BH,25,estate_income,All,1500000.0,2000000.0,True,False,False,4786.0 +2015,Table 1.4,BJ,25,estate_losses,All,1500000.0,2000000.0,True,False,False,935.0 +2015,Table 1.4,K,25,exempt_interest,All,1500000.0,2000000.0,False,False,False,1942691000.0 +2015,Table 1.4,J,25,exempt_interest,All,1500000.0,2000000.0,True,False,False,42319.0 +2015,Table 1.4,DX,25,count_of_exemptions,All,1500000.0,2000000.0,False,False,False,231052.0 +2015,Table 1.4,AI,25,ira_distributions,All,1500000.0,2000000.0,False,False,False,763721000.0 +2015,Table 1.4,AH,25,ira_distributions,All,1500000.0,2000000.0,True,False,False,11523.0 +2015,Table 1.4,M,25,ordinary_dividends,All,1500000.0,2000000.0,False,False,False,6994679000.0 +2015,Table 1.4,L,25,ordinary_dividends,All,1500000.0,2000000.0,True,False,False,70134.0 +2015,Table 1.4,BE,25,partnership_and_s_corp_income,All,1500000.0,2000000.0,False,False,False,40614845000.0 +2015,Table 1.4,BG,25,partnership_and_s_corp_losses,All,1500000.0,2000000.0,False,False,False,2190098000.0 +2015,Table 1.4,BD,25,partnership_and_s_corp_income,All,1500000.0,2000000.0,True,False,False,46786.0 +2015,Table 1.4,BF,25,partnership_and_s_corp_losses,All,1500000.0,2000000.0,True,False,False,12565.0 +2015,Table 1.4,AK,25,total_pension_income,All,1500000.0,2000000.0,False,False,False,4182940000.0 +2015,Table 1.4,AJ,25,total_pension_income,All,1500000.0,2000000.0,True,False,False,19809.0 +2015,Table 1.4,AM,25,taxable_pension_income,All,1500000.0,2000000.0,False,False,False,845671000.0 +2015,Table 1.4,AL,25,taxable_pension_income,All,1500000.0,2000000.0,True,False,False,13703.0 +2015,Table 1.4,O,25,qualified_dividends,All,1500000.0,2000000.0,False,False,False,5485472000.0 +2015,Table 1.4,N,25,qualified_dividends,All,1500000.0,2000000.0,True,False,False,68480.0 +2015,Table 1.4,BA,25,rent_and_royalty_net_income,All,1500000.0,2000000.0,False,False,False,2162529000.0 +2015,Table 1.4,BC,25,rent_and_royalty_net_losses,All,1500000.0,2000000.0,False,False,False,343964000.0 +2015,Table 1.4,AZ,25,rent_and_royalty_net_income,All,1500000.0,2000000.0,True,False,False,23762.0 +2015,Table 1.4,BB,25,rent_and_royalty_net_losses,All,1500000.0,2000000.0,True,False,False,8378.0 +2015,Table 1.4,BU,25,taxable_social_security,All,1500000.0,2000000.0,False,False,False,417740000.0 +2015,Table 1.4,BT,25,taxable_social_security,All,1500000.0,2000000.0,True,False,False,14133.0 +2015,Table 1.4,BS,25,total_social_security,All,1500000.0,2000000.0,False,False,False,494040000.0 +2015,Table 1.4,BR,25,total_social_security,All,1500000.0,2000000.0,True,False,False,14165.0 +2015,Table 1.4,EI,25,income_tax_before_credits,All,1500000.0,2000000.0,False,False,False,40191435000.0 +2015,Table 1.4,EH,25,income_tax_before_credits,All,1500000.0,2000000.0,True,False,False,79933.0 +2015,Table 1.4,I,25,taxable_interest_income,All,1500000.0,2000000.0,False,False,False,2486638000.0 +2015,Table 1.4,H,25,taxable_interest_income,All,1500000.0,2000000.0,True,False,False,77308.0 +2015,Table 1.4,BQ,25,unemployment_compensation,All,1500000.0,2000000.0,False,False,False,3229000.0 +2015,Table 1.4,BP,25,unemployment_compensation,All,1500000.0,2000000.0,True,False,False,456.0 +2015,Table 1.4,G,25,employment_income,All,1500000.0,2000000.0,False,False,False,56400553000.0 +2015,Table 1.4,F,25,employment_income,All,1500000.0,2000000.0,True,False,False,66384.0 +2015,Table 1.4,EE,26,alternative_minimum_tax,All,2000000.0,5000000.0,False,False,False,1599151000.0 +2015,Table 1.4,ED,26,alternative_minimum_tax,All,2000000.0,5000000.0,True,False,False,21597.0 +2015,Table 1.4,U,26,business_net_profits,All,2000000.0,5000000.0,False,False,False,8304335000.0 +2015,Table 1.4,W,26,business_net_losses,All,2000000.0,5000000.0,False,False,False,959470000.0 +2015,Table 1.4,T,26,business_net_profits,All,2000000.0,5000000.0,True,False,False,20890.0 +2015,Table 1.4,V,26,business_net_losses,All,2000000.0,5000000.0,True,False,False,8405.0 +2015,Table 1.4,Y,26,capital_gains_distributions,All,2000000.0,5000000.0,False,False,False,90952000.0 +2015,Table 1.4,X,26,capital_gains_distributions,All,2000000.0,5000000.0,True,False,False,1846.0 +2015,Table 1.4,AA,26,capital_gains_gross,All,2000000.0,5000000.0,False,False,False,78275758000.0 +2015,Table 1.4,AC,26,capital_gains_losses,All,2000000.0,5000000.0,False,False,False,85195000.0 +2015,Table 1.4,Z,26,capital_gains_gross,All,2000000.0,5000000.0,True,False,False,77340.0 +2015,Table 1.4,AB,26,capital_gains_losses,All,2000000.0,5000000.0,True,False,False,30162.0 +2015,Table 1.4,BI,26,estate_income,All,2000000.0,5000000.0,False,False,False,3609729000.0 +2015,Table 1.4,BK,26,estate_losses,All,2000000.0,5000000.0,False,False,False,286232000.0 +2015,Table 1.4,BH,26,estate_income,All,2000000.0,5000000.0,True,False,False,8203.0 +2015,Table 1.4,BJ,26,estate_losses,All,2000000.0,5000000.0,True,False,False,2021.0 +2015,Table 1.4,K,26,exempt_interest,All,2000000.0,5000000.0,False,False,False,4872127000.0 +2015,Table 1.4,J,26,exempt_interest,All,2000000.0,5000000.0,True,False,False,69777.0 +2015,Table 1.4,DX,26,count_of_exemptions,All,2000000.0,5000000.0,False,False,False,335819.0 +2015,Table 1.4,AI,26,ira_distributions,All,2000000.0,5000000.0,False,False,False,1295739000.0 +2015,Table 1.4,AH,26,ira_distributions,All,2000000.0,5000000.0,True,False,False,16389.0 +2015,Table 1.4,M,26,ordinary_dividends,All,2000000.0,5000000.0,False,False,False,19650375000.0 +2015,Table 1.4,L,26,ordinary_dividends,All,2000000.0,5000000.0,True,False,False,104973.0 +2015,Table 1.4,BE,26,partnership_and_s_corp_income,All,2000000.0,5000000.0,False,False,False,103229764000.0 +2015,Table 1.4,BG,26,partnership_and_s_corp_losses,All,2000000.0,5000000.0,False,False,False,7179642000.0 +2015,Table 1.4,BD,26,partnership_and_s_corp_income,All,2000000.0,5000000.0,True,False,False,70487.0 +2015,Table 1.4,BF,26,partnership_and_s_corp_losses,All,2000000.0,5000000.0,True,False,False,22584.0 +2015,Table 1.4,AK,26,total_pension_income,All,2000000.0,5000000.0,False,False,False,6469958000.0 +2015,Table 1.4,AJ,26,total_pension_income,All,2000000.0,5000000.0,True,False,False,28130.0 +2015,Table 1.4,AM,26,taxable_pension_income,All,2000000.0,5000000.0,False,False,False,1261502000.0 +2015,Table 1.4,AL,26,taxable_pension_income,All,2000000.0,5000000.0,True,False,False,19744.0 +2015,Table 1.4,O,26,qualified_dividends,All,2000000.0,5000000.0,False,False,False,15679937000.0 +2015,Table 1.4,N,26,qualified_dividends,All,2000000.0,5000000.0,True,False,False,102750.0 +2015,Table 1.4,BA,26,rent_and_royalty_net_income,All,2000000.0,5000000.0,False,False,False,5056616000.0 +2015,Table 1.4,BC,26,rent_and_royalty_net_losses,All,2000000.0,5000000.0,False,False,False,739361000.0 +2015,Table 1.4,AZ,26,rent_and_royalty_net_income,All,2000000.0,5000000.0,True,False,False,40190.0 +2015,Table 1.4,BB,26,rent_and_royalty_net_losses,All,2000000.0,5000000.0,True,False,False,13763.0 +2015,Table 1.4,BU,26,taxable_social_security,All,2000000.0,5000000.0,False,False,False,619869000.0 +2015,Table 1.4,BT,26,taxable_social_security,All,2000000.0,5000000.0,True,False,False,20918.0 +2015,Table 1.4,BS,26,total_social_security,All,2000000.0,5000000.0,False,False,False,729459000.0 +2015,Table 1.4,BR,26,total_social_security,All,2000000.0,5000000.0,True,False,False,20924.0 +2015,Table 1.4,EI,26,income_tax_before_credits,All,2000000.0,5000000.0,False,False,False,102164371000.0 +2015,Table 1.4,EH,26,income_tax_before_credits,All,2000000.0,5000000.0,True,False,False,116618.0 +2015,Table 1.4,I,26,taxable_interest_income,All,2000000.0,5000000.0,False,False,False,7437965000.0 +2015,Table 1.4,H,26,taxable_interest_income,All,2000000.0,5000000.0,True,False,False,114470.0 +2015,Table 1.4,BQ,26,unemployment_compensation,All,2000000.0,5000000.0,False,False,False,3682000.0 +2015,Table 1.4,BP,26,unemployment_compensation,All,2000000.0,5000000.0,True,False,False,455.0 +2015,Table 1.4,G,26,employment_income,All,2000000.0,5000000.0,False,False,False,124291852000.0 +2015,Table 1.4,F,26,employment_income,All,2000000.0,5000000.0,True,False,False,96609.0 +2015,Table 1.4,EE,27,alternative_minimum_tax,All,5000000.0,10000000.0,False,False,False,898704000.0 +2015,Table 1.4,ED,27,alternative_minimum_tax,All,5000000.0,10000000.0,True,False,False,5906.0 +2015,Table 1.4,U,27,business_net_profits,All,5000000.0,10000000.0,False,False,False,3422426000.0 +2015,Table 1.4,W,27,business_net_losses,All,5000000.0,10000000.0,False,False,False,481125000.0 +2015,Table 1.4,T,27,business_net_profits,All,5000000.0,10000000.0,True,False,False,4887.0 +2015,Table 1.4,V,27,business_net_losses,All,5000000.0,10000000.0,True,False,False,2306.0 +2015,Table 1.4,Y,27,capital_gains_distributions,All,5000000.0,10000000.0,False,False,False,10409000.0 +2015,Table 1.4,X,27,capital_gains_distributions,All,5000000.0,10000000.0,True,False,False,206.0 +2015,Table 1.4,AA,27,capital_gains_gross,All,5000000.0,10000000.0,False,False,False,60482444000.0 +2015,Table 1.4,AC,27,capital_gains_losses,All,5000000.0,10000000.0,False,False,False,18456000.0 +2015,Table 1.4,Z,27,capital_gains_gross,All,5000000.0,10000000.0,True,False,False,20900.0 +2015,Table 1.4,AB,27,capital_gains_losses,All,5000000.0,10000000.0,True,False,False,6441.0 +2015,Table 1.4,BI,27,estate_income,All,5000000.0,10000000.0,False,False,False,2796763000.0 +2015,Table 1.4,BK,27,estate_losses,All,5000000.0,10000000.0,False,False,False,178364000.0 +2015,Table 1.4,BH,27,estate_income,All,5000000.0,10000000.0,True,False,False,2705.0 +2015,Table 1.4,BJ,27,estate_losses,All,5000000.0,10000000.0,True,False,False,998.0 +2015,Table 1.4,K,27,exempt_interest,All,5000000.0,10000000.0,False,False,False,2457559000.0 +2015,Table 1.4,J,27,exempt_interest,All,5000000.0,10000000.0,True,False,False,19636.0 +2015,Table 1.4,DX,27,count_of_exemptions,All,5000000.0,10000000.0,False,False,False,81601.0 +2015,Table 1.4,AI,27,ira_distributions,All,5000000.0,10000000.0,False,False,False,465381000.0 +2015,Table 1.4,AH,27,ira_distributions,All,5000000.0,10000000.0,True,False,False,3940.0 +2015,Table 1.4,M,27,ordinary_dividends,All,5000000.0,10000000.0,False,False,False,11752780000.0 +2015,Table 1.4,L,27,ordinary_dividends,All,5000000.0,10000000.0,True,False,False,26596.0 +2015,Table 1.4,BE,27,partnership_and_s_corp_income,All,5000000.0,10000000.0,False,False,False,52736560000.0 +2015,Table 1.4,BG,27,partnership_and_s_corp_losses,All,5000000.0,10000000.0,False,False,False,4248736000.0 +2015,Table 1.4,BD,27,partnership_and_s_corp_income,All,5000000.0,10000000.0,True,False,False,17412.0 +2015,Table 1.4,BF,27,partnership_and_s_corp_losses,All,5000000.0,10000000.0,True,False,False,6831.0 +2015,Table 1.4,AK,27,total_pension_income,All,5000000.0,10000000.0,False,False,False,1930420000.0 +2015,Table 1.4,AJ,27,total_pension_income,All,5000000.0,10000000.0,True,False,False,6893.0 +2015,Table 1.4,AM,27,taxable_pension_income,All,5000000.0,10000000.0,False,False,False,463280000.0 +2015,Table 1.4,AL,27,taxable_pension_income,All,5000000.0,10000000.0,True,False,False,4815.0 +2015,Table 1.4,O,27,qualified_dividends,All,5000000.0,10000000.0,False,False,False,9423445000.0 +2015,Table 1.4,N,27,qualified_dividends,All,5000000.0,10000000.0,True,False,False,26053.0 +2015,Table 1.4,BA,27,rent_and_royalty_net_income,All,5000000.0,10000000.0,False,False,False,2418718000.0 +2015,Table 1.4,BC,27,rent_and_royalty_net_losses,All,5000000.0,10000000.0,False,False,False,293341000.0 +2015,Table 1.4,AZ,27,rent_and_royalty_net_income,All,5000000.0,10000000.0,True,False,False,11658.0 +2015,Table 1.4,BB,27,rent_and_royalty_net_losses,All,5000000.0,10000000.0,True,False,False,3917.0 +2015,Table 1.4,BU,27,taxable_social_security,All,5000000.0,10000000.0,False,False,False,165281000.0 +2015,Table 1.4,BT,27,taxable_social_security,All,5000000.0,10000000.0,True,False,False,5307.0 +2015,Table 1.4,BS,27,total_social_security,All,5000000.0,10000000.0,False,False,False,194448000.0 +2015,Table 1.4,BR,27,total_social_security,All,5000000.0,10000000.0,True,False,False,5307.0 +2015,Table 1.4,EI,27,income_tax_before_credits,All,5000000.0,10000000.0,False,False,False,56313454000.0 +2015,Table 1.4,EH,27,income_tax_before_credits,All,5000000.0,10000000.0,True,False,False,28660.0 +2015,Table 1.4,I,27,taxable_interest_income,All,5000000.0,10000000.0,False,False,False,4565985000.0 +2015,Table 1.4,H,27,taxable_interest_income,All,5000000.0,10000000.0,True,False,False,28312.0 +2015,Table 1.4,BQ,27,unemployment_compensation,All,5000000.0,10000000.0,False,False,False,413000.0 +2015,Table 1.4,BP,27,unemployment_compensation,All,5000000.0,10000000.0,True,False,False,63.0 +2015,Table 1.4,G,27,employment_income,All,5000000.0,10000000.0,False,False,False,59258643000.0 +2015,Table 1.4,F,27,employment_income,All,5000000.0,10000000.0,True,False,False,23626.0 +2015,Table 1.4,EE,28,alternative_minimum_tax,All,10000000.0,inf,False,False,False,2887510000.0 +2015,Table 1.4,ED,28,alternative_minimum_tax,All,10000000.0,inf,True,False,False,4587.0 +2015,Table 1.4,U,28,business_net_profits,All,10000000.0,inf,False,False,False,4865995000.0 +2015,Table 1.4,W,28,business_net_losses,All,10000000.0,inf,False,False,False,1300305000.0 +2015,Table 1.4,T,28,business_net_profits,All,10000000.0,inf,True,False,False,3114.0 +2015,Table 1.4,V,28,business_net_losses,All,10000000.0,inf,True,False,False,1843.0 +2015,Table 1.4,Y,28,capital_gains_distributions,All,10000000.0,inf,False,False,False,6438000.0 +2015,Table 1.4,X,28,capital_gains_distributions,All,10000000.0,inf,True,False,False,58.0 +2015,Table 1.4,AA,28,capital_gains_gross,All,10000000.0,inf,False,False,False,255037864000.0 +2015,Table 1.4,AC,28,capital_gains_losses,All,10000000.0,inf,False,False,False,9459000.0 +2015,Table 1.4,Z,28,capital_gains_gross,All,10000000.0,inf,True,False,False,14366.0 +2015,Table 1.4,AB,28,capital_gains_losses,All,10000000.0,inf,True,False,False,3276.0 +2015,Table 1.4,BI,28,estate_income,All,10000000.0,inf,False,False,False,6829895000.0 +2015,Table 1.4,BK,28,estate_losses,All,10000000.0,inf,False,False,False,2637246000.0 +2015,Table 1.4,BH,28,estate_income,All,10000000.0,inf,True,False,False,2077.0 +2015,Table 1.4,BJ,28,estate_losses,All,10000000.0,inf,True,False,False,1080.0 +2015,Table 1.4,K,28,exempt_interest,All,10000000.0,inf,False,False,False,4314263000.0 +2015,Table 1.4,J,28,exempt_interest,All,10000000.0,inf,True,False,False,14069.0 +2015,Table 1.4,DX,28,count_of_exemptions,All,10000000.0,inf,False,False,False,51036.0 +2015,Table 1.4,AI,28,ira_distributions,All,10000000.0,inf,False,False,False,473170000.0 +2015,Table 1.4,AH,28,ira_distributions,All,10000000.0,inf,True,False,False,2303.0 +2015,Table 1.4,M,28,ordinary_dividends,All,10000000.0,inf,False,False,False,45447147000.0 +2015,Table 1.4,L,28,ordinary_dividends,All,10000000.0,inf,True,False,False,17317.0 +2015,Table 1.4,BE,28,partnership_and_s_corp_income,All,10000000.0,inf,False,False,False,114166407000.0 +2015,Table 1.4,BG,28,partnership_and_s_corp_losses,All,10000000.0,inf,False,False,False,19840013000.0 +2015,Table 1.4,BD,28,partnership_and_s_corp_income,All,10000000.0,inf,True,False,False,11004.0 +2015,Table 1.4,BF,28,partnership_and_s_corp_losses,All,10000000.0,inf,True,False,False,5257.0 +2015,Table 1.4,AK,28,total_pension_income,All,10000000.0,inf,False,False,False,1531145000.0 +2015,Table 1.4,AJ,28,total_pension_income,All,10000000.0,inf,True,False,False,4588.0 +2015,Table 1.4,AM,28,taxable_pension_income,All,10000000.0,inf,False,False,False,398698000.0 +2015,Table 1.4,AL,28,taxable_pension_income,All,10000000.0,inf,True,False,False,3279.0 +2015,Table 1.4,O,28,qualified_dividends,All,10000000.0,inf,False,False,False,38148418000.0 +2015,Table 1.4,N,28,qualified_dividends,All,10000000.0,inf,True,False,False,17059.0 +2015,Table 1.4,BA,28,rent_and_royalty_net_income,All,10000000.0,inf,False,False,False,3724211000.0 +2015,Table 1.4,BC,28,rent_and_royalty_net_losses,All,10000000.0,inf,False,False,False,419507000.0 +2015,Table 1.4,AZ,28,rent_and_royalty_net_income,All,10000000.0,inf,True,False,False,8655.0 +2015,Table 1.4,BB,28,rent_and_royalty_net_losses,All,10000000.0,inf,True,False,False,2800.0 +2015,Table 1.4,BU,28,taxable_social_security,All,10000000.0,inf,False,False,False,107963000.0 +2015,Table 1.4,BT,28,taxable_social_security,All,10000000.0,inf,True,False,False,3355.0 +2015,Table 1.4,BS,28,total_social_security,All,10000000.0,inf,False,False,False,127035000.0 +2015,Table 1.4,BR,28,total_social_security,All,10000000.0,inf,True,False,False,3356.0 +2015,Table 1.4,EI,28,income_tax_before_credits,All,10000000.0,inf,False,False,False,137359950000.0 +2015,Table 1.4,EH,28,income_tax_before_credits,All,10000000.0,inf,True,False,False,18051.0 +2015,Table 1.4,I,28,taxable_interest_income,All,10000000.0,inf,False,False,False,18133165000.0 +2015,Table 1.4,H,28,taxable_interest_income,All,10000000.0,inf,True,False,False,17947.0 +2015,Table 1.4,BQ,28,unemployment_compensation,All,10000000.0,inf,False,False,False,216000.0 +2015,Table 1.4,BP,28,unemployment_compensation,All,10000000.0,inf,True,False,False,34.0 +2015,Table 1.4,G,28,employment_income,All,10000000.0,inf,False,False,False,96364957000.0 +2015,Table 1.4,F,28,employment_income,All,10000000.0,inf,True,False,False,14691.0 +2015,Table 2.1,CT,10,charitable_contributions_deductions,All,-inf,inf,False,False,True,221850264000.0 +2015,Table 2.1,CS,10,charitable_contributions_deductions,All,-inf,inf,True,False,True,36623657.0 +2015,Table 2.1,BX,10,itemized_general_sales_tax_deduction,All,-inf,inf,False,False,True,17641159000.0 +2015,Table 2.1,BW,10,itemized_general_sales_tax_deduction,All,-inf,inf,True,False,True,9627447.0 +2015,Table 2.1,CF,10,interest_paid_deductions,All,-inf,inf,False,False,True,304461163000.0 +2015,Table 2.1,CE,10,interest_paid_deductions,All,-inf,inf,True,False,True,33301990.0 +2015,Table 2.1,BL,10,medical_expense_deductions_capped,All,-inf,inf,False,False,True,86931032000.0 +2015,Table 2.1,BK,10,medical_expense_deductions_capped,All,-inf,inf,True,False,True,8776985.0 +2015,Table 2.1,BN,10,medical_expense_deductions_uncapped,All,-inf,inf,False,False,True,133785340000.0 +2015,Table 2.1,BM,10,medical_expense_deductions_uncapped,All,-inf,inf,True,False,True,8776985.0 +2015,Table 2.1,CH,10,mortgage_interest_deductions,All,-inf,inf,False,False,True,283004465000.0 +2015,Table 2.1,CG,10,mortgage_interest_deductions,All,-inf,inf,True,False,True,32715927.0 +2015,Table 2.1,BV,10,itemized_state_income_tax_deductions,All,-inf,inf,False,False,True,335060168000.0 +2015,Table 2.1,BU,10,itemized_state_income_tax_deductions,All,-inf,inf,True,False,True,33063383.0 +2015,Table 2.1,BZ,10,itemized_real_estate_tax_deductions,All,-inf,inf,False,False,True,188605843000.0 +2015,Table 2.1,BY,10,itemized_real_estate_tax_deductions,All,-inf,inf,True,False,True,37613402.0 +2015,Table 2.1,BT,10,state_and_local_tax_deductions,All,-inf,inf,False,False,True,352701327000.0 +2015,Table 2.1,BS,10,state_and_local_tax_deductions,All,-inf,inf,True,False,True,42690831.0 +2015,Table 2.1,BR,10,itemized_taxes_paid_deductions,All,-inf,inf,False,False,True,553015621000.0 +2015,Table 2.1,BQ,10,itemized_taxes_paid_deductions,All,-inf,inf,True,False,True,44191436.0 +2015,Table 2.1,CT,11,charitable_contributions_deductions,All,0.0,5000.0,False,False,False,138539000.0 +2015,Table 2.1,CS,11,charitable_contributions_deductions,All,0.0,5000.0,True,False,False,186787.0 +2015,Table 2.1,BX,11,itemized_general_sales_tax_deduction,All,0.0,5000.0,False,False,False,87240000.0 +2015,Table 2.1,BW,11,itemized_general_sales_tax_deduction,All,0.0,5000.0,True,False,False,171918.0 +2015,Table 2.1,CF,11,interest_paid_deductions,All,0.0,5000.0,False,False,False,1231416000.0 +2015,Table 2.1,CE,11,interest_paid_deductions,All,0.0,5000.0,True,False,False,172738.0 +2015,Table 2.1,BL,11,medical_expense_deductions_capped,All,0.0,5000.0,False,False,False,2108042000.0 +2015,Table 2.1,BK,11,medical_expense_deductions_capped,All,0.0,5000.0,True,False,False,227519.0 +2015,Table 2.1,BN,11,medical_expense_deductions_uncapped,All,0.0,5000.0,False,False,False,2154665000.0 +2015,Table 2.1,BM,11,medical_expense_deductions_uncapped,All,0.0,5000.0,True,False,False,227519.0 +2015,Table 2.1,CH,11,mortgage_interest_deductions,All,0.0,5000.0,False,False,False,1174521000.0 +2015,Table 2.1,CG,11,mortgage_interest_deductions,All,0.0,5000.0,True,False,False,167028.0 +2015,Table 2.1,BV,11,itemized_state_income_tax_deductions,All,0.0,5000.0,False,False,False,247368000.0 +2015,Table 2.1,BU,11,itemized_state_income_tax_deductions,All,0.0,5000.0,True,False,False,74184.0 +2015,Table 2.1,BZ,11,itemized_real_estate_tax_deductions,All,0.0,5000.0,False,False,False,824302000.0 +2015,Table 2.1,BY,11,itemized_real_estate_tax_deductions,All,0.0,5000.0,True,False,False,218583.0 +2015,Table 2.1,BT,11,state_and_local_tax_deductions,All,0.0,5000.0,False,False,False,334608000.0 +2015,Table 2.1,BS,11,state_and_local_tax_deductions,All,0.0,5000.0,True,False,False,246102.0 +2015,Table 2.1,BR,11,itemized_taxes_paid_deductions,All,0.0,5000.0,False,False,False,1202092000.0 +2015,Table 2.1,BQ,11,itemized_taxes_paid_deductions,All,0.0,5000.0,True,False,False,297983.0 +2015,Table 2.1,CT,12,charitable_contributions_deductions,All,5000.0,10000.0,False,False,False,316739000.0 +2015,Table 2.1,CS,12,charitable_contributions_deductions,All,5000.0,10000.0,True,False,False,225979.0 +2015,Table 2.1,BX,12,itemized_general_sales_tax_deduction,All,5000.0,10000.0,False,False,False,110588000.0 +2015,Table 2.1,BW,12,itemized_general_sales_tax_deduction,All,5000.0,10000.0,True,False,False,221951.0 +2015,Table 2.1,CF,12,interest_paid_deductions,All,5000.0,10000.0,False,False,False,1284063000.0 +2015,Table 2.1,CE,12,interest_paid_deductions,All,5000.0,10000.0,True,False,False,194117.0 +2015,Table 2.1,BL,12,medical_expense_deductions_capped,All,5000.0,10000.0,False,False,False,3013542000.0 +2015,Table 2.1,BK,12,medical_expense_deductions_capped,All,5000.0,10000.0,True,False,False,279663.0 +2015,Table 2.1,BN,12,medical_expense_deductions_uncapped,All,5000.0,10000.0,False,False,False,3188696000.0 +2015,Table 2.1,BM,12,medical_expense_deductions_uncapped,All,5000.0,10000.0,True,False,False,279663.0 +2015,Table 2.1,CH,12,mortgage_interest_deductions,All,5000.0,10000.0,False,False,False,1237451000.0 +2015,Table 2.1,CG,12,mortgage_interest_deductions,All,5000.0,10000.0,True,False,False,185501.0 +2015,Table 2.1,BV,12,itemized_state_income_tax_deductions,All,5000.0,10000.0,False,False,False,144224000.0 +2015,Table 2.1,BU,12,itemized_state_income_tax_deductions,All,5000.0,10000.0,True,False,False,98328.0 +2015,Table 2.1,BZ,12,itemized_real_estate_tax_deductions,All,5000.0,10000.0,False,False,False,1007214000.0 +2015,Table 2.1,BY,12,itemized_real_estate_tax_deductions,All,5000.0,10000.0,True,False,False,280431.0 +2015,Table 2.1,BT,12,state_and_local_tax_deductions,All,5000.0,10000.0,False,False,False,254813000.0 +2015,Table 2.1,BS,12,state_and_local_tax_deductions,All,5000.0,10000.0,True,False,False,320279.0 +2015,Table 2.1,BR,12,itemized_taxes_paid_deductions,All,5000.0,10000.0,False,False,False,1341118000.0 +2015,Table 2.1,BQ,12,itemized_taxes_paid_deductions,All,5000.0,10000.0,True,False,False,366055.0 +2015,Table 2.1,CT,13,charitable_contributions_deductions,All,10000.0,15000.0,False,False,False,802263000.0 +2015,Table 2.1,CS,13,charitable_contributions_deductions,All,10000.0,15000.0,True,False,False,423728.0 +2015,Table 2.1,BX,13,itemized_general_sales_tax_deduction,All,10000.0,15000.0,False,False,False,241775000.0 +2015,Table 2.1,BW,13,itemized_general_sales_tax_deduction,All,10000.0,15000.0,True,False,False,366031.0 +2015,Table 2.1,CF,13,interest_paid_deductions,All,10000.0,15000.0,False,False,False,2148799000.0 +2015,Table 2.1,CE,13,interest_paid_deductions,All,10000.0,15000.0,True,False,False,347692.0 +2015,Table 2.1,BL,13,medical_expense_deductions_capped,All,10000.0,15000.0,False,False,False,3936086000.0 +2015,Table 2.1,BK,13,medical_expense_deductions_capped,All,10000.0,15000.0,True,False,False,463596.0 +2015,Table 2.1,BN,13,medical_expense_deductions_uncapped,All,10000.0,15000.0,False,False,False,4414676000.0 +2015,Table 2.1,BM,13,medical_expense_deductions_uncapped,All,10000.0,15000.0,True,False,False,463596.0 +2015,Table 2.1,CH,13,mortgage_interest_deductions,All,10000.0,15000.0,False,False,False,2083827000.0 +2015,Table 2.1,CG,13,mortgage_interest_deductions,All,10000.0,15000.0,True,False,False,338276.0 +2015,Table 2.1,BV,13,itemized_state_income_tax_deductions,All,10000.0,15000.0,False,False,False,242932000.0 +2015,Table 2.1,BU,13,itemized_state_income_tax_deductions,All,10000.0,15000.0,True,False,False,192403.0 +2015,Table 2.1,BZ,13,itemized_real_estate_tax_deductions,All,10000.0,15000.0,False,False,False,1604278000.0 +2015,Table 2.1,BY,13,itemized_real_estate_tax_deductions,All,10000.0,15000.0,True,False,False,472620.0 +2015,Table 2.1,BT,13,state_and_local_tax_deductions,All,10000.0,15000.0,False,False,False,484707000.0 +2015,Table 2.1,BS,13,state_and_local_tax_deductions,All,10000.0,15000.0,True,False,False,558434.0 +2015,Table 2.1,BR,13,itemized_taxes_paid_deductions,All,10000.0,15000.0,False,False,False,2181494000.0 +2015,Table 2.1,BQ,13,itemized_taxes_paid_deductions,All,10000.0,15000.0,True,False,False,627733.0 +2015,Table 2.1,CT,14,charitable_contributions_deductions,All,15000.0,20000.0,False,False,False,1239419000.0 +2015,Table 2.1,CS,14,charitable_contributions_deductions,All,15000.0,20000.0,True,False,False,566996.0 +2015,Table 2.1,BX,14,itemized_general_sales_tax_deduction,All,15000.0,20000.0,False,False,False,294130000.0 +2015,Table 2.1,BW,14,itemized_general_sales_tax_deduction,All,15000.0,20000.0,True,False,False,400738.0 +2015,Table 2.1,CF,14,interest_paid_deductions,All,15000.0,20000.0,False,False,False,2699978000.0 +2015,Table 2.1,CE,14,interest_paid_deductions,All,15000.0,20000.0,True,False,False,428197.0 +2015,Table 2.1,BL,14,medical_expense_deductions_capped,All,15000.0,20000.0,False,False,False,4297932000.0 +2015,Table 2.1,BK,14,medical_expense_deductions_capped,All,15000.0,20000.0,True,False,False,490746.0 +2015,Table 2.1,BN,14,medical_expense_deductions_uncapped,All,15000.0,20000.0,False,False,False,5007572000.0 +2015,Table 2.1,BM,14,medical_expense_deductions_uncapped,All,15000.0,20000.0,True,False,False,490746.0 +2015,Table 2.1,CH,14,mortgage_interest_deductions,All,15000.0,20000.0,False,False,False,2589295000.0 +2015,Table 2.1,CG,14,mortgage_interest_deductions,All,15000.0,20000.0,True,False,False,418199.0 +2015,Table 2.1,BV,14,itemized_state_income_tax_deductions,All,15000.0,20000.0,False,False,False,352591000.0 +2015,Table 2.1,BU,14,itemized_state_income_tax_deductions,All,15000.0,20000.0,True,False,False,313094.0 +2015,Table 2.1,BZ,14,itemized_real_estate_tax_deductions,All,15000.0,20000.0,False,False,False,1916831000.0 +2015,Table 2.1,BY,14,itemized_real_estate_tax_deductions,All,15000.0,20000.0,True,False,False,557094.0 +2015,Table 2.1,BT,14,state_and_local_tax_deductions,All,15000.0,20000.0,False,False,False,646722000.0 +2015,Table 2.1,BS,14,state_and_local_tax_deductions,All,15000.0,20000.0,True,False,False,713832.0 +2015,Table 2.1,BR,14,itemized_taxes_paid_deductions,All,15000.0,20000.0,False,False,False,2687159000.0 +2015,Table 2.1,BQ,14,itemized_taxes_paid_deductions,All,15000.0,20000.0,True,False,False,774558.0 +2015,Table 2.1,CT,15,charitable_contributions_deductions,All,20000.0,25000.0,False,False,False,1595153000.0 +2015,Table 2.1,CS,15,charitable_contributions_deductions,All,20000.0,25000.0,True,False,False,645356.0 +2015,Table 2.1,BX,15,itemized_general_sales_tax_deduction,All,20000.0,25000.0,False,False,False,359337000.0 +2015,Table 2.1,BW,15,itemized_general_sales_tax_deduction,All,20000.0,25000.0,True,False,False,436445.0 +2015,Table 2.1,CF,15,interest_paid_deductions,All,20000.0,25000.0,False,False,False,3181401000.0 +2015,Table 2.1,CE,15,interest_paid_deductions,All,20000.0,25000.0,True,False,False,460451.0 +2015,Table 2.1,BL,15,medical_expense_deductions_capped,All,20000.0,25000.0,False,False,False,4344639000.0 +2015,Table 2.1,BK,15,medical_expense_deductions_capped,All,20000.0,25000.0,True,False,False,500858.0 +2015,Table 2.1,BN,15,medical_expense_deductions_uncapped,All,20000.0,25000.0,False,False,False,5295009000.0 +2015,Table 2.1,BM,15,medical_expense_deductions_uncapped,All,20000.0,25000.0,True,False,False,500858.0 +2015,Table 2.1,CH,15,mortgage_interest_deductions,All,20000.0,25000.0,False,False,False,2992991000.0 +2015,Table 2.1,CG,15,mortgage_interest_deductions,All,20000.0,25000.0,True,False,False,447688.0 +2015,Table 2.1,BV,15,itemized_state_income_tax_deductions,All,20000.0,25000.0,False,False,False,503057000.0 +2015,Table 2.1,BU,15,itemized_state_income_tax_deductions,All,20000.0,25000.0,True,False,False,406796.0 +2015,Table 2.1,BZ,15,itemized_real_estate_tax_deductions,All,20000.0,25000.0,False,False,False,2079351000.0 +2015,Table 2.1,BY,15,itemized_real_estate_tax_deductions,All,20000.0,25000.0,True,False,False,616136.0 +2015,Table 2.1,BT,15,state_and_local_tax_deductions,All,20000.0,25000.0,False,False,False,862394000.0 +2015,Table 2.1,BS,15,state_and_local_tax_deductions,All,20000.0,25000.0,True,False,False,843241.0 +2015,Table 2.1,BR,15,itemized_taxes_paid_deductions,All,20000.0,25000.0,False,False,False,3074264000.0 +2015,Table 2.1,BQ,15,itemized_taxes_paid_deductions,All,20000.0,25000.0,True,False,False,909333.0 +2015,Table 2.1,CT,16,charitable_contributions_deductions,All,25000.0,30000.0,False,False,False,2077193000.0 +2015,Table 2.1,CS,16,charitable_contributions_deductions,All,25000.0,30000.0,True,False,False,782028.0 +2015,Table 2.1,BX,16,itemized_general_sales_tax_deduction,All,25000.0,30000.0,False,False,False,400764000.0 +2015,Table 2.1,BW,16,itemized_general_sales_tax_deduction,All,25000.0,30000.0,True,False,False,428556.0 +2015,Table 2.1,CF,16,interest_paid_deductions,All,25000.0,30000.0,False,False,False,3748228000.0 +2015,Table 2.1,CE,16,interest_paid_deductions,All,25000.0,30000.0,True,False,False,587849.0 +2015,Table 2.1,BL,16,medical_expense_deductions_capped,All,25000.0,30000.0,False,False,False,4753902000.0 +2015,Table 2.1,BK,16,medical_expense_deductions_capped,All,25000.0,30000.0,True,False,False,532022.0 +2015,Table 2.1,BN,16,medical_expense_deductions_uncapped,All,25000.0,30000.0,False,False,False,6013365000.0 +2015,Table 2.1,BM,16,medical_expense_deductions_uncapped,All,25000.0,30000.0,True,False,False,532022.0 +2015,Table 2.1,CH,16,mortgage_interest_deductions,All,25000.0,30000.0,False,False,False,3591380000.0 +2015,Table 2.1,CG,16,mortgage_interest_deductions,All,25000.0,30000.0,True,False,False,578143.0 +2015,Table 2.1,BV,16,itemized_state_income_tax_deductions,All,25000.0,30000.0,False,False,False,766251000.0 +2015,Table 2.1,BU,16,itemized_state_income_tax_deductions,All,25000.0,30000.0,True,False,False,557060.0 +2015,Table 2.1,BZ,16,itemized_real_estate_tax_deductions,All,25000.0,30000.0,False,False,False,2261238000.0 +2015,Table 2.1,BY,16,itemized_real_estate_tax_deductions,All,25000.0,30000.0,True,False,False,689101.0 +2015,Table 2.1,BT,16,state_and_local_tax_deductions,All,25000.0,30000.0,False,False,False,1167016000.0 +2015,Table 2.1,BS,16,state_and_local_tax_deductions,All,25000.0,30000.0,True,False,False,985616.0 +2015,Table 2.1,BR,16,itemized_taxes_paid_deductions,All,25000.0,30000.0,False,False,False,3612496000.0 +2015,Table 2.1,BQ,16,itemized_taxes_paid_deductions,All,25000.0,30000.0,True,False,False,1055485.0 +2015,Table 2.1,CT,17,charitable_contributions_deductions,All,30000.0,35000.0,False,False,False,2231311000.0 +2015,Table 2.1,CS,17,charitable_contributions_deductions,All,30000.0,35000.0,True,False,False,845049.0 +2015,Table 2.1,BX,17,itemized_general_sales_tax_deduction,All,30000.0,35000.0,False,False,False,403013000.0 +2015,Table 2.1,BW,17,itemized_general_sales_tax_deduction,All,30000.0,35000.0,True,False,False,409050.0 +2015,Table 2.1,CF,17,interest_paid_deductions,All,30000.0,35000.0,False,False,False,4214763000.0 +2015,Table 2.1,CE,17,interest_paid_deductions,All,30000.0,35000.0,True,False,False,666457.0 +2015,Table 2.1,BL,17,medical_expense_deductions_capped,All,30000.0,35000.0,False,False,False,4039786000.0 +2015,Table 2.1,BK,17,medical_expense_deductions_capped,All,30000.0,35000.0,True,False,False,462326.0 +2015,Table 2.1,BN,17,medical_expense_deductions_uncapped,All,30000.0,35000.0,False,False,False,5344248000.0 +2015,Table 2.1,BM,17,medical_expense_deductions_uncapped,All,30000.0,35000.0,True,False,False,462326.0 +2015,Table 2.1,CH,17,mortgage_interest_deductions,All,30000.0,35000.0,False,False,False,3946351000.0 +2015,Table 2.1,CG,17,mortgage_interest_deductions,All,30000.0,35000.0,True,False,False,654008.0 +2015,Table 2.1,BV,17,itemized_state_income_tax_deductions,All,30000.0,35000.0,False,False,False,1041293000.0 +2015,Table 2.1,BU,17,itemized_state_income_tax_deductions,All,30000.0,35000.0,True,False,False,693840.0 +2015,Table 2.1,BZ,17,itemized_real_estate_tax_deductions,All,30000.0,35000.0,False,False,False,2593568000.0 +2015,Table 2.1,BY,17,itemized_real_estate_tax_deductions,All,30000.0,35000.0,True,False,False,810615.0 +2015,Table 2.1,BT,17,state_and_local_tax_deductions,All,30000.0,35000.0,False,False,False,1444306000.0 +2015,Table 2.1,BS,17,state_and_local_tax_deductions,All,30000.0,35000.0,True,False,False,1102890.0 +2015,Table 2.1,BR,17,itemized_taxes_paid_deductions,All,30000.0,35000.0,False,False,False,4280465000.0 +2015,Table 2.1,BQ,17,itemized_taxes_paid_deductions,All,30000.0,35000.0,True,False,False,1172960.0 +2015,Table 2.1,CT,18,charitable_contributions_deductions,All,35000.0,40000.0,False,False,False,2750188000.0 +2015,Table 2.1,CS,18,charitable_contributions_deductions,All,35000.0,40000.0,True,False,False,982127.0 +2015,Table 2.1,BX,18,itemized_general_sales_tax_deduction,All,35000.0,40000.0,False,False,False,440235000.0 +2015,Table 2.1,BW,18,itemized_general_sales_tax_deduction,All,35000.0,40000.0,True,False,False,372727.0 +2015,Table 2.1,CF,18,interest_paid_deductions,All,35000.0,40000.0,False,False,False,5435778000.0 +2015,Table 2.1,CE,18,interest_paid_deductions,All,35000.0,40000.0,True,False,False,841538.0 +2015,Table 2.1,BL,18,medical_expense_deductions_capped,All,35000.0,40000.0,False,False,False,4079939000.0 +2015,Table 2.1,BK,18,medical_expense_deductions_capped,All,35000.0,40000.0,True,False,False,457498.0 +2015,Table 2.1,BN,18,medical_expense_deductions_uncapped,All,35000.0,40000.0,False,False,False,5585290000.0 +2015,Table 2.1,BM,18,medical_expense_deductions_uncapped,All,35000.0,40000.0,True,False,False,457498.0 +2015,Table 2.1,CH,18,mortgage_interest_deductions,All,35000.0,40000.0,False,False,False,5122692000.0 +2015,Table 2.1,CG,18,mortgage_interest_deductions,All,35000.0,40000.0,True,False,False,830762.0 +2015,Table 2.1,BV,18,itemized_state_income_tax_deductions,All,35000.0,40000.0,False,False,False,1511583000.0 +2015,Table 2.1,BU,18,itemized_state_income_tax_deductions,All,35000.0,40000.0,True,False,False,899962.0 +2015,Table 2.1,BZ,18,itemized_real_estate_tax_deductions,All,35000.0,40000.0,False,False,False,3149207000.0 +2015,Table 2.1,BY,18,itemized_real_estate_tax_deductions,All,35000.0,40000.0,True,False,False,974691.0 +2015,Table 2.1,BT,18,state_and_local_tax_deductions,All,35000.0,40000.0,False,False,False,1951818000.0 +2015,Table 2.1,BS,18,state_and_local_tax_deductions,All,35000.0,40000.0,True,False,False,1272689.0 +2015,Table 2.1,BR,18,itemized_taxes_paid_deductions,All,35000.0,40000.0,False,False,False,5378442000.0 +2015,Table 2.1,BQ,18,itemized_taxes_paid_deductions,All,35000.0,40000.0,True,False,False,1348557.0 +2015,Table 2.1,CT,19,charitable_contributions_deductions,All,40000.0,45000.0,False,False,False,3230088000.0 +2015,Table 2.1,CS,19,charitable_contributions_deductions,All,40000.0,45000.0,True,False,False,1073843.0 +2015,Table 2.1,BX,19,itemized_general_sales_tax_deduction,All,40000.0,45000.0,False,False,False,490661000.0 +2015,Table 2.1,BW,19,itemized_general_sales_tax_deduction,All,40000.0,45000.0,True,False,False,411600.0 +2015,Table 2.1,CF,19,interest_paid_deductions,All,40000.0,45000.0,False,False,False,6009927000.0 +2015,Table 2.1,CE,19,interest_paid_deductions,All,40000.0,45000.0,True,False,False,948445.0 +2015,Table 2.1,BL,19,medical_expense_deductions_capped,All,40000.0,45000.0,False,False,False,3972063000.0 +2015,Table 2.1,BK,19,medical_expense_deductions_capped,All,40000.0,45000.0,True,False,False,452333.0 +2015,Table 2.1,BN,19,medical_expense_deductions_uncapped,All,40000.0,45000.0,False,False,False,5649836000.0 +2015,Table 2.1,BM,19,medical_expense_deductions_uncapped,All,40000.0,45000.0,True,False,False,452333.0 +2015,Table 2.1,CH,19,mortgage_interest_deductions,All,40000.0,45000.0,False,False,False,5651139000.0 +2015,Table 2.1,CG,19,mortgage_interest_deductions,All,40000.0,45000.0,True,False,False,939209.0 +2015,Table 2.1,BV,19,itemized_state_income_tax_deductions,All,40000.0,45000.0,False,False,False,1985224000.0 +2015,Table 2.1,BU,19,itemized_state_income_tax_deductions,All,40000.0,45000.0,True,False,False,955900.0 +2015,Table 2.1,BZ,19,itemized_real_estate_tax_deductions,All,40000.0,45000.0,False,False,False,3272842000.0 +2015,Table 2.1,BY,19,itemized_real_estate_tax_deductions,All,40000.0,45000.0,True,False,False,1069338.0 +2015,Table 2.1,BT,19,state_and_local_tax_deductions,All,40000.0,45000.0,False,False,False,2475885000.0 +2015,Table 2.1,BS,19,state_and_local_tax_deductions,All,40000.0,45000.0,True,False,False,1367500.0 +2015,Table 2.1,BR,19,itemized_taxes_paid_deductions,All,40000.0,45000.0,False,False,False,6020858000.0 +2015,Table 2.1,BQ,19,itemized_taxes_paid_deductions,All,40000.0,45000.0,True,False,False,1433569.0 +2015,Table 2.1,CT,20,charitable_contributions_deductions,All,45000.0,50000.0,False,False,False,3163725000.0 +2015,Table 2.1,CS,20,charitable_contributions_deductions,All,45000.0,50000.0,True,False,False,1130376.0 +2015,Table 2.1,BX,20,itemized_general_sales_tax_deduction,All,45000.0,50000.0,False,False,False,468137000.0 +2015,Table 2.1,BW,20,itemized_general_sales_tax_deduction,All,45000.0,50000.0,True,False,False,391616.0 +2015,Table 2.1,CF,20,interest_paid_deductions,All,45000.0,50000.0,False,False,False,6888540000.0 +2015,Table 2.1,CE,20,interest_paid_deductions,All,45000.0,50000.0,True,False,False,1043221.0 +2015,Table 2.1,BL,20,medical_expense_deductions_capped,All,45000.0,50000.0,False,False,False,3375631000.0 +2015,Table 2.1,BK,20,medical_expense_deductions_capped,All,45000.0,50000.0,True,False,False,390758.0 +2015,Table 2.1,BN,20,medical_expense_deductions_uncapped,All,45000.0,50000.0,False,False,False,5000049000.0 +2015,Table 2.1,BM,20,medical_expense_deductions_uncapped,All,45000.0,50000.0,True,False,False,390758.0 +2015,Table 2.1,CH,20,mortgage_interest_deductions,All,45000.0,50000.0,False,False,False,6411648000.0 +2015,Table 2.1,CG,20,mortgage_interest_deductions,All,45000.0,50000.0,True,False,False,1036215.0 +2015,Table 2.1,BV,20,itemized_state_income_tax_deductions,All,45000.0,50000.0,False,False,False,2305387000.0 +2015,Table 2.1,BU,20,itemized_state_income_tax_deductions,All,45000.0,50000.0,True,False,False,1049616.0 +2015,Table 2.1,BZ,20,itemized_real_estate_tax_deductions,All,45000.0,50000.0,False,False,False,3506541000.0 +2015,Table 2.1,BY,20,itemized_real_estate_tax_deductions,All,45000.0,50000.0,True,False,False,1168152.0 +2015,Table 2.1,BT,20,state_and_local_tax_deductions,All,45000.0,50000.0,False,False,False,2773525000.0 +2015,Table 2.1,BS,20,state_and_local_tax_deductions,All,45000.0,50000.0,True,False,False,1441232.0 +2015,Table 2.1,BR,20,itemized_taxes_paid_deductions,All,45000.0,50000.0,False,False,False,6570716000.0 +2015,Table 2.1,BQ,20,itemized_taxes_paid_deductions,All,45000.0,50000.0,True,False,False,1508367.0 +2015,Table 2.1,CT,21,charitable_contributions_deductions,All,50000.0,55000.0,False,False,False,3413481000.0 +2015,Table 2.1,CS,21,charitable_contributions_deductions,All,50000.0,55000.0,True,False,False,1184881.0 +2015,Table 2.1,BX,21,itemized_general_sales_tax_deduction,All,50000.0,55000.0,False,False,False,473215000.0 +2015,Table 2.1,BW,21,itemized_general_sales_tax_deduction,All,50000.0,55000.0,True,False,False,355135.0 +2015,Table 2.1,CF,21,interest_paid_deductions,All,50000.0,55000.0,False,False,False,6955789000.0 +2015,Table 2.1,CE,21,interest_paid_deductions,All,50000.0,55000.0,True,False,False,1073182.0 +2015,Table 2.1,BL,21,medical_expense_deductions_capped,All,50000.0,55000.0,False,False,False,3696461000.0 +2015,Table 2.1,BK,21,medical_expense_deductions_capped,All,50000.0,55000.0,True,False,False,404991.0 +2015,Table 2.1,BN,21,medical_expense_deductions_uncapped,All,50000.0,55000.0,False,False,False,5553125000.0 +2015,Table 2.1,BM,21,medical_expense_deductions_uncapped,All,50000.0,55000.0,True,False,False,404991.0 +2015,Table 2.1,CH,21,mortgage_interest_deductions,All,50000.0,55000.0,False,False,False,6543517000.0 +2015,Table 2.1,CG,21,mortgage_interest_deductions,All,50000.0,55000.0,True,False,False,1064122.0 +2015,Table 2.1,BV,21,itemized_state_income_tax_deductions,All,50000.0,55000.0,False,False,False,2749265000.0 +2015,Table 2.1,BU,21,itemized_state_income_tax_deductions,All,50000.0,55000.0,True,False,False,1103076.0 +2015,Table 2.1,BZ,21,itemized_real_estate_tax_deductions,All,50000.0,55000.0,False,False,False,3703059000.0 +2015,Table 2.1,BY,21,itemized_real_estate_tax_deductions,All,50000.0,55000.0,True,False,False,1190018.0 +2015,Table 2.1,BT,21,state_and_local_tax_deductions,All,50000.0,55000.0,False,False,False,3222481000.0 +2015,Table 2.1,BS,21,state_and_local_tax_deductions,All,50000.0,55000.0,True,False,False,1458211.0 +2015,Table 2.1,BR,21,itemized_taxes_paid_deductions,All,50000.0,55000.0,False,False,False,7333689000.0 +2015,Table 2.1,BQ,21,itemized_taxes_paid_deductions,All,50000.0,55000.0,True,False,False,1513839.0 +2015,Table 2.1,CT,22,charitable_contributions_deductions,All,55000.0,60000.0,False,False,False,3461286000.0 +2015,Table 2.1,CS,22,charitable_contributions_deductions,All,55000.0,60000.0,True,False,False,1223037.0 +2015,Table 2.1,BX,22,itemized_general_sales_tax_deduction,All,55000.0,60000.0,False,False,False,461612000.0 +2015,Table 2.1,BW,22,itemized_general_sales_tax_deduction,All,55000.0,60000.0,True,False,False,360318.0 +2015,Table 2.1,CF,22,interest_paid_deductions,All,55000.0,60000.0,False,False,False,7424513000.0 +2015,Table 2.1,CE,22,interest_paid_deductions,All,55000.0,60000.0,True,False,False,1130318.0 +2015,Table 2.1,BL,22,medical_expense_deductions_capped,All,55000.0,60000.0,False,False,False,3889988000.0 +2015,Table 2.1,BK,22,medical_expense_deductions_capped,All,55000.0,60000.0,True,False,False,423434.0 +2015,Table 2.1,BN,22,medical_expense_deductions_uncapped,All,55000.0,60000.0,False,False,False,6003880000.0 +2015,Table 2.1,BM,22,medical_expense_deductions_uncapped,All,55000.0,60000.0,True,False,False,423434.0 +2015,Table 2.1,CH,22,mortgage_interest_deductions,All,55000.0,60000.0,False,False,False,6985554000.0 +2015,Table 2.1,CG,22,mortgage_interest_deductions,All,55000.0,60000.0,True,False,False,1119573.0 +2015,Table 2.1,BV,22,itemized_state_income_tax_deductions,All,55000.0,60000.0,False,False,False,3107467000.0 +2015,Table 2.1,BU,22,itemized_state_income_tax_deductions,All,55000.0,60000.0,True,False,False,1126872.0 +2015,Table 2.1,BZ,22,itemized_real_estate_tax_deductions,All,55000.0,60000.0,False,False,False,4220038000.0 +2015,Table 2.1,BY,22,itemized_real_estate_tax_deductions,All,55000.0,60000.0,True,False,False,1265965.0 +2015,Table 2.1,BT,22,state_and_local_tax_deductions,All,55000.0,60000.0,False,False,False,3569080000.0 +2015,Table 2.1,BS,22,state_and_local_tax_deductions,All,55000.0,60000.0,True,False,False,1487190.0 +2015,Table 2.1,BR,22,itemized_taxes_paid_deductions,All,55000.0,60000.0,False,False,False,8121461000.0 +2015,Table 2.1,BQ,22,itemized_taxes_paid_deductions,All,55000.0,60000.0,True,False,False,1531024.0 +2015,Table 2.1,CT,23,charitable_contributions_deductions,All,60000.0,75000.0,False,False,False,10907307000.0 +2015,Table 2.1,CS,23,charitable_contributions_deductions,All,60000.0,75000.0,True,False,False,3490689.0 +2015,Table 2.1,BX,23,itemized_general_sales_tax_deduction,All,60000.0,75000.0,False,False,False,1451762000.0 +2015,Table 2.1,BW,23,itemized_general_sales_tax_deduction,All,60000.0,75000.0,True,False,False,956422.0 +2015,Table 2.1,CF,23,interest_paid_deductions,All,60000.0,75000.0,False,False,False,23294604000.0 +2015,Table 2.1,CE,23,interest_paid_deductions,All,60000.0,75000.0,True,False,False,3249632.0 +2015,Table 2.1,BL,23,medical_expense_deductions_capped,All,60000.0,75000.0,False,False,False,9137304000.0 +2015,Table 2.1,BK,23,medical_expense_deductions_capped,All,60000.0,75000.0,True,False,False,992870.0 +2015,Table 2.1,BN,23,medical_expense_deductions_uncapped,All,60000.0,75000.0,False,False,False,14889171000.0 +2015,Table 2.1,BM,23,medical_expense_deductions_uncapped,All,60000.0,75000.0,True,False,False,992870.0 +2015,Table 2.1,CH,23,mortgage_interest_deductions,All,60000.0,75000.0,False,False,False,21825640000.0 +2015,Table 2.1,CG,23,mortgage_interest_deductions,All,60000.0,75000.0,True,False,False,3210259.0 +2015,Table 2.1,BV,23,itemized_state_income_tax_deductions,All,60000.0,75000.0,False,False,False,10587597000.0 +2015,Table 2.1,BU,23,itemized_state_income_tax_deductions,All,60000.0,75000.0,True,False,False,3290380.0 +2015,Table 2.1,BZ,23,itemized_real_estate_tax_deductions,All,60000.0,75000.0,False,False,False,12521110000.0 +2015,Table 2.1,BY,23,itemized_real_estate_tax_deductions,All,60000.0,75000.0,True,False,False,3667656.0 +2015,Table 2.1,BT,23,state_and_local_tax_deductions,All,60000.0,75000.0,False,False,False,12039359000.0 +2015,Table 2.1,BS,23,state_and_local_tax_deductions,All,60000.0,75000.0,True,False,False,4246802.0 +2015,Table 2.1,BR,23,itemized_taxes_paid_deductions,All,60000.0,75000.0,False,False,False,25543705000.0 +2015,Table 2.1,BQ,23,itemized_taxes_paid_deductions,All,60000.0,75000.0,True,False,False,4408450.0 +2015,Table 2.1,CT,24,charitable_contributions_deductions,All,75000.0,100000.0,False,False,False,20349620000.0 +2015,Table 2.1,CS,24,charitable_contributions_deductions,All,75000.0,100000.0,True,False,False,5768411.0 +2015,Table 2.1,BX,24,itemized_general_sales_tax_deduction,All,75000.0,100000.0,False,False,False,2286745000.0 +2015,Table 2.1,BW,24,itemized_general_sales_tax_deduction,All,75000.0,100000.0,True,False,False,1238586.0 +2015,Table 2.1,CF,24,interest_paid_deductions,All,75000.0,100000.0,False,False,False,43398259000.0 +2015,Table 2.1,CE,24,interest_paid_deductions,All,75000.0,100000.0,True,False,False,5450663.0 +2015,Table 2.1,BL,24,medical_expense_deductions_capped,All,75000.0,100000.0,False,False,False,12672435000.0 +2015,Table 2.1,BK,24,medical_expense_deductions_capped,All,75000.0,100000.0,True,False,False,1222955.0 +2015,Table 2.1,BN,24,medical_expense_deductions_uncapped,All,75000.0,100000.0,False,False,False,21727339000.0 +2015,Table 2.1,BM,24,medical_expense_deductions_uncapped,All,75000.0,100000.0,True,False,False,1222955.0 +2015,Table 2.1,CH,24,mortgage_interest_deductions,All,75000.0,100000.0,False,False,False,40897449000.0 +2015,Table 2.1,CG,24,mortgage_interest_deductions,All,75000.0,100000.0,True,False,False,5392086.0 +2015,Table 2.1,BV,24,itemized_state_income_tax_deductions,All,75000.0,100000.0,False,False,False,23415401000.0 +2015,Table 2.1,BU,24,itemized_state_income_tax_deductions,All,75000.0,100000.0,True,False,False,5511568.0 +2015,Table 2.1,BZ,24,itemized_real_estate_tax_deductions,All,75000.0,100000.0,False,False,False,22612411000.0 +2015,Table 2.1,BY,24,itemized_real_estate_tax_deductions,All,75000.0,100000.0,True,False,False,6008425.0 +2015,Table 2.1,BT,24,state_and_local_tax_deductions,All,75000.0,100000.0,False,False,False,25702146000.0 +2015,Table 2.1,BS,24,state_and_local_tax_deductions,All,75000.0,100000.0,True,False,False,6750154.0 +2015,Table 2.1,BR,24,itemized_taxes_paid_deductions,All,75000.0,100000.0,False,False,False,49969183000.0 +2015,Table 2.1,BQ,24,itemized_taxes_paid_deductions,All,75000.0,100000.0,True,False,False,6930059.0 +2015,Table 2.1,CT,25,charitable_contributions_deductions,All,100000.0,200000.0,False,False,False,51469427000.0 +2015,Table 2.1,CS,25,charitable_contributions_deductions,All,100000.0,200000.0,True,False,False,12289353.0 +2015,Table 2.1,BX,25,itemized_general_sales_tax_deduction,All,100000.0,200000.0,False,False,False,5271602000.0 +2015,Table 2.1,BW,25,itemized_general_sales_tax_deduction,All,100000.0,200000.0,True,False,False,2153784.0 +2015,Table 2.1,CF,25,interest_paid_deductions,All,100000.0,200000.0,False,False,False,104846625000.0 +2015,Table 2.1,CE,25,interest_paid_deductions,All,100000.0,200000.0,True,False,False,11629322.0 +2015,Table 2.1,BL,25,medical_expense_deductions_capped,All,100000.0,200000.0,False,False,False,14963159000.0 +2015,Table 2.1,BK,25,medical_expense_deductions_capped,All,100000.0,200000.0,True,False,False,1306677.0 +2015,Table 2.1,BN,25,medical_expense_deductions_uncapped,All,100000.0,200000.0,False,False,False,29283649000.0 +2015,Table 2.1,BM,25,medical_expense_deductions_uncapped,All,100000.0,200000.0,True,False,False,1306677.0 +2015,Table 2.1,CH,25,mortgage_interest_deductions,All,100000.0,200000.0,False,False,False,103319155000.0 +2015,Table 2.1,CG,25,mortgage_interest_deductions,All,100000.0,200000.0,True,False,False,11482206.0 +2015,Table 2.1,BV,25,itemized_state_income_tax_deductions,All,100000.0,200000.0,False,False,False,82897472000.0 +2015,Table 2.1,BU,25,itemized_state_income_tax_deductions,All,100000.0,200000.0,True,False,False,11533393.0 +2015,Table 2.1,BZ,25,itemized_real_estate_tax_deductions,All,100000.0,200000.0,False,False,False,63372425000.0 +2015,Table 2.1,BY,25,itemized_real_estate_tax_deductions,All,100000.0,200000.0,True,False,False,12792762.0 +2015,Table 2.1,BT,25,state_and_local_tax_deductions,All,100000.0,200000.0,False,False,False,88169074000.0 +2015,Table 2.1,BS,25,state_and_local_tax_deductions,All,100000.0,200000.0,True,False,False,13687177.0 +2015,Table 2.1,BR,25,itemized_taxes_paid_deductions,All,100000.0,200000.0,False,False,False,155473408000.0 +2015,Table 2.1,BQ,25,itemized_taxes_paid_deductions,All,100000.0,200000.0,True,False,False,14013820.0 +2015,Table 2.1,CT,26,charitable_contributions_deductions,All,200000.0,500000.0,False,False,False,34721825000.0 +2015,Table 2.1,CS,26,charitable_contributions_deductions,All,200000.0,500000.0,True,False,False,4648589.0 +2015,Table 2.1,BX,26,itemized_general_sales_tax_deduction,All,200000.0,500000.0,False,False,False,2841962000.0 +2015,Table 2.1,BW,26,itemized_general_sales_tax_deduction,All,200000.0,500000.0,True,False,False,783747.0 +2015,Table 2.1,CF,26,interest_paid_deductions,All,200000.0,500000.0,False,False,False,53562301000.0 +2015,Table 2.1,CE,26,interest_paid_deductions,All,200000.0,500000.0,True,False,False,4106793.0 +2015,Table 2.1,BL,26,medical_expense_deductions_capped,All,200000.0,500000.0,False,False,False,3896808000.0 +2015,Table 2.1,BK,26,medical_expense_deductions_capped,All,200000.0,500000.0,True,False,False,159468.0 +2015,Table 2.1,BN,26,medical_expense_deductions_uncapped,All,200000.0,500000.0,False,False,False,7318921000.0 +2015,Table 2.1,BM,26,medical_expense_deductions_uncapped,All,200000.0,500000.0,True,False,False,159468.0 +2015,Table 2.1,CH,26,mortgage_interest_deductions,All,200000.0,500000.0,False,False,False,51606382000.0 +2015,Table 2.1,CG,26,mortgage_interest_deductions,All,200000.0,500000.0,True,False,False,3988588.0 +2015,Table 2.1,BV,26,itemized_state_income_tax_deductions,All,200000.0,500000.0,False,False,False,72653258000.0 +2015,Table 2.1,BU,26,itemized_state_income_tax_deductions,All,200000.0,500000.0,True,False,False,4212361.0 +2015,Table 2.1,BZ,26,itemized_real_estate_tax_deductions,All,200000.0,500000.0,False,False,False,38337098000.0 +2015,Table 2.1,BY,26,itemized_real_estate_tax_deductions,All,200000.0,500000.0,True,False,False,4680598.0 +2015,Table 2.1,BT,26,state_and_local_tax_deductions,All,200000.0,500000.0,False,False,False,75495221000.0 +2015,Table 2.1,BS,26,state_and_local_tax_deductions,All,200000.0,500000.0,True,False,False,4996108.0 +2015,Table 2.1,BR,26,itemized_taxes_paid_deductions,All,200000.0,500000.0,False,False,False,115531174000.0 +2015,Table 2.1,BQ,26,itemized_taxes_paid_deductions,All,200000.0,500000.0,True,False,False,5078493.0 +2015,Table 2.1,CT,27,charitable_contributions_deductions,All,500000.0,1000000.0,False,False,False,13976256000.0 +2015,Table 2.1,CS,27,charitable_contributions_deductions,All,500000.0,1000000.0,True,False,False,772491.0 +2015,Table 2.1,BX,27,itemized_general_sales_tax_deduction,All,500000.0,1000000.0,False,False,False,633305000.0 +2015,Table 2.1,BW,27,itemized_general_sales_tax_deduction,All,500000.0,1000000.0,True,False,False,118949.0 +2015,Table 2.1,CF,27,interest_paid_deductions,All,500000.0,1000000.0,False,False,False,12836968000.0 +2015,Table 2.1,CE,27,interest_paid_deductions,All,500000.0,1000000.0,True,False,False,657620.0 +2015,Table 2.1,BL,27,medical_expense_deductions_capped,All,500000.0,1000000.0,False,False,False,565102000.0 +2015,Table 2.1,BK,27,medical_expense_deductions_capped,All,500000.0,1000000.0,True,False,False,7735.0 +2015,Table 2.1,BN,27,medical_expense_deductions_uncapped,All,500000.0,1000000.0,False,False,False,977355000.0 +2015,Table 2.1,BM,27,medical_expense_deductions_uncapped,All,500000.0,1000000.0,True,False,False,7735.0 +2015,Table 2.1,CH,27,mortgage_interest_deductions,All,500000.0,1000000.0,False,False,False,11335153000.0 +2015,Table 2.1,CG,27,mortgage_interest_deductions,All,500000.0,1000000.0,True,False,False,608613.0 +2015,Table 2.1,BV,27,itemized_state_income_tax_deductions,All,500000.0,1000000.0,False,False,False,32864770000.0 +2015,Table 2.1,BU,27,itemized_state_income_tax_deductions,All,500000.0,1000000.0,True,False,False,696445.0 +2015,Table 2.1,BZ,27,itemized_real_estate_tax_deductions,All,500000.0,1000000.0,False,False,False,10816724000.0 +2015,Table 2.1,BY,27,itemized_real_estate_tax_deductions,All,500000.0,1000000.0,True,False,False,773517.0 +2015,Table 2.1,BT,27,state_and_local_tax_deductions,All,500000.0,1000000.0,False,False,False,33498075000.0 +2015,Table 2.1,BS,27,state_and_local_tax_deductions,All,500000.0,1000000.0,True,False,False,815393.0 +2015,Table 2.1,BR,27,itemized_taxes_paid_deductions,All,500000.0,1000000.0,False,False,False,44741560000.0 +2015,Table 2.1,BQ,27,itemized_taxes_paid_deductions,All,500000.0,1000000.0,True,False,False,821083.0 +2015,Table 2.1,CT,28,charitable_contributions_deductions,All,1000000.0,1500000.0,False,False,False,6534530000.0 +2015,Table 2.1,CS,28,charitable_contributions_deductions,All,1000000.0,1500000.0,True,False,False,168980.0 +2015,Table 2.1,BX,28,itemized_general_sales_tax_deduction,All,1000000.0,1500000.0,False,False,False,207725000.0 +2015,Table 2.1,BW,28,itemized_general_sales_tax_deduction,All,1000000.0,1500000.0,True,False,False,23402.0 +2015,Table 2.1,CF,28,interest_paid_deductions,All,1000000.0,1500000.0,False,False,False,3505209000.0 +2015,Table 2.1,CE,28,interest_paid_deductions,All,1000000.0,1500000.0,True,False,False,137332.0 +2015,Table 2.1,BL,28,medical_expense_deductions_capped,All,1000000.0,1500000.0,False,False,False,110275000.0 +2015,Table 2.1,BK,28,medical_expense_deductions_capped,All,1000000.0,1500000.0,True,False,False,972.0 +2015,Table 2.1,BN,28,medical_expense_deductions_uncapped,All,1000000.0,1500000.0,False,False,False,201698000.0 +2015,Table 2.1,BM,28,medical_expense_deductions_uncapped,All,1000000.0,1500000.0,True,False,False,972.0 +2015,Table 2.1,CH,28,mortgage_interest_deductions,All,1000000.0,1500000.0,False,False,False,2559360000.0 +2015,Table 2.1,CG,28,mortgage_interest_deductions,All,1000000.0,1500000.0,True,False,False,119694.0 +2015,Table 2.1,BV,28,itemized_state_income_tax_deductions,All,1000000.0,1500000.0,False,False,False,14294115000.0 +2015,Table 2.1,BU,28,itemized_state_income_tax_deductions,All,1000000.0,1500000.0,True,False,False,152902.0 +2015,Table 2.1,BZ,28,itemized_real_estate_tax_deductions,All,1000000.0,1500000.0,False,False,False,3286406000.0 +2015,Table 2.1,BY,28,itemized_real_estate_tax_deductions,All,1000000.0,1500000.0,True,False,False,166703.0 +2015,Table 2.1,BT,28,state_and_local_tax_deductions,All,1000000.0,1500000.0,False,False,False,14501840000.0 +2015,Table 2.1,BS,28,state_and_local_tax_deductions,All,1000000.0,1500000.0,True,False,False,176304.0 +2015,Table 2.1,BR,28,itemized_taxes_paid_deductions,All,1000000.0,1500000.0,False,False,False,17925210000.0 +2015,Table 2.1,BQ,28,itemized_taxes_paid_deductions,All,1000000.0,1500000.0,True,False,False,177352.0 +2015,Table 2.1,CT,29,charitable_contributions_deductions,All,1500000.0,2000000.0,False,False,False,3856554000.0 +2015,Table 2.1,CS,29,charitable_contributions_deductions,All,1500000.0,2000000.0,True,False,False,68548.0 +2015,Table 2.1,BX,29,itemized_general_sales_tax_deduction,All,1500000.0,2000000.0,False,False,False,90099000.0 +2015,Table 2.1,BW,29,itemized_general_sales_tax_deduction,All,1500000.0,2000000.0,True,False,False,8828.0 +2015,Table 2.1,CF,29,interest_paid_deductions,All,1500000.0,2000000.0,False,False,False,1666807000.0 +2015,Table 2.1,CE,29,interest_paid_deductions,All,1500000.0,2000000.0,True,False,False,55881.0 +2015,Table 2.1,BL,29,medical_expense_deductions_capped,All,1500000.0,2000000.0,False,False,False,32909000.0 +2015,Table 2.1,BK,29,medical_expense_deductions_capped,All,1500000.0,2000000.0,True,False,False,301.0 +2015,Table 2.1,BN,29,medical_expense_deductions_uncapped,All,1500000.0,2000000.0,False,False,False,74403000.0 +2015,Table 2.1,BM,29,medical_expense_deductions_uncapped,All,1500000.0,2000000.0,True,False,False,301.0 +2015,Table 2.1,CH,29,mortgage_interest_deductions,All,1500000.0,2000000.0,False,False,False,1043154000.0 +2015,Table 2.1,CG,29,mortgage_interest_deductions,All,1500000.0,2000000.0,True,False,False,47055.0 +2015,Table 2.1,BV,29,itemized_state_income_tax_deductions,All,1500000.0,2000000.0,False,False,False,8670169000.0 +2015,Table 2.1,BU,29,itemized_state_income_tax_deductions,All,1500000.0,2000000.0,True,False,False,62412.0 +2015,Table 2.1,BZ,29,itemized_real_estate_tax_deductions,All,1500000.0,2000000.0,False,False,False,1649775000.0 +2015,Table 2.1,BY,29,itemized_real_estate_tax_deductions,All,1500000.0,2000000.0,True,False,False,67912.0 +2015,Table 2.1,BT,29,state_and_local_tax_deductions,All,1500000.0,2000000.0,False,False,False,8760268000.0 +2015,Table 2.1,BS,29,state_and_local_tax_deductions,All,1500000.0,2000000.0,True,False,False,71240.0 +2015,Table 2.1,BR,29,itemized_taxes_paid_deductions,All,1500000.0,2000000.0,False,False,False,10477365000.0 +2015,Table 2.1,BQ,29,itemized_taxes_paid_deductions,All,1500000.0,2000000.0,True,False,False,71618.0 +2015,Table 2.1,CT,30,charitable_contributions_deductions,All,2000000.0,5000000.0,False,False,False,11066495000.0 +2015,Table 2.1,CS,30,charitable_contributions_deductions,All,2000000.0,5000000.0,True,False,False,102964.0 +2015,Table 2.1,BX,30,itemized_general_sales_tax_deduction,All,2000000.0,5000000.0,False,False,False,216404000.0 +2015,Table 2.1,BW,30,itemized_general_sales_tax_deduction,All,2000000.0,5000000.0,True,False,False,12503.0 +2015,Table 2.1,CF,30,interest_paid_deductions,All,2000000.0,5000000.0,False,False,False,3412493000.0 +2015,Table 2.1,CE,30,interest_paid_deductions,All,2000000.0,5000000.0,True,False,False,84234.0 +2015,Table 2.1,BL,30,medical_expense_deductions_capped,All,2000000.0,5000000.0,False,False,False,36553000.0 +2015,Table 2.1,BK,30,medical_expense_deductions_capped,All,2000000.0,5000000.0,True,False,False,242.0 +2015,Table 2.1,BN,30,medical_expense_deductions_uncapped,All,2000000.0,5000000.0,False,False,False,83393000.0 +2015,Table 2.1,BM,30,medical_expense_deductions_uncapped,All,2000000.0,5000000.0,True,False,False,242.0 +2015,Table 2.1,CH,30,mortgage_interest_deductions,All,2000000.0,5000000.0,False,False,False,1521570000.0 +2015,Table 2.1,CG,30,mortgage_interest_deductions,All,2000000.0,5000000.0,True,False,False,65385.0 +2015,Table 2.1,BV,30,itemized_state_income_tax_deductions,All,2000000.0,5000000.0,False,False,False,23164930000.0 +2015,Table 2.1,BU,30,itemized_state_income_tax_deductions,All,2000000.0,5000000.0,True,False,False,93602.0 +2015,Table 2.1,BZ,30,itemized_real_estate_tax_deductions,All,2000000.0,5000000.0,False,False,False,3177001000.0 +2015,Table 2.1,BY,30,itemized_real_estate_tax_deductions,All,2000000.0,5000000.0,True,False,False,100774.0 +2015,Table 2.1,BT,30,state_and_local_tax_deductions,All,2000000.0,5000000.0,False,False,False,23381334000.0 +2015,Table 2.1,BS,30,state_and_local_tax_deductions,All,2000000.0,5000000.0,True,False,False,106105.0 +2015,Table 2.1,BR,30,itemized_taxes_paid_deductions,All,2000000.0,5000000.0,False,False,False,26710615000.0 +2015,Table 2.1,BQ,30,itemized_taxes_paid_deductions,All,2000000.0,5000000.0,True,False,False,106564.0 +2015,Table 2.1,CT,31,charitable_contributions_deductions,All,5000000.0,10000000.0,False,False,False,7610740000.0 +2015,Table 2.1,CS,31,charitable_contributions_deductions,All,5000000.0,10000000.0,True,False,False,26315.0 +2015,Table 2.1,BX,31,itemized_general_sales_tax_deduction,All,5000000.0,10000000.0,False,False,False,107886000.0 +2015,Table 2.1,BW,31,itemized_general_sales_tax_deduction,All,5000000.0,10000000.0,True,False,False,3184.0 +2015,Table 2.1,CF,31,interest_paid_deductions,All,5000000.0,10000000.0,False,False,False,1535736000.0 +2015,Table 2.1,CE,31,interest_paid_deductions,All,5000000.0,10000000.0,True,False,False,21758.0 +2015,Table 2.1,BL,31,medical_expense_deductions_capped,All,5000000.0,10000000.0,False,False,False,8477000.0 +2015,Table 2.1,BK,31,medical_expense_deductions_capped,All,5000000.0,10000000.0,True,False,False,22.0 +2015,Table 2.1,BN,31,medical_expense_deductions_uncapped,All,5000000.0,10000000.0,False,False,False,18999000.0 +2015,Table 2.1,BM,31,medical_expense_deductions_uncapped,All,5000000.0,10000000.0,True,False,False,22.0 +2015,Table 2.1,CH,31,mortgage_interest_deductions,All,5000000.0,10000000.0,False,False,False,360807000.0 +2015,Table 2.1,CG,31,mortgage_interest_deductions,All,5000000.0,10000000.0,True,False,False,15000.0 +2015,Table 2.1,BV,31,itemized_state_income_tax_deductions,All,5000000.0,10000000.0,False,False,False,13447411000.0 +2015,Table 2.1,BU,31,itemized_state_income_tax_deductions,All,5000000.0,10000000.0,True,False,False,23772.0 +2015,Table 2.1,BZ,31,itemized_real_estate_tax_deductions,All,5000000.0,10000000.0,False,False,False,1218981000.0 +2015,Table 2.1,BY,31,itemized_real_estate_tax_deductions,All,5000000.0,10000000.0,True,False,False,25647.0 +2015,Table 2.1,BT,31,state_and_local_tax_deductions,All,5000000.0,10000000.0,False,False,False,13555298000.0 +2015,Table 2.1,BS,31,state_and_local_tax_deductions,All,5000000.0,10000000.0,True,False,False,26956.0 +2015,Table 2.1,BR,31,itemized_taxes_paid_deductions,All,5000000.0,10000000.0,False,False,False,14830289000.0 +2015,Table 2.1,BQ,31,itemized_taxes_paid_deductions,All,5000000.0,10000000.0,True,False,False,27086.0 +2015,Table 2.1,CT,32,charitable_contributions_deductions,All,10000000.0,inf,False,False,False,36938122000.0 +2015,Table 2.1,CS,32,charitable_contributions_deductions,All,10000000.0,inf,True,False,False,17133.0 +2015,Table 2.1,BX,32,itemized_general_sales_tax_deduction,All,10000000.0,inf,False,False,False,302960000.0 +2015,Table 2.1,BW,32,itemized_general_sales_tax_deduction,All,10000000.0,inf,True,False,False,1957.0 +2015,Table 2.1,CF,32,interest_paid_deductions,All,10000000.0,inf,False,False,False,5178966000.0 +2015,Table 2.1,CE,32,interest_paid_deductions,All,10000000.0,inf,True,False,False,14548.0 +2015,Table 2.1,BL,32,medical_expense_deductions_capped,All,10000000.0,inf,False,False,False,0.0 +2015,Table 2.1,BK,32,medical_expense_deductions_capped,All,10000000.0,inf,True,False,False,0.0 +2015,Table 2.1,BN,32,medical_expense_deductions_uncapped,All,10000000.0,inf,False,False,False,0.0 +2015,Table 2.1,BM,32,medical_expense_deductions_uncapped,All,10000000.0,inf,True,False,False,0.0 +2015,Table 2.1,CH,32,mortgage_interest_deductions,All,10000000.0,inf,False,False,False,205431000.0 +2015,Table 2.1,CG,32,mortgage_interest_deductions,All,10000000.0,inf,True,False,False,8316.0 +2015,Table 2.1,BV,32,itemized_state_income_tax_deductions,All,10000000.0,inf,False,False,False,38108401000.0 +2015,Table 2.1,BU,32,itemized_state_income_tax_deductions,All,10000000.0,inf,True,False,False,15419.0 +2015,Table 2.1,BZ,32,itemized_real_estate_tax_deductions,All,10000000.0,inf,False,False,False,1475443000.0 +2015,Table 2.1,BY,32,itemized_real_estate_tax_deductions,All,10000000.0,inf,True,False,False,16663.0 +2015,Table 2.1,BT,32,state_and_local_tax_deductions,All,10000000.0,inf,False,False,False,38411360000.0 +2015,Table 2.1,BS,32,state_and_local_tax_deductions,All,10000000.0,inf,True,False,False,17376.0 +2015,Table 2.1,BR,32,itemized_taxes_paid_deductions,All,10000000.0,inf,False,False,False,40008857000.0 +2015,Table 2.1,BQ,32,itemized_taxes_paid_deductions,All,10000000.0,inf,True,False,False,17449.0 +2021,Table 1.1,D,10,adjusted_gross_income,All,-inf,inf,False,False,True,14795614070000.0 +2021,Table 1.1,B,10,count,All,-inf,inf,True,False,True,160824340.0 +2021,Table 1.1,D,11,adjusted_gross_income,All,-inf,0.0,False,False,False,-171836364000.0 +2021,Table 1.1,B,11,count,All,-inf,0.0,True,False,False,4098522.0 +2021,Table 1.1,D,12,adjusted_gross_income,All,1.0,5000.0,False,False,False,19987243000.0 +2021,Table 1.1,B,12,count,All,1.0,5000.0,True,False,False,8487025.0 +2021,Table 1.1,D,13,adjusted_gross_income,All,5000.0,10000.0,False,False,False,67651359000.0 +2021,Table 1.1,B,13,count,All,5000.0,10000.0,True,False,False,8944908.0 +2021,Table 1.1,D,14,adjusted_gross_income,All,10000.0,15000.0,False,False,False,125912056000.0 +2021,Table 1.1,B,14,count,All,10000.0,15000.0,True,False,False,10056377.0 +2021,Table 1.1,D,15,adjusted_gross_income,All,15000.0,20000.0,False,False,False,170836129000.0 +2021,Table 1.1,B,15,count,All,15000.0,20000.0,True,False,False,9786580.0 +2021,Table 1.1,D,16,adjusted_gross_income,All,20000.0,25000.0,False,False,False,199508960000.0 +2021,Table 1.1,B,16,count,All,20000.0,25000.0,True,False,False,8863570.0 +2021,Table 1.1,D,17,adjusted_gross_income,All,25000.0,30000.0,False,False,False,241347179000.0 +2021,Table 1.1,B,17,count,All,25000.0,30000.0,True,False,False,8787576.0 +2021,Table 1.1,D,18,adjusted_gross_income,All,30000.0,40000.0,False,False,False,561386434000.0 +2021,Table 1.1,B,18,count,All,30000.0,40000.0,True,False,False,16123068.0 +2021,Table 1.1,D,19,adjusted_gross_income,All,40000.0,50000.0,False,False,False,573155378000.0 +2021,Table 1.1,B,19,count,All,40000.0,50000.0,True,False,False,12782334.0 +2021,Table 1.1,D,20,adjusted_gross_income,All,50000.0,75000.0,False,False,False,1392395599000.0 +2021,Table 1.1,B,20,count,All,50000.0,75000.0,True,False,False,22653934.0 +2021,Table 1.1,D,21,adjusted_gross_income,All,75000.0,100000.0,False,False,False,1271699391000.0 +2021,Table 1.1,B,21,count,All,75000.0,100000.0,True,False,False,14657726.0 +2021,Table 1.1,D,22,adjusted_gross_income,All,100000.0,200000.0,False,False,False,3297058075000.0 +2021,Table 1.1,B,22,count,All,100000.0,200000.0,True,False,False,24044481.0 +2021,Table 1.1,D,23,adjusted_gross_income,All,200000.0,500000.0,False,False,False,2619188471000.0 +2021,Table 1.1,B,23,count,All,200000.0,500000.0,True,False,False,9045567.0 +2021,Table 1.1,D,24,adjusted_gross_income,All,500000.0,1000000.0,False,False,False,1092599034000.0 +2021,Table 1.1,B,24,count,All,500000.0,1000000.0,True,False,False,1617144.0 +2021,Table 1.1,D,25,adjusted_gross_income,All,1000000.0,1500000.0,False,False,False,454552875000.0 +2021,Table 1.1,B,25,count,All,1000000.0,1500000.0,True,False,False,376859.0 +2021,Table 1.1,D,26,adjusted_gross_income,All,1500000.0,2000000.0,False,False,False,268278123000.0 +2021,Table 1.1,B,26,count,All,1500000.0,2000000.0,True,False,False,156020.0 +2021,Table 1.1,D,27,adjusted_gross_income,All,2000000.0,5000000.0,False,False,False,698923219000.0 +2021,Table 1.1,B,27,count,All,2000000.0,5000000.0,True,False,False,233838.0 +2021,Table 1.1,D,28,adjusted_gross_income,All,5000000.0,10000000.0,False,False,False,435242550000.0 +2021,Table 1.1,B,28,count,All,5000000.0,10000000.0,True,False,False,63406.0 +2021,Table 1.1,D,29,adjusted_gross_income,All,10000000.0,inf,False,False,False,1477728359000.0 +2021,Table 1.1,B,29,count,All,10000000.0,inf,True,False,False,45404.0 +2021,Table 1.2,AM,9,adjusted_gross_income,Head of Household,-inf,inf,False,False,False,1037010822000.0 +2021,Table 1.2,O,9,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,-inf,inf,False,False,False,9496757833000.0 +2021,Table 1.2,AA,9,adjusted_gross_income,Married Filing Separately,-inf,inf,False,False,False,349173490000.0 +2021,Table 1.2,AY,9,adjusted_gross_income,Single,-inf,inf,False,False,False,3912671925000.0 +2021,Table 1.2,AL,9,count,Head of Household,-inf,inf,True,False,False,21240317.0 +2021,Table 1.2,N,9,count,Married Filing Jointly/Surviving Spouse,-inf,inf,True,False,False,54248325.0 +2021,Table 1.2,Z,9,count,Married Filing Separately,-inf,inf,True,False,False,3912940.0 +2021,Table 1.2,AX,9,count,Single,-inf,inf,True,False,False,81422759.0 +2021,Table 1.2,E,9,itemized_deductions,All,-inf,inf,False,False,True,659680547000.0 +2021,Table 1.2,D,9,itemized_deductions,All,-inf,inf,True,False,True,14842685.0 +2021,Table 1.2,G,9,standard_deduction,All,-inf,inf,False,False,True,2506538615000.0 +2021,Table 1.2,F,9,standard_deduction,All,-inf,inf,True,False,True,141872935.0 +2021,Table 1.2,K,9,income_tax_after_credits,All,-inf,inf,False,False,True,2136650742000.0 +2021,Table 1.2,J,9,income_tax_after_credits,All,-inf,inf,True,False,True,104549808.0 +2021,Table 1.2,I,9,taxable_income,All,-inf,inf,False,False,True,11767185281000.0 +2021,Table 1.2,H,9,taxable_income,All,-inf,inf,True,False,True,128519569.0 +2021,Table 1.2,M,9,tottax,All,-inf,inf,False,False,True,2196348205000.0 +2021,Table 1.2,L,9,tottax,All,-inf,inf,True,False,True,104573768.0 +2021,Table 1.2,AM,10,adjusted_gross_income,Head of Household,-inf,0.0,False,False,False,-5663364000.0 +2021,Table 1.2,O,10,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,-inf,0.0,False,False,False,-104261187000.0 +2021,Table 1.2,AA,10,adjusted_gross_income,Married Filing Separately,-inf,0.0,False,False,False,-10308919000.0 +2021,Table 1.2,AY,10,adjusted_gross_income,Single,-inf,0.0,False,False,False,-51602893000.0 +2021,Table 1.2,AL,10,count,Head of Household,-inf,0.0,True,False,False,418044.0 +2021,Table 1.2,N,10,count,Married Filing Jointly/Surviving Spouse,-inf,0.0,True,False,False,706064.0 +2021,Table 1.2,Z,10,count,Married Filing Separately,-inf,0.0,True,False,False,123238.0 +2021,Table 1.2,AX,10,count,Single,-inf,0.0,True,False,False,2851176.0 +2021,Table 1.2,E,10,itemized_deductions,All,-inf,0.0,False,False,False,0.0 +2021,Table 1.2,D,10,itemized_deductions,All,-inf,0.0,True,False,False,0.0 +2021,Table 1.2,G,10,standard_deduction,All,-inf,0.0,False,False,False,0.0 +2021,Table 1.2,F,10,standard_deduction,All,-inf,0.0,True,False,False,0.0 +2021,Table 1.2,K,10,income_tax_after_credits,All,-inf,0.0,False,False,False,186617000.0 +2021,Table 1.2,J,10,income_tax_after_credits,All,-inf,0.0,True,False,False,4361.0 +2021,Table 1.2,I,10,taxable_income,All,-inf,0.0,False,False,False,0.0 +2021,Table 1.2,H,10,taxable_income,All,-inf,0.0,True,False,False,0.0 +2021,Table 1.2,M,10,tottax,All,-inf,0.0,False,False,False,186881000.0 +2021,Table 1.2,L,10,tottax,All,-inf,0.0,True,False,False,4367.0 +2021,Table 1.2,AM,11,adjusted_gross_income,Head of Household,1.0,5000.0,False,False,False,1500478000.0 +2021,Table 1.2,O,11,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,1.0,5000.0,False,False,False,1572736000.0 +2021,Table 1.2,AA,11,adjusted_gross_income,Married Filing Separately,1.0,5000.0,False,False,False,339626000.0 +2021,Table 1.2,AY,11,adjusted_gross_income,Single,1.0,5000.0,False,False,False,16574403000.0 +2021,Table 1.2,AL,11,count,Head of Household,1.0,5000.0,True,False,False,644578.0 +2021,Table 1.2,N,11,count,Married Filing Jointly/Surviving Spouse,1.0,5000.0,True,False,False,709447.0 +2021,Table 1.2,Z,11,count,Married Filing Separately,1.0,5000.0,True,False,False,154821.0 +2021,Table 1.2,AX,11,count,Single,1.0,5000.0,True,False,False,6978179.0 +2021,Table 1.2,E,11,itemized_deductions,All,1.0,5000.0,False,False,False,1871637000.0 +2021,Table 1.2,D,11,itemized_deductions,All,1.0,5000.0,True,False,False,80236.0 +2021,Table 1.2,G,11,standard_deduction,All,1.0,5000.0,False,False,False,98120053000.0 +2021,Table 1.2,F,11,standard_deduction,All,1.0,5000.0,True,False,False,8401693.0 +2021,Table 1.2,K,11,income_tax_after_credits,All,1.0,5000.0,False,False,False,73072000.0 +2021,Table 1.2,J,11,income_tax_after_credits,All,1.0,5000.0,True,False,False,142544.0 +2021,Table 1.2,I,11,taxable_income,All,1.0,5000.0,False,False,False,295328000.0 +2021,Table 1.2,H,11,taxable_income,All,1.0,5000.0,True,False,False,229950.0 +2021,Table 1.2,M,11,tottax,All,1.0,5000.0,False,False,False,73079000.0 +2021,Table 1.2,L,11,tottax,All,1.0,5000.0,True,False,False,142593.0 +2021,Table 1.2,AM,12,adjusted_gross_income,Head of Household,5000.0,10000.0,False,False,False,7050139000.0 +2021,Table 1.2,O,12,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,5000.0,10000.0,False,False,False,5618512000.0 +2021,Table 1.2,AA,12,adjusted_gross_income,Married Filing Separately,5000.0,10000.0,False,False,False,1052349000.0 +2021,Table 1.2,AY,12,adjusted_gross_income,Single,5000.0,10000.0,False,False,False,53930358000.0 +2021,Table 1.2,AL,12,count,Head of Household,5000.0,10000.0,True,False,False,905840.0 +2021,Table 1.2,N,12,count,Married Filing Jointly/Surviving Spouse,5000.0,10000.0,True,False,False,735637.0 +2021,Table 1.2,Z,12,count,Married Filing Separately,5000.0,10000.0,True,False,False,142096.0 +2021,Table 1.2,AX,12,count,Single,5000.0,10000.0,True,False,False,7161336.0 +2021,Table 1.2,E,12,itemized_deductions,All,5000.0,10000.0,False,False,False,2292492000.0 +2021,Table 1.2,D,12,itemized_deductions,All,5000.0,10000.0,True,False,False,93583.0 +2021,Table 1.2,G,12,standard_deduction,All,5000.0,10000.0,False,False,False,116961807000.0 +2021,Table 1.2,F,12,standard_deduction,All,5000.0,10000.0,True,False,False,8851325.0 +2021,Table 1.2,K,12,income_tax_after_credits,All,5000.0,10000.0,False,False,False,78223000.0 +2021,Table 1.2,J,12,income_tax_after_credits,All,5000.0,10000.0,True,False,False,184757.0 +2021,Table 1.2,I,12,taxable_income,All,5000.0,10000.0,False,False,False,842819000.0 +2021,Table 1.2,H,12,taxable_income,All,5000.0,10000.0,True,False,False,256332.0 +2021,Table 1.2,M,12,tottax,All,5000.0,10000.0,False,False,False,78223000.0 +2021,Table 1.2,L,12,tottax,All,5000.0,10000.0,True,False,False,184757.0 +2021,Table 1.2,AM,13,adjusted_gross_income,Head of Household,10000.0,15000.0,False,False,False,20151818000.0 +2021,Table 1.2,O,13,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,10000.0,15000.0,False,False,False,12030518000.0 +2021,Table 1.2,AA,13,adjusted_gross_income,Married Filing Separately,10000.0,15000.0,False,False,False,1980767000.0 +2021,Table 1.2,AY,13,adjusted_gross_income,Single,10000.0,15000.0,False,False,False,91748952000.0 +2021,Table 1.2,AL,13,count,Head of Household,10000.0,15000.0,True,False,False,1606806.0 +2021,Table 1.2,N,13,count,Married Filing Jointly/Surviving Spouse,10000.0,15000.0,True,False,False,954527.0 +2021,Table 1.2,Z,13,count,Married Filing Separately,10000.0,15000.0,True,False,False,157599.0 +2021,Table 1.2,AX,13,count,Single,10000.0,15000.0,True,False,False,7337444.0 +2021,Table 1.2,E,13,itemized_deductions,All,10000.0,15000.0,False,False,False,2804369000.0 +2021,Table 1.2,D,13,itemized_deductions,All,10000.0,15000.0,True,False,False,109149.0 +2021,Table 1.2,G,13,standard_deduction,All,10000.0,15000.0,False,False,False,148143828000.0 +2021,Table 1.2,F,13,standard_deduction,All,10000.0,15000.0,True,False,False,9946220.0 +2021,Table 1.2,K,13,income_tax_after_credits,All,10000.0,15000.0,False,False,False,211113000.0 +2021,Table 1.2,J,13,income_tax_after_credits,All,10000.0,15000.0,True,False,False,1055682.0 +2021,Table 1.2,I,13,taxable_income,All,10000.0,15000.0,False,False,False,4468515000.0 +2021,Table 1.2,H,13,taxable_income,All,10000.0,15000.0,True,False,False,3274058.0 +2021,Table 1.2,M,13,tottax,All,10000.0,15000.0,False,False,False,211113000.0 +2021,Table 1.2,L,13,tottax,All,10000.0,15000.0,True,False,False,1055682.0 +2021,Table 1.2,AM,14,adjusted_gross_income,Head of Household,15000.0,20000.0,False,False,False,33387804000.0 +2021,Table 1.2,O,14,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,15000.0,20000.0,False,False,False,18128929000.0 +2021,Table 1.2,AA,14,adjusted_gross_income,Married Filing Separately,15000.0,20000.0,False,False,False,2841995000.0 +2021,Table 1.2,AY,14,adjusted_gross_income,Single,15000.0,20000.0,False,False,False,116477401000.0 +2021,Table 1.2,AL,14,count,Head of Household,15000.0,20000.0,True,False,False,1906721.0 +2021,Table 1.2,N,14,count,Married Filing Jointly/Surviving Spouse,15000.0,20000.0,True,False,False,1035746.0 +2021,Table 1.2,Z,14,count,Married Filing Separately,15000.0,20000.0,True,False,False,161811.0 +2021,Table 1.2,AX,14,count,Single,15000.0,20000.0,True,False,False,6682302.0 +2021,Table 1.2,E,14,itemized_deductions,All,15000.0,20000.0,False,False,False,4775555000.0 +2021,Table 1.2,D,14,itemized_deductions,All,15000.0,20000.0,True,False,False,161030.0 +2021,Table 1.2,G,14,standard_deduction,All,15000.0,20000.0,False,False,False,147511432000.0 +2021,Table 1.2,F,14,standard_deduction,All,15000.0,20000.0,True,False,False,9625550.0 +2021,Table 1.2,K,14,income_tax_after_credits,All,15000.0,20000.0,False,False,False,1247479000.0 +2021,Table 1.2,J,14,income_tax_after_credits,All,15000.0,20000.0,True,False,False,3224915.0 +2021,Table 1.2,I,14,taxable_income,All,15000.0,20000.0,False,False,False,31348526000.0 +2021,Table 1.2,H,14,taxable_income,All,15000.0,20000.0,True,False,False,7213222.0 +2021,Table 1.2,M,14,tottax,All,15000.0,20000.0,False,False,False,1247485000.0 +2021,Table 1.2,L,14,tottax,All,15000.0,20000.0,True,False,False,3224975.0 +2021,Table 1.2,AM,15,adjusted_gross_income,Head of Household,20000.0,25000.0,False,False,False,42143232000.0 +2021,Table 1.2,O,15,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,20000.0,25000.0,False,False,False,27927390000.0 +2021,Table 1.2,AA,15,adjusted_gross_income,Married Filing Separately,20000.0,25000.0,False,False,False,4090074000.0 +2021,Table 1.2,AY,15,adjusted_gross_income,Single,20000.0,25000.0,False,False,False,125348264000.0 +2021,Table 1.2,AL,15,count,Head of Household,20000.0,25000.0,True,False,False,1870213.0 +2021,Table 1.2,N,15,count,Married Filing Jointly/Surviving Spouse,20000.0,25000.0,True,False,False,1239738.0 +2021,Table 1.2,Z,15,count,Married Filing Separately,20000.0,25000.0,True,False,False,181840.0 +2021,Table 1.2,AX,15,count,Single,20000.0,25000.0,True,False,False,5571779.0 +2021,Table 1.2,E,15,itemized_deductions,All,20000.0,25000.0,False,False,False,4285472000.0 +2021,Table 1.2,D,15,itemized_deductions,All,20000.0,25000.0,True,False,False,167731.0 +2021,Table 1.2,G,15,standard_deduction,All,20000.0,25000.0,False,False,False,138067676000.0 +2021,Table 1.2,F,15,standard_deduction,All,20000.0,25000.0,True,False,False,8695838.0 +2021,Table 1.2,K,15,income_tax_after_credits,All,20000.0,25000.0,False,False,False,4047553000.0 +2021,Table 1.2,J,15,income_tax_after_credits,All,20000.0,25000.0,True,False,False,4511505.0 +2021,Table 1.2,I,15,taxable_income,All,20000.0,25000.0,False,False,False,61206997000.0 +2021,Table 1.2,H,15,taxable_income,All,20000.0,25000.0,True,False,False,7565336.0 +2021,Table 1.2,M,15,tottax,All,20000.0,25000.0,False,False,False,4047630000.0 +2021,Table 1.2,L,15,tottax,All,20000.0,25000.0,True,False,False,4511653.0 +2021,Table 1.2,AM,16,adjusted_gross_income,Head of Household,25000.0,30000.0,False,False,False,53516222000.0 +2021,Table 1.2,O,16,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,25000.0,30000.0,False,False,False,37000617000.0 +2021,Table 1.2,AA,16,adjusted_gross_income,Married Filing Separately,25000.0,30000.0,False,False,False,6062013000.0 +2021,Table 1.2,AY,16,adjusted_gross_income,Single,25000.0,30000.0,False,False,False,144768327000.0 +2021,Table 1.2,AL,16,count,Head of Household,25000.0,30000.0,True,False,False,1947419.0 +2021,Table 1.2,N,16,count,Married Filing Jointly/Surviving Spouse,25000.0,30000.0,True,False,False,1346593.0 +2021,Table 1.2,Z,16,count,Married Filing Separately,25000.0,30000.0,True,False,False,220057.0 +2021,Table 1.2,AX,16,count,Single,25000.0,30000.0,True,False,False,5273508.0 +2021,Table 1.2,E,16,itemized_deductions,All,25000.0,30000.0,False,False,False,4765016000.0 +2021,Table 1.2,D,16,itemized_deductions,All,25000.0,30000.0,True,False,False,193007.0 +2021,Table 1.2,G,16,standard_deduction,All,25000.0,30000.0,False,False,False,138563570000.0 +2021,Table 1.2,F,16,standard_deduction,All,25000.0,30000.0,True,False,False,8593575.0 +2021,Table 1.2,K,16,income_tax_after_credits,All,25000.0,30000.0,False,False,False,6837013000.0 +2021,Table 1.2,J,16,income_tax_after_credits,All,25000.0,30000.0,True,False,False,5152093.0 +2021,Table 1.2,I,16,taxable_income,All,25000.0,30000.0,False,False,False,97212333000.0 +2021,Table 1.2,H,16,taxable_income,All,25000.0,30000.0,True,False,False,8419122.0 +2021,Table 1.2,M,16,tottax,All,25000.0,30000.0,False,False,False,6837046000.0 +2021,Table 1.2,L,16,tottax,All,25000.0,30000.0,True,False,False,5152142.0 +2021,Table 1.2,AM,17,adjusted_gross_income,Head of Household,30000.0,40000.0,False,False,False,123133503000.0 +2021,Table 1.2,O,17,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,30000.0,40000.0,False,False,False,97902867000.0 +2021,Table 1.2,AA,17,adjusted_gross_income,Married Filing Separately,30000.0,40000.0,False,False,False,17234995000.0 +2021,Table 1.2,AY,17,adjusted_gross_income,Single,30000.0,40000.0,False,False,False,323115069000.0 +2021,Table 1.2,AL,17,count,Head of Household,30000.0,40000.0,True,False,False,3546653.0 +2021,Table 1.2,N,17,count,Married Filing Jointly/Surviving Spouse,30000.0,40000.0,True,False,False,2792745.0 +2021,Table 1.2,Z,17,count,Married Filing Separately,30000.0,40000.0,True,False,False,491569.0 +2021,Table 1.2,AX,17,count,Single,30000.0,40000.0,True,False,False,9292101.0 +2021,Table 1.2,E,17,itemized_deductions,All,30000.0,40000.0,False,False,False,12606528000.0 +2021,Table 1.2,D,17,itemized_deductions,All,30000.0,40000.0,True,False,False,467215.0 +2021,Table 1.2,G,17,standard_deduction,All,30000.0,40000.0,False,False,False,256213310000.0 +2021,Table 1.2,F,17,standard_deduction,All,30000.0,40000.0,True,False,False,15654845.0 +2021,Table 1.2,K,17,income_tax_after_credits,All,30000.0,40000.0,False,False,False,21563554000.0 +2021,Table 1.2,J,17,income_tax_after_credits,All,30000.0,40000.0,True,False,False,10941846.0 +2021,Table 1.2,I,17,taxable_income,All,30000.0,40000.0,False,False,False,289923966000.0 +2021,Table 1.2,H,17,taxable_income,All,30000.0,40000.0,True,False,False,16053345.0 +2021,Table 1.2,M,17,tottax,All,30000.0,40000.0,False,False,False,21563813000.0 +2021,Table 1.2,L,17,tottax,All,30000.0,40000.0,True,False,False,10942006.0 +2021,Table 1.2,AM,18,adjusted_gross_income,Head of Household,40000.0,50000.0,False,False,False,99654083000.0 +2021,Table 1.2,O,18,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,40000.0,50000.0,False,False,False,129639187000.0 +2021,Table 1.2,AA,18,adjusted_gross_income,Married Filing Separately,40000.0,50000.0,False,False,False,21379178000.0 +2021,Table 1.2,AY,18,adjusted_gross_income,Single,40000.0,50000.0,False,False,False,322482930000.0 +2021,Table 1.2,AL,18,count,Head of Household,40000.0,50000.0,True,False,False,2232401.0 +2021,Table 1.2,N,18,count,Married Filing Jointly/Surviving Spouse,40000.0,50000.0,True,False,False,2878772.0 +2021,Table 1.2,Z,18,count,Married Filing Separately,40000.0,50000.0,True,False,False,478125.0 +2021,Table 1.2,AX,18,count,Single,40000.0,50000.0,True,False,False,7193036.0 +2021,Table 1.2,E,18,itemized_deductions,All,40000.0,50000.0,False,False,False,15706593000.0 +2021,Table 1.2,D,18,itemized_deductions,All,40000.0,50000.0,True,False,False,614463.0 +2021,Table 1.2,G,18,standard_deduction,All,40000.0,50000.0,False,False,False,204664807000.0 +2021,Table 1.2,F,18,standard_deduction,All,40000.0,50000.0,True,False,False,12167871.0 +2021,Table 1.2,K,18,income_tax_after_credits,All,40000.0,50000.0,False,False,False,28872618000.0 +2021,Table 1.2,J,18,income_tax_after_credits,All,40000.0,50000.0,True,False,False,10178852.0 +2021,Table 1.2,I,18,taxable_income,All,40000.0,50000.0,False,False,False,348974613000.0 +2021,Table 1.2,H,18,taxable_income,All,40000.0,50000.0,True,False,False,12742030.0 +2021,Table 1.2,M,18,tottax,All,40000.0,50000.0,False,False,False,28872871000.0 +2021,Table 1.2,L,18,tottax,All,40000.0,50000.0,True,False,False,10179035.0 +2021,Table 1.2,AM,19,adjusted_gross_income,Head of Household,50000.0,75000.0,False,False,False,190923665000.0 +2021,Table 1.2,O,19,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,50000.0,75000.0,False,False,False,466603588000.0 +2021,Table 1.2,AA,19,adjusted_gross_income,Married Filing Separately,50000.0,75000.0,False,False,False,52103375000.0 +2021,Table 1.2,AY,19,adjusted_gross_income,Single,50000.0,75000.0,False,False,False,682764971000.0 +2021,Table 1.2,AL,19,count,Head of Household,50000.0,75000.0,True,False,False,3130763.0 +2021,Table 1.2,N,19,count,Married Filing Jointly/Surviving Spouse,50000.0,75000.0,True,False,False,7435237.0 +2021,Table 1.2,Z,19,count,Married Filing Separately,50000.0,75000.0,True,False,False,860888.0 +2021,Table 1.2,AX,19,count,Single,50000.0,75000.0,True,False,False,11227046.0 +2021,Table 1.2,E,19,itemized_deductions,All,50000.0,75000.0,False,False,False,47466699000.0 +2021,Table 1.2,D,19,itemized_deductions,All,50000.0,75000.0,True,False,False,1841364.0 +2021,Table 1.2,G,19,standard_deduction,All,50000.0,75000.0,False,False,False,376778774000.0 +2021,Table 1.2,F,19,standard_deduction,All,50000.0,75000.0,True,False,False,20810563.0 +2021,Table 1.2,K,19,income_tax_after_credits,All,50000.0,75000.0,False,False,False,93196258000.0 +2021,Table 1.2,J,19,income_tax_after_credits,All,50000.0,75000.0,True,False,False,20079918.0 +2021,Table 1.2,I,19,taxable_income,All,50000.0,75000.0,False,False,False,957673164000.0 +2021,Table 1.2,H,19,taxable_income,All,50000.0,75000.0,True,False,False,22580599.0 +2021,Table 1.2,M,19,tottax,All,50000.0,75000.0,False,False,False,93197007000.0 +2021,Table 1.2,L,19,tottax,All,50000.0,75000.0,True,False,False,20080197.0 +2021,Table 1.2,AM,20,adjusted_gross_income,Head of Household,75000.0,100000.0,False,False,False,121571248000.0 +2021,Table 1.2,O,20,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,75000.0,100000.0,False,False,False,676922080000.0 +2021,Table 1.2,AA,20,adjusted_gross_income,Married Filing Separately,75000.0,100000.0,False,False,False,30369694000.0 +2021,Table 1.2,AY,20,adjusted_gross_income,Single,75000.0,100000.0,False,False,False,442836369000.0 +2021,Table 1.2,AL,20,count,Head of Household,75000.0,100000.0,True,False,False,1418570.0 +2021,Table 1.2,N,20,count,Married Filing Jointly/Surviving Spouse,75000.0,100000.0,True,False,False,7735156.0 +2021,Table 1.2,Z,20,count,Married Filing Separately,75000.0,100000.0,True,False,False,351192.0 +2021,Table 1.2,AX,20,count,Single,75000.0,100000.0,True,False,False,5152809.0 +2021,Table 1.2,E,20,itemized_deductions,All,75000.0,100000.0,False,False,False,54706812000.0 +2021,Table 1.2,D,20,itemized_deductions,All,75000.0,100000.0,True,False,False,1985056.0 +2021,Table 1.2,G,20,standard_deduction,All,75000.0,100000.0,False,False,False,263917424000.0 +2021,Table 1.2,F,20,standard_deduction,All,75000.0,100000.0,True,False,False,12672652.0 +2021,Table 1.2,K,20,income_tax_after_credits,All,75000.0,100000.0,False,False,False,105625288000.0 +2021,Table 1.2,J,20,income_tax_after_credits,All,75000.0,100000.0,True,False,False,13899298.0 +2021,Table 1.2,I,20,taxable_income,All,75000.0,100000.0,False,False,False,943012644000.0 +2021,Table 1.2,H,20,taxable_income,All,75000.0,100000.0,True,False,False,14628527.0 +2021,Table 1.2,M,20,tottax,All,75000.0,100000.0,False,False,False,105626193000.0 +2021,Table 1.2,L,20,tottax,All,75000.0,100000.0,True,False,False,13899732.0 +2021,Table 1.2,AM,21,adjusted_gross_income,Head of Household,100000.0,200000.0,False,False,False,169608771000.0 +2021,Table 1.2,O,21,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,100000.0,200000.0,False,False,False,2402518137000.0 +2021,Table 1.2,AA,21,adjusted_gross_income,Married Filing Separately,100000.0,200000.0,False,False,False,59902172000.0 +2021,Table 1.2,AY,21,adjusted_gross_income,Single,100000.0,200000.0,False,False,False,665028995000.0 +2021,Table 1.2,AL,21,count,Head of Household,100000.0,200000.0,True,False,False,1289413.0 +2021,Table 1.2,N,21,count,Married Filing Jointly/Surviving Spouse,100000.0,200000.0,True,False,False,17274270.0 +2021,Table 1.2,Z,21,count,Married Filing Separately,100000.0,200000.0,True,False,False,455335.0 +2021,Table 1.2,AX,21,count,Single,100000.0,200000.0,True,False,False,5025462.0 +2021,Table 1.2,E,21,itemized_deductions,All,100000.0,200000.0,False,False,False,138751518000.0 +2021,Table 1.2,D,21,itemized_deductions,All,100000.0,200000.0,True,False,False,4513652.0 +2021,Table 1.2,G,21,standard_deduction,All,100000.0,200000.0,False,False,False,451428959000.0 +2021,Table 1.2,F,21,standard_deduction,All,100000.0,200000.0,True,False,False,19530803.0 +2021,Table 1.2,K,21,income_tax_after_credits,All,100000.0,200000.0,False,False,False,365139832000.0 +2021,Table 1.2,J,21,income_tax_after_credits,All,100000.0,200000.0,True,False,False,23678030.0 +2021,Table 1.2,I,21,taxable_income,All,100000.0,200000.0,False,False,False,2672516594000.0 +2021,Table 1.2,H,21,taxable_income,All,100000.0,200000.0,True,False,False,24025794.0 +2021,Table 1.2,M,21,tottax,All,100000.0,200000.0,False,False,False,365196521000.0 +2021,Table 1.2,L,21,tottax,All,100000.0,200000.0,True,False,False,23680641.0 +2021,Table 1.2,AM,22,adjusted_gross_income,Head of Household,200000.0,500000.0,False,False,False,73740677000.0 +2021,Table 1.2,O,22,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,200000.0,500000.0,False,False,False,2128764355000.0 +2021,Table 1.2,AA,22,adjusted_gross_income,Married Filing Separately,200000.0,500000.0,False,False,False,28525110000.0 +2021,Table 1.2,AY,22,adjusted_gross_income,Single,200000.0,500000.0,False,False,False,388158330000.0 +2021,Table 1.2,AL,22,count,Head of Household,200000.0,500000.0,True,False,False,260151.0 +2021,Table 1.2,N,22,count,Married Filing Jointly/Surviving Spouse,200000.0,500000.0,True,False,False,7335493.0 +2021,Table 1.2,Z,22,count,Married Filing Separately,200000.0,500000.0,True,False,False,97466.0 +2021,Table 1.2,AX,22,count,Single,200000.0,500000.0,True,False,False,1352457.0 +2021,Table 1.2,E,22,itemized_deductions,All,200000.0,500000.0,False,False,False,124480962000.0 +2021,Table 1.2,D,22,itemized_deductions,All,200000.0,500000.0,True,False,False,3134769.0 +2021,Table 1.2,G,22,standard_deduction,All,200000.0,500000.0,False,False,False,141816314000.0 +2021,Table 1.2,F,22,standard_deduction,All,200000.0,500000.0,True,False,False,5910788.0 +2021,Table 1.2,K,22,income_tax_after_credits,All,200000.0,500000.0,False,False,False,437089172000.0 +2021,Table 1.2,J,22,income_tax_after_credits,All,200000.0,500000.0,True,False,False,9011428.0 +2021,Table 1.2,I,22,taxable_income,All,200000.0,500000.0,False,False,False,2311714703000.0 +2021,Table 1.2,H,22,taxable_income,All,200000.0,500000.0,True,False,False,9040733.0 +2021,Table 1.2,M,22,tottax,All,200000.0,500000.0,False,False,False,443362161000.0 +2021,Table 1.2,L,22,tottax,All,200000.0,500000.0,True,False,False,9025608.0 +2021,Table 1.2,AM,23,adjusted_gross_income,Head of Household,500000.0,1000000.0,False,False,False,27867019000.0 +2021,Table 1.2,O,23,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,500000.0,1000000.0,False,False,False,908210770000.0 +2021,Table 1.2,AA,23,adjusted_gross_income,Married Filing Separately,500000.0,1000000.0,False,False,False,13063263000.0 +2021,Table 1.2,AY,23,adjusted_gross_income,Single,500000.0,1000000.0,False,False,False,143457981000.0 +2021,Table 1.2,AL,23,count,Head of Household,500000.0,1000000.0,True,False,False,42124.0 +2021,Table 1.2,N,23,count,Married Filing Jointly/Surviving Spouse,500000.0,1000000.0,True,False,False,1342189.0 +2021,Table 1.2,Z,23,count,Married Filing Separately,500000.0,1000000.0,True,False,False,19437.0 +2021,Table 1.2,AX,23,count,Single,500000.0,1000000.0,True,False,False,213394.0 +2021,Table 1.2,E,23,itemized_deductions,All,500000.0,1000000.0,False,False,False,49971545000.0 +2021,Table 1.2,D,23,itemized_deductions,All,500000.0,1000000.0,True,False,False,874181.0 +2021,Table 1.2,G,23,standard_deduction,All,500000.0,1000000.0,False,False,False,17931209000.0 +2021,Table 1.2,F,23,standard_deduction,All,500000.0,1000000.0,True,False,False,742962.0 +2021,Table 1.2,K,23,income_tax_after_credits,All,500000.0,1000000.0,False,False,False,244827113000.0 +2021,Table 1.2,J,23,income_tax_after_credits,All,500000.0,1000000.0,True,False,False,1612396.0 +2021,Table 1.2,I,23,taxable_income,All,500000.0,1000000.0,False,False,False,1005606850000.0 +2021,Table 1.2,H,23,taxable_income,All,500000.0,1000000.0,True,False,False,1616070.0 +2021,Table 1.2,M,23,tottax,All,500000.0,1000000.0,False,False,False,252558323000.0 +2021,Table 1.2,L,23,tottax,All,500000.0,1000000.0,True,False,False,1615603.0 +2021,Table 1.2,AM,24,adjusted_gross_income,Head of Household,1000000.0,1500000.0,False,False,False,10735679000.0 +2021,Table 1.2,O,24,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,1000000.0,1500000.0,False,False,False,382588291000.0 +2021,Table 1.2,AA,24,adjusted_gross_income,Married Filing Separately,1000000.0,1500000.0,False,False,False,6934037000.0 +2021,Table 1.2,AY,24,adjusted_gross_income,Single,1000000.0,1500000.0,False,False,False,54294868000.0 +2021,Table 1.2,AL,24,count,Head of Household,1000000.0,1500000.0,True,False,False,8811.0 +2021,Table 1.2,N,24,count,Married Filing Jointly/Surviving Spouse,1000000.0,1500000.0,True,False,False,317361.0 +2021,Table 1.2,Z,24,count,Married Filing Separately,1000000.0,1500000.0,True,False,False,5761.0 +2021,Table 1.2,AX,24,count,Single,1000000.0,1500000.0,True,False,False,44926.0 +2021,Table 1.2,E,24,itemized_deductions,All,1000000.0,1500000.0,False,False,False,20103248000.0 +2021,Table 1.2,D,24,itemized_deductions,All,1000000.0,1500000.0,True,False,False,236902.0 +2021,Table 1.2,G,24,standard_deduction,All,1000000.0,1500000.0,False,False,False,3374835000.0 +2021,Table 1.2,F,24,standard_deduction,All,1000000.0,1500000.0,True,False,False,139954.0 +2021,Table 1.2,K,24,income_tax_after_credits,All,1000000.0,1500000.0,False,False,False,115008024000.0 +2021,Table 1.2,J,24,income_tax_after_credits,All,1000000.0,1500000.0,True,False,False,375593.0 +2021,Table 1.2,I,24,taxable_income,All,1000000.0,1500000.0,False,False,False,419754109000.0 +2021,Table 1.2,H,24,taxable_income,All,1000000.0,1500000.0,True,False,False,376559.0 +2021,Table 1.2,M,24,tottax,All,1000000.0,1500000.0,False,False,False,119130275000.0 +2021,Table 1.2,L,24,tottax,All,1000000.0,1500000.0,True,False,False,376495.0 +2021,Table 1.2,AM,25,adjusted_gross_income,Head of Household,1500000.0,2000000.0,False,False,False,6312826000.0 +2021,Table 1.2,O,25,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,1500000.0,2000000.0,False,False,False,223211644000.0 +2021,Table 1.2,AA,25,adjusted_gross_income,Married Filing Separately,1500000.0,2000000.0,False,False,False,5061198000.0 +2021,Table 1.2,AY,25,adjusted_gross_income,Single,1500000.0,2000000.0,False,False,False,33692456000.0 +2021,Table 1.2,AL,25,count,Head of Household,1500000.0,2000000.0,True,False,False,3695.0 +2021,Table 1.2,N,25,count,Married Filing Jointly/Surviving Spouse,1500000.0,2000000.0,True,False,False,129835.0 +2021,Table 1.2,Z,25,count,Married Filing Separately,1500000.0,2000000.0,True,False,False,2947.0 +2021,Table 1.2,AX,25,count,Single,1500000.0,2000000.0,True,False,False,19543.0 +2021,Table 1.2,E,25,itemized_deductions,All,1500000.0,2000000.0,False,False,False,11864113000.0 +2021,Table 1.2,D,25,itemized_deductions,All,1500000.0,2000000.0,True,False,False,107470.0 +2021,Table 1.2,G,25,standard_deduction,All,1500000.0,2000000.0,False,False,False,1162935000.0 +2021,Table 1.2,F,25,standard_deduction,All,1500000.0,2000000.0,True,False,False,48550.0 +2021,Table 1.2,K,25,income_tax_after_credits,All,1500000.0,2000000.0,False,False,False,70041765000.0 +2021,Table 1.2,J,25,income_tax_after_credits,All,1500000.0,2000000.0,True,False,False,155353.0 +2021,Table 1.2,I,25,taxable_income,All,1500000.0,2000000.0,False,False,False,247322898000.0 +2021,Table 1.2,H,25,taxable_income,All,1500000.0,2000000.0,True,False,False,155853.0 +2021,Table 1.2,M,25,tottax,All,1500000.0,2000000.0,False,False,False,72721172000.0 +2021,Table 1.2,L,25,tottax,All,1500000.0,2000000.0,True,False,False,155851.0 +2021,Table 1.2,AM,26,adjusted_gross_income,Head of Household,2000000.0,5000000.0,False,False,False,16591282000.0 +2021,Table 1.2,O,26,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,2000000.0,5000000.0,False,False,False,571344173000.0 +2021,Table 1.2,AA,26,adjusted_gross_income,Married Filing Separately,2000000.0,5000000.0,False,False,False,16332731000.0 +2021,Table 1.2,AY,26,adjusted_gross_income,Single,2000000.0,5000000.0,False,False,False,94655032000.0 +2021,Table 1.2,AL,26,count,Head of Household,2000000.0,5000000.0,True,False,False,5488.0 +2021,Table 1.2,N,26,count,Married Filing Jointly/Surviving Spouse,2000000.0,5000000.0,True,False,False,191346.0 +2021,Table 1.2,Z,26,count,Married Filing Separately,2000000.0,5000000.0,True,False,False,5365.0 +2021,Table 1.2,AX,26,count,Single,2000000.0,5000000.0,True,False,False,31640.0 +2021,Table 1.2,E,26,itemized_deductions,All,2000000.0,5000000.0,False,False,False,31470281000.0 +2021,Table 1.2,D,26,itemized_deductions,All,2000000.0,5000000.0,True,False,False,172234.0 +2021,Table 1.2,G,26,standard_deduction,All,2000000.0,5000000.0,False,False,False,1456808000.0 +2021,Table 1.2,F,26,standard_deduction,All,2000000.0,5000000.0,True,False,False,61583.0 +2021,Table 1.2,K,26,income_tax_after_credits,All,2000000.0,5000000.0,False,False,False,184436241000.0 +2021,Table 1.2,J,26,income_tax_after_credits,All,2000000.0,5000000.0,True,False,False,232933.0 +2021,Table 1.2,I,26,taxable_income,All,2000000.0,5000000.0,False,False,False,642731428000.0 +2021,Table 1.2,H,26,taxable_income,All,2000000.0,5000000.0,True,False,False,233500.0 +2021,Table 1.2,M,26,tottax,All,2000000.0,5000000.0,False,False,False,192544953000.0 +2021,Table 1.2,L,26,tottax,All,2000000.0,5000000.0,True,False,False,233680.0 +2021,Table 1.2,AM,27,adjusted_gross_income,Head of Household,5000000.0,10000000.0,False,False,False,10364542000.0 +2021,Table 1.2,O,27,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,5000000.0,10000000.0,False,False,False,354206871000.0 +2021,Table 1.2,AA,27,adjusted_gross_income,Married Filing Separately,5000000.0,10000000.0,False,False,False,11765312000.0 +2021,Table 1.2,AY,27,adjusted_gross_income,Single,5000000.0,10000000.0,False,False,False,58905825000.0 +2021,Table 1.2,AL,27,count,Head of Household,5000000.0,10000000.0,True,False,False,1505.0 +2021,Table 1.2,N,27,count,Married Filing Jointly/Surviving Spouse,5000000.0,10000000.0,True,False,False,51648.0 +2021,Table 1.2,Z,27,count,Married Filing Separately,5000000.0,10000000.0,True,False,False,1687.0 +2021,Table 1.2,AX,27,count,Single,5000000.0,10000000.0,True,False,False,8567.0 +2021,Table 1.2,E,27,itemized_deductions,All,5000000.0,10000000.0,False,False,False,19991637000.0 +2021,Table 1.2,D,27,itemized_deductions,All,5000000.0,10000000.0,True,False,False,51030.0 +2021,Table 1.2,G,27,standard_deduction,All,5000000.0,10000000.0,False,False,False,290838000.0 +2021,Table 1.2,F,27,standard_deduction,All,5000000.0,10000000.0,True,False,False,12376.0 +2021,Table 1.2,K,27,income_tax_after_credits,All,5000000.0,10000000.0,False,False,False,112972811000.0 +2021,Table 1.2,J,27,income_tax_after_credits,All,5000000.0,10000000.0,True,False,False,63155.0 +2021,Table 1.2,I,27,taxable_income,All,5000000.0,10000000.0,False,False,False,400742701000.0 +2021,Table 1.2,H,27,taxable_income,All,5000000.0,10000000.0,True,False,False,63280.0 +2021,Table 1.2,M,27,tottax,All,5000000.0,10000000.0,False,False,False,118711991000.0 +2021,Table 1.2,L,27,tottax,All,5000000.0,10000000.0,True,False,False,63373.0 +2021,Table 1.2,AM,28,adjusted_gross_income,Head of Household,10000000.0,inf,False,False,False,34421197000.0 +2021,Table 1.2,O,28,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,10000000.0,inf,False,False,False,1156828354000.0 +2021,Table 1.2,AA,28,adjusted_gross_income,Married Filing Separately,10000000.0,inf,False,False,False,80444520000.0 +2021,Table 1.2,AY,28,adjusted_gross_income,Single,10000000.0,inf,False,False,False,206034288000.0 +2021,Table 1.2,AL,28,count,Head of Household,10000000.0,inf,True,False,False,1125.0 +2021,Table 1.2,N,28,count,Married Filing Jointly/Surviving Spouse,10000000.0,inf,True,False,False,36520.0 +2021,Table 1.2,Z,28,count,Married Filing Separately,10000000.0,inf,True,False,False,1707.0 +2021,Table 1.2,AX,28,count,Single,10000000.0,inf,True,False,False,6052.0 +2021,Table 1.2,E,28,itemized_deductions,All,10000000.0,inf,False,False,False,111766070000.0 +2021,Table 1.2,D,28,itemized_deductions,All,10000000.0,inf,True,False,False,39613.0 +2021,Table 1.2,G,28,standard_deduction,All,10000000.0,inf,False,False,False,134035000.0 +2021,Table 1.2,F,28,standard_deduction,All,10000000.0,inf,True,False,False,5789.0 +2021,Table 1.2,K,28,income_tax_after_credits,All,10000000.0,inf,False,False,False,345196995000.0 +2021,Table 1.2,J,28,income_tax_after_credits,All,10000000.0,inf,True,False,False,45149.0 +2021,Table 1.2,I,28,taxable_income,All,10000000.0,inf,False,False,False,1331837093000.0 +2021,Table 1.2,H,28,taxable_income,All,10000000.0,inf,True,False,False,45261.0 +2021,Table 1.2,M,28,tottax,All,10000000.0,inf,False,False,False,370181469000.0 +2021,Table 1.2,L,28,tottax,All,10000000.0,inf,True,False,False,45376.0 +2021,Table 1.4,EE,9,alternative_minimum_tax,All,-inf,inf,False,False,True,5598598000.0 +2021,Table 1.4,ED,9,alternative_minimum_tax,All,-inf,inf,True,False,True,243550.0 +2021,Table 1.4,U,9,business_net_profits,All,-inf,inf,False,False,True,517081772000.0 +2021,Table 1.4,W,9,business_net_losses,All,-inf,inf,False,False,True,105580403000.0 +2021,Table 1.4,T,9,business_net_profits,All,-inf,inf,True,False,True,21105685.0 +2021,Table 1.4,V,9,business_net_losses,All,-inf,inf,True,False,True,7546660.0 +2021,Table 1.4,Y,9,capital_gains_distributions,All,-inf,inf,False,False,True,23889533000.0 +2021,Table 1.4,X,9,capital_gains_distributions,All,-inf,inf,True,False,True,4505544.0 +2021,Table 1.4,AA,9,capital_gains_gross,All,-inf,inf,False,False,True,2048795356000.0 +2021,Table 1.4,AC,9,capital_gains_losses,All,-inf,inf,False,False,True,16241889000.0 +2021,Table 1.4,Z,9,capital_gains_gross,All,-inf,inf,True,False,True,20497375.0 +2021,Table 1.4,AB,9,capital_gains_losses,All,-inf,inf,True,False,True,8074079.0 +2021,Table 1.4,BM,9,estate_income,All,-inf,inf,False,False,True,49387898000.0 +2021,Table 1.4,BO,9,estate_losses,All,-inf,inf,False,False,True,5899376000.0 +2021,Table 1.4,BL,9,estate_income,All,-inf,inf,True,False,True,624529.0 +2021,Table 1.4,BN,9,estate_losses,All,-inf,inf,True,False,True,49450.0 +2021,Table 1.4,K,9,exempt_interest,All,-inf,inf,False,False,True,55518422000.0 +2021,Table 1.4,J,9,exempt_interest,All,-inf,inf,True,False,True,6569327.0 +2021,Table 1.4,AI,9,ira_distributions,All,-inf,inf,False,False,True,408382461000.0 +2021,Table 1.4,AH,9,ira_distributions,All,-inf,inf,True,False,True,15584165.0 +2021,Table 1.4,M,9,ordinary_dividends,All,-inf,inf,False,False,True,386961461000.0 +2021,Table 1.4,L,9,ordinary_dividends,All,-inf,inf,True,False,True,32247057.0 +2021,Table 1.4,BE,9,partnership_and_s_corp_income,All,-inf,inf,False,False,True,1236497548000.0 +2021,Table 1.4,BG,9,partnership_and_s_corp_losses,All,-inf,inf,False,False,True,260841147000.0 +2021,Table 1.4,BD,9,partnership_and_s_corp_income,All,-inf,inf,True,False,True,7080387.0 +2021,Table 1.4,BF,9,partnership_and_s_corp_losses,All,-inf,inf,True,False,True,3444331.0 +2021,Table 1.4,AK,9,total_pension_income,All,-inf,inf,False,False,True,1506948061000.0 +2021,Table 1.4,AJ,9,total_pension_income,All,-inf,inf,True,False,True,32171355.0 +2021,Table 1.4,AM,9,taxable_pension_income,All,-inf,inf,False,False,True,858038339000.0 +2021,Table 1.4,AL,9,taxable_pension_income,All,-inf,inf,True,False,True,29357159.0 +2021,Table 1.4,DY,9,qualified_business_income_deduction,All,-inf,inf,False,False,True,205779729000.0 +2021,Table 1.4,DX,9,qualified_business_income_deduction,All,-inf,inf,True,False,True,25924668.0 +2021,Table 1.4,O,9,qualified_dividends,All,-inf,inf,False,False,True,295906194000.0 +2021,Table 1.4,N,9,qualified_dividends,All,-inf,inf,True,False,True,30524800.0 +2021,Table 1.4,BA,9,rent_and_royalty_net_income,All,-inf,inf,False,False,True,125168233000.0 +2021,Table 1.4,BC,9,rent_and_royalty_net_losses,All,-inf,inf,False,False,True,56765983000.0 +2021,Table 1.4,AZ,9,rent_and_royalty_net_income,All,-inf,inf,True,False,True,6305037.0 +2021,Table 1.4,BB,9,rent_and_royalty_net_losses,All,-inf,inf,True,False,True,3496912.0 +2021,Table 1.4,BI,9,s_corporation_net_income,All,-inf,inf,False,False,True,766681240000.0 +2021,Table 1.4,BK,9,s_corporation_net_losses,All,-inf,inf,False,False,True,92689104000.0 +2021,Table 1.4,BH,9,s_corporation_net_income,All,-inf,inf,True,False,True,3878815.0 +2021,Table 1.4,BJ,9,s_corporation_net_losses,All,-inf,inf,True,False,True,1453974.0 +2021,Table 1.4,BY,9,taxable_social_security,All,-inf,inf,False,False,True,412830233000.0 +2021,Table 1.4,BX,9,taxable_social_security,All,-inf,inf,True,False,True,23798351.0 +2021,Table 1.4,BW,9,total_social_security,All,-inf,inf,False,False,True,791161174000.0 +2021,Table 1.4,BV,9,total_social_security,All,-inf,inf,True,False,True,31293066.0 +2021,Table 1.4,EI,9,income_tax_before_credits,All,-inf,inf,False,False,True,2290478645000.0 +2021,Table 1.4,EH,9,income_tax_before_credits,All,-inf,inf,True,False,True,127874599.0 +2021,Table 1.4,I,9,taxable_interest_income,All,-inf,inf,False,False,True,103535203000.0 +2021,Table 1.4,H,9,taxable_interest_income,All,-inf,inf,True,False,True,48990485.0 +2021,Table 1.4,BU,9,unemployment_compensation,All,-inf,inf,False,False,True,208872354000.0 +2021,Table 1.4,BT,9,unemployment_compensation,All,-inf,inf,True,False,True,15809172.0 +2021,Table 1.4,G,9,employment_income,All,-inf,inf,False,False,True,9022352941000.0 +2021,Table 1.4,F,9,employment_income,All,-inf,inf,True,False,True,126082290.0 +2021,Table 1.4,EE,10,alternative_minimum_tax,All,-inf,0.0,False,False,False,173716000.0 +2021,Table 1.4,ED,10,alternative_minimum_tax,All,-inf,0.0,True,False,False,3867.0 +2021,Table 1.4,U,10,business_net_profits,All,-inf,0.0,False,False,False,4193499000.0 +2021,Table 1.4,W,10,business_net_losses,All,-inf,0.0,False,False,False,19401043000.0 +2021,Table 1.4,T,10,business_net_profits,All,-inf,0.0,True,False,False,177452.0 +2021,Table 1.4,V,10,business_net_losses,All,-inf,0.0,True,False,False,496910.0 +2021,Table 1.4,Y,10,capital_gains_distributions,All,-inf,0.0,False,False,False,65371000.0 +2021,Table 1.4,X,10,capital_gains_distributions,All,-inf,0.0,True,False,False,22086.0 +2021,Table 1.4,AA,10,capital_gains_gross,All,-inf,0.0,False,False,False,19015791000.0 +2021,Table 1.4,AC,10,capital_gains_losses,All,-inf,0.0,False,False,False,860874000.0 +2021,Table 1.4,Z,10,capital_gains_gross,All,-inf,0.0,True,False,False,168588.0 +2021,Table 1.4,AB,10,capital_gains_losses,All,-inf,0.0,True,False,False,347354.0 +2021,Table 1.4,BM,10,estate_income,All,-inf,0.0,False,False,False,488912000.0 +2021,Table 1.4,BO,10,estate_losses,All,-inf,0.0,False,False,False,1259085000.0 +2021,Table 1.4,BL,10,estate_income,All,-inf,0.0,True,False,False,10588.0 +2021,Table 1.4,BN,10,estate_losses,All,-inf,0.0,True,False,False,4170.0 +2021,Table 1.4,K,10,exempt_interest,All,-inf,0.0,False,False,False,958274000.0 +2021,Table 1.4,J,10,exempt_interest,All,-inf,0.0,True,False,False,57924.0 +2021,Table 1.4,AI,10,ira_distributions,All,-inf,0.0,False,False,False,1992887000.0 +2021,Table 1.4,AH,10,ira_distributions,All,-inf,0.0,True,False,False,114208.0 +2021,Table 1.4,M,10,ordinary_dividends,All,-inf,0.0,False,False,False,3366312000.0 +2021,Table 1.4,L,10,ordinary_dividends,All,-inf,0.0,True,False,False,375055.0 +2021,Table 1.4,BE,10,partnership_and_s_corp_income,All,-inf,0.0,False,False,False,7887066000.0 +2021,Table 1.4,BG,10,partnership_and_s_corp_losses,All,-inf,0.0,False,False,False,71077341000.0 +2021,Table 1.4,BD,10,partnership_and_s_corp_income,All,-inf,0.0,True,False,False,81198.0 +2021,Table 1.4,BF,10,partnership_and_s_corp_losses,All,-inf,0.0,True,False,False,338591.0 +2021,Table 1.4,AK,10,total_pension_income,All,-inf,0.0,False,False,False,6763059000.0 +2021,Table 1.4,AJ,10,total_pension_income,All,-inf,0.0,True,False,False,248894.0 +2021,Table 1.4,AM,10,taxable_pension_income,All,-inf,0.0,False,False,False,3171606000.0 +2021,Table 1.4,AL,10,taxable_pension_income,All,-inf,0.0,True,False,False,193961.0 +2021,Table 1.4,DY,10,qualified_business_income_deduction,All,-inf,0.0,False,False,False,0.0 +2021,Table 1.4,DX,10,qualified_business_income_deduction,All,-inf,0.0,True,False,False,0.0 +2021,Table 1.4,O,10,qualified_dividends,All,-inf,0.0,False,False,False,2343007000.0 +2021,Table 1.4,N,10,qualified_dividends,All,-inf,0.0,True,False,False,340668.0 +2021,Table 1.4,BA,10,rent_and_royalty_net_income,All,-inf,0.0,False,False,False,2442565000.0 +2021,Table 1.4,BC,10,rent_and_royalty_net_losses,All,-inf,0.0,False,False,False,7147339000.0 +2021,Table 1.4,AZ,10,rent_and_royalty_net_income,All,-inf,0.0,True,False,False,127457.0 +2021,Table 1.4,BB,10,rent_and_royalty_net_losses,All,-inf,0.0,True,False,False,186685.0 +2021,Table 1.4,BI,10,s_corporation_net_income,All,-inf,0.0,False,False,False,4391548000.0 +2021,Table 1.4,BK,10,s_corporation_net_losses,All,-inf,0.0,False,False,False,29520422000.0 +2021,Table 1.4,BH,10,s_corporation_net_income,All,-inf,0.0,True,False,False,29831.0 +2021,Table 1.4,BJ,10,s_corporation_net_losses,All,-inf,0.0,True,False,False,184546.0 +2021,Table 1.4,BY,10,taxable_social_security,All,-inf,0.0,False,False,False,5051000.0 +2021,Table 1.4,BX,10,taxable_social_security,All,-inf,0.0,True,False,False,1810.0 +2021,Table 1.4,BW,10,total_social_security,All,-inf,0.0,False,False,False,23536368000.0 +2021,Table 1.4,BV,10,total_social_security,All,-inf,0.0,True,False,False,1122130.0 +2021,Table 1.4,EI,10,income_tax_before_credits,All,-inf,0.0,False,False,False,225572000.0 +2021,Table 1.4,EH,10,income_tax_before_credits,All,-inf,0.0,True,False,False,29216.0 +2021,Table 1.4,I,10,taxable_interest_income,All,-inf,0.0,False,False,False,3480795000.0 +2021,Table 1.4,H,10,taxable_interest_income,All,-inf,0.0,True,False,False,565509.0 +2021,Table 1.4,BU,10,unemployment_compensation,All,-inf,0.0,False,False,False,1731244000.0 +2021,Table 1.4,BT,10,unemployment_compensation,All,-inf,0.0,True,False,False,124275.0 +2021,Table 1.4,G,10,employment_income,All,-inf,0.0,False,False,False,23670507000.0 +2021,Table 1.4,F,10,employment_income,All,-inf,0.0,True,False,False,488212.0 +2021,Table 1.4,EE,11,alternative_minimum_tax,All,1.0,5000.0,False,False,False,1480000.0 +2021,Table 1.4,ED,11,alternative_minimum_tax,All,1.0,5000.0,True,False,False,18.0 +2021,Table 1.4,U,11,business_net_profits,All,1.0,5000.0,False,False,False,3659049000.0 +2021,Table 1.4,W,11,business_net_losses,All,1.0,5000.0,False,False,False,1090552000.0 +2021,Table 1.4,T,11,business_net_profits,All,1.0,5000.0,True,False,False,1387699.0 +2021,Table 1.4,V,11,business_net_losses,All,1.0,5000.0,True,False,False,129756.0 +2021,Table 1.4,Y,11,capital_gains_distributions,All,1.0,5000.0,False,False,False,113762000.0 +2021,Table 1.4,X,11,capital_gains_distributions,All,1.0,5000.0,True,False,False,147555.0 +2021,Table 1.4,AA,11,capital_gains_gross,All,1.0,5000.0,False,False,False,594696000.0 +2021,Table 1.4,AC,11,capital_gains_losses,All,1.0,5000.0,False,False,False,454913000.0 +2021,Table 1.4,Z,11,capital_gains_gross,All,1.0,5000.0,True,False,False,329154.0 +2021,Table 1.4,AB,11,capital_gains_losses,All,1.0,5000.0,True,False,False,232283.0 +2021,Table 1.4,BM,11,estate_income,All,1.0,5000.0,False,False,False,10954000.0 +2021,Table 1.4,BO,11,estate_losses,All,1.0,5000.0,False,False,False,3360000.0 +2021,Table 1.4,BL,11,estate_income,All,1.0,5000.0,True,False,False,4262.0 +2021,Table 1.4,BN,11,estate_losses,All,1.0,5000.0,True,False,False,2616.0 +2021,Table 1.4,K,11,exempt_interest,All,1.0,5000.0,False,False,False,88126000.0 +2021,Table 1.4,J,11,exempt_interest,All,1.0,5000.0,True,False,False,81923.0 +2021,Table 1.4,AI,11,ira_distributions,All,1.0,5000.0,False,False,False,803551000.0 +2021,Table 1.4,AH,11,ira_distributions,All,1.0,5000.0,True,False,False,291248.0 +2021,Table 1.4,M,11,ordinary_dividends,All,1.0,5000.0,False,False,False,717653000.0 +2021,Table 1.4,L,11,ordinary_dividends,All,1.0,5000.0,True,False,False,790696.0 +2021,Table 1.4,BE,11,partnership_and_s_corp_income,All,1.0,5000.0,False,False,False,283607000.0 +2021,Table 1.4,BG,11,partnership_and_s_corp_losses,All,1.0,5000.0,False,False,False,1075829000.0 +2021,Table 1.4,BD,11,partnership_and_s_corp_income,All,1.0,5000.0,True,False,False,47856.0 +2021,Table 1.4,BF,11,partnership_and_s_corp_losses,All,1.0,5000.0,True,False,False,42742.0 +2021,Table 1.4,AK,11,total_pension_income,All,1.0,5000.0,False,False,False,5734467000.0 +2021,Table 1.4,AJ,11,total_pension_income,All,1.0,5000.0,True,False,False,747616.0 +2021,Table 1.4,AM,11,taxable_pension_income,All,1.0,5000.0,False,False,False,2194380000.0 +2021,Table 1.4,AL,11,taxable_pension_income,All,1.0,5000.0,True,False,False,693782.0 +2021,Table 1.4,DY,11,qualified_business_income_deduction,All,1.0,5000.0,False,False,False,3109000.0 +2021,Table 1.4,DX,11,qualified_business_income_deduction,All,1.0,5000.0,True,False,False,20887.0 +2021,Table 1.4,O,11,qualified_dividends,All,1.0,5000.0,False,False,False,466517000.0 +2021,Table 1.4,N,11,qualified_dividends,All,1.0,5000.0,True,False,False,712438.0 +2021,Table 1.4,BA,11,rent_and_royalty_net_income,All,1.0,5000.0,False,False,False,252165000.0 +2021,Table 1.4,BC,11,rent_and_royalty_net_losses,All,1.0,5000.0,False,False,False,450428000.0 +2021,Table 1.4,AZ,11,rent_and_royalty_net_income,All,1.0,5000.0,True,False,False,105186.0 +2021,Table 1.4,BB,11,rent_and_royalty_net_losses,All,1.0,5000.0,True,False,False,47651.0 +2021,Table 1.4,BI,11,s_corporation_net_income,All,1.0,5000.0,False,False,False,92564000.0 +2021,Table 1.4,BK,11,s_corporation_net_losses,All,1.0,5000.0,False,False,False,795211000.0 +2021,Table 1.4,BH,11,s_corporation_net_income,All,1.0,5000.0,True,False,False,20073.0 +2021,Table 1.4,BJ,11,s_corporation_net_losses,All,1.0,5000.0,True,False,False,22633.0 +2021,Table 1.4,BY,11,taxable_social_security,All,1.0,5000.0,False,False,False,56211000.0 +2021,Table 1.4,BX,11,taxable_social_security,All,1.0,5000.0,True,False,False,17871.0 +2021,Table 1.4,BW,11,total_social_security,All,1.0,5000.0,False,False,False,39846341000.0 +2021,Table 1.4,BV,11,total_social_security,All,1.0,5000.0,True,False,False,2034531.0 +2021,Table 1.4,EI,11,income_tax_before_credits,All,1.0,5000.0,False,False,False,85408000.0 +2021,Table 1.4,EH,11,income_tax_before_credits,All,1.0,5000.0,True,False,False,181180.0 +2021,Table 1.4,I,11,taxable_interest_income,All,1.0,5000.0,False,False,False,448690000.0 +2021,Table 1.4,H,11,taxable_interest_income,All,1.0,5000.0,True,False,False,1715167.0 +2021,Table 1.4,BU,11,unemployment_compensation,All,1.0,5000.0,False,False,False,1192432000.0 +2021,Table 1.4,BT,11,unemployment_compensation,All,1.0,5000.0,True,False,False,197448.0 +2021,Table 1.4,G,11,employment_income,All,1.0,5000.0,False,False,False,20132275000.0 +2021,Table 1.4,F,11,employment_income,All,1.0,5000.0,True,False,False,4990145.0 +2021,Table 1.4,EE,12,alternative_minimum_tax,All,5000.0,10000.0,False,False,False,0.0 +2021,Table 1.4,ED,12,alternative_minimum_tax,All,5000.0,10000.0,True,False,False,0.0 +2021,Table 1.4,U,12,business_net_profits,All,5000.0,10000.0,False,False,False,10546179000.0 +2021,Table 1.4,W,12,business_net_losses,All,5000.0,10000.0,False,False,False,1934591000.0 +2021,Table 1.4,T,12,business_net_profits,All,5000.0,10000.0,True,False,False,1562204.0 +2021,Table 1.4,V,12,business_net_losses,All,5000.0,10000.0,True,False,False,174436.0 +2021,Table 1.4,Y,12,capital_gains_distributions,All,5000.0,10000.0,False,False,False,245186000.0 +2021,Table 1.4,X,12,capital_gains_distributions,All,5000.0,10000.0,True,False,False,156516.0 +2021,Table 1.4,AA,12,capital_gains_gross,All,5000.0,10000.0,False,False,False,1350615000.0 +2021,Table 1.4,AC,12,capital_gains_losses,All,5000.0,10000.0,False,False,False,482569000.0 +2021,Table 1.4,Z,12,capital_gains_gross,All,5000.0,10000.0,True,False,False,332066.0 +2021,Table 1.4,AB,12,capital_gains_losses,All,5000.0,10000.0,True,False,False,254651.0 +2021,Table 1.4,BM,12,estate_income,All,5000.0,10000.0,False,False,False,59889000.0 +2021,Table 1.4,BO,12,estate_losses,All,5000.0,10000.0,False,False,False,121000.0 +2021,Table 1.4,BL,12,estate_income,All,5000.0,10000.0,True,False,False,7292.0 +2021,Table 1.4,BN,12,estate_losses,All,5000.0,10000.0,True,False,False,31.0 +2021,Table 1.4,K,12,exempt_interest,All,5000.0,10000.0,False,False,False,202799000.0 +2021,Table 1.4,J,12,exempt_interest,All,5000.0,10000.0,True,False,False,73701.0 +2021,Table 1.4,AI,12,ira_distributions,All,5000.0,10000.0,False,False,False,2565706000.0 +2021,Table 1.4,AH,12,ira_distributions,All,5000.0,10000.0,True,False,False,505204.0 +2021,Table 1.4,M,12,ordinary_dividends,All,5000.0,10000.0,False,False,False,1068899000.0 +2021,Table 1.4,L,12,ordinary_dividends,All,5000.0,10000.0,True,False,False,776574.0 +2021,Table 1.4,BE,12,partnership_and_s_corp_income,All,5000.0,10000.0,False,False,False,586238000.0 +2021,Table 1.4,BG,12,partnership_and_s_corp_losses,All,5000.0,10000.0,False,False,False,1526643000.0 +2021,Table 1.4,BD,12,partnership_and_s_corp_income,All,5000.0,10000.0,True,False,False,68157.0 +2021,Table 1.4,BF,12,partnership_and_s_corp_losses,All,5000.0,10000.0,True,False,False,54467.0 +2021,Table 1.4,AK,12,total_pension_income,All,5000.0,10000.0,False,False,False,9362560000.0 +2021,Table 1.4,AJ,12,total_pension_income,All,5000.0,10000.0,True,False,False,983565.0 +2021,Table 1.4,AM,12,taxable_pension_income,All,5000.0,10000.0,False,False,False,5601441000.0 +2021,Table 1.4,AL,12,taxable_pension_income,All,5000.0,10000.0,True,False,False,944195.0 +2021,Table 1.4,DY,12,qualified_business_income_deduction,All,5000.0,10000.0,False,False,False,15105000.0 +2021,Table 1.4,DX,12,qualified_business_income_deduction,All,5000.0,10000.0,True,False,False,39486.0 +2021,Table 1.4,O,12,qualified_dividends,All,5000.0,10000.0,False,False,False,667944000.0 +2021,Table 1.4,N,12,qualified_dividends,All,5000.0,10000.0,True,False,False,708724.0 +2021,Table 1.4,BA,12,rent_and_royalty_net_income,All,5000.0,10000.0,False,False,False,810504000.0 +2021,Table 1.4,BC,12,rent_and_royalty_net_losses,All,5000.0,10000.0,False,False,False,423191000.0 +2021,Table 1.4,AZ,12,rent_and_royalty_net_income,All,5000.0,10000.0,True,False,False,177352.0 +2021,Table 1.4,BB,12,rent_and_royalty_net_losses,All,5000.0,10000.0,True,False,False,52142.0 +2021,Table 1.4,BI,12,s_corporation_net_income,All,5000.0,10000.0,False,False,False,347412000.0 +2021,Table 1.4,BK,12,s_corporation_net_losses,All,5000.0,10000.0,False,False,False,1043588000.0 +2021,Table 1.4,BH,12,s_corporation_net_income,All,5000.0,10000.0,True,False,False,35163.0 +2021,Table 1.4,BJ,12,s_corporation_net_losses,All,5000.0,10000.0,True,False,False,28589.0 +2021,Table 1.4,BY,12,taxable_social_security,All,5000.0,10000.0,False,False,False,236096000.0 +2021,Table 1.4,BX,12,taxable_social_security,All,5000.0,10000.0,True,False,False,53922.0 +2021,Table 1.4,BW,12,total_social_security,All,5000.0,10000.0,False,False,False,35515487000.0 +2021,Table 1.4,BV,12,total_social_security,All,5000.0,10000.0,True,False,False,1726114.0 +2021,Table 1.4,EI,12,income_tax_before_credits,All,5000.0,10000.0,False,False,False,95009000.0 +2021,Table 1.4,EH,12,income_tax_before_credits,All,5000.0,10000.0,True,False,False,230722.0 +2021,Table 1.4,I,12,taxable_interest_income,All,5000.0,10000.0,False,False,False,510374000.0 +2021,Table 1.4,H,12,taxable_interest_income,All,5000.0,10000.0,True,False,False,1132747.0 +2021,Table 1.4,BU,12,unemployment_compensation,All,5000.0,10000.0,False,False,False,3477871000.0 +2021,Table 1.4,BT,12,unemployment_compensation,All,5000.0,10000.0,True,False,False,466107.0 +2021,Table 1.4,G,12,employment_income,All,5000.0,10000.0,False,False,False,48844902000.0 +2021,Table 1.4,F,12,employment_income,All,5000.0,10000.0,True,False,False,6353567.0 +2021,Table 1.4,EE,13,alternative_minimum_tax,All,10000.0,15000.0,False,False,False,0.0 +2021,Table 1.4,ED,13,alternative_minimum_tax,All,10000.0,15000.0,True,False,False,0.0 +2021,Table 1.4,U,13,business_net_profits,All,10000.0,15000.0,False,False,False,20104970000.0 +2021,Table 1.4,W,13,business_net_losses,All,10000.0,15000.0,False,False,False,4550449000.0 +2021,Table 1.4,T,13,business_net_profits,All,10000.0,15000.0,True,False,False,2046193.0 +2021,Table 1.4,V,13,business_net_losses,All,10000.0,15000.0,True,False,False,383871.0 +2021,Table 1.4,Y,13,capital_gains_distributions,All,10000.0,15000.0,False,False,False,280333000.0 +2021,Table 1.4,X,13,capital_gains_distributions,All,10000.0,15000.0,True,False,False,130377.0 +2021,Table 1.4,AA,13,capital_gains_gross,All,10000.0,15000.0,False,False,False,1733569000.0 +2021,Table 1.4,AC,13,capital_gains_losses,All,10000.0,15000.0,False,False,False,501628000.0 +2021,Table 1.4,Z,13,capital_gains_gross,All,10000.0,15000.0,True,False,False,374844.0 +2021,Table 1.4,AB,13,capital_gains_losses,All,10000.0,15000.0,True,False,False,261320.0 +2021,Table 1.4,BM,13,estate_income,All,10000.0,15000.0,False,False,False,58657000.0 +2021,Table 1.4,BO,13,estate_losses,All,10000.0,15000.0,False,False,False,34976000.0 +2021,Table 1.4,BL,13,estate_income,All,10000.0,15000.0,True,False,False,6417.0 +2021,Table 1.4,BN,13,estate_losses,All,10000.0,15000.0,True,False,False,1375.0 +2021,Table 1.4,K,13,exempt_interest,All,10000.0,15000.0,False,False,False,190552000.0 +2021,Table 1.4,J,13,exempt_interest,All,10000.0,15000.0,True,False,False,88828.0 +2021,Table 1.4,AI,13,ira_distributions,All,10000.0,15000.0,False,False,False,3938974000.0 +2021,Table 1.4,AH,13,ira_distributions,All,10000.0,15000.0,True,False,False,557286.0 +2021,Table 1.4,M,13,ordinary_dividends,All,10000.0,15000.0,False,False,False,1183718000.0 +2021,Table 1.4,L,13,ordinary_dividends,All,10000.0,15000.0,True,False,False,714119.0 +2021,Table 1.4,BE,13,partnership_and_s_corp_income,All,10000.0,15000.0,False,False,False,909688000.0 +2021,Table 1.4,BG,13,partnership_and_s_corp_losses,All,10000.0,15000.0,False,False,False,1287709000.0 +2021,Table 1.4,BD,13,partnership_and_s_corp_income,All,10000.0,15000.0,True,False,False,80211.0 +2021,Table 1.4,BF,13,partnership_and_s_corp_losses,All,10000.0,15000.0,True,False,False,50193.0 +2021,Table 1.4,AK,13,total_pension_income,All,10000.0,15000.0,False,False,False,15555885000.0 +2021,Table 1.4,AJ,13,total_pension_income,All,10000.0,15000.0,True,False,False,1301846.0 +2021,Table 1.4,AM,13,taxable_pension_income,All,10000.0,15000.0,False,False,False,11373258000.0 +2021,Table 1.4,AL,13,taxable_pension_income,All,10000.0,15000.0,True,False,False,1250111.0 +2021,Table 1.4,DY,13,qualified_business_income_deduction,All,10000.0,15000.0,False,False,False,98223000.0 +2021,Table 1.4,DX,13,qualified_business_income_deduction,All,10000.0,15000.0,True,False,False,438355.0 +2021,Table 1.4,O,13,qualified_dividends,All,10000.0,15000.0,False,False,False,721307000.0 +2021,Table 1.4,N,13,qualified_dividends,All,10000.0,15000.0,True,False,False,653265.0 +2021,Table 1.4,BA,13,rent_and_royalty_net_income,All,10000.0,15000.0,False,False,False,1400866000.0 +2021,Table 1.4,BC,13,rent_and_royalty_net_losses,All,10000.0,15000.0,False,False,False,825615000.0 +2021,Table 1.4,AZ,13,rent_and_royalty_net_income,All,10000.0,15000.0,True,False,False,206801.0 +2021,Table 1.4,BB,13,rent_and_royalty_net_losses,All,10000.0,15000.0,True,False,False,79992.0 +2021,Table 1.4,BI,13,s_corporation_net_income,All,10000.0,15000.0,False,False,False,453016000.0 +2021,Table 1.4,BK,13,s_corporation_net_losses,All,10000.0,15000.0,False,False,False,889474000.0 +2021,Table 1.4,BH,13,s_corporation_net_income,All,10000.0,15000.0,True,False,False,32367.0 +2021,Table 1.4,BJ,13,s_corporation_net_losses,All,10000.0,15000.0,True,False,False,22953.0 +2021,Table 1.4,BY,13,taxable_social_security,All,10000.0,15000.0,False,False,False,376863000.0 +2021,Table 1.4,BX,13,taxable_social_security,All,10000.0,15000.0,True,False,False,286325.0 +2021,Table 1.4,BW,13,total_social_security,All,10000.0,15000.0,False,False,False,40383202000.0 +2021,Table 1.4,BV,13,total_social_security,All,10000.0,15000.0,True,False,False,1965208.0 +2021,Table 1.4,EI,13,income_tax_before_credits,All,10000.0,15000.0,False,False,False,491367000.0 +2021,Table 1.4,EH,13,income_tax_before_credits,All,10000.0,15000.0,True,False,False,3245394.0 +2021,Table 1.4,I,13,taxable_interest_income,All,10000.0,15000.0,False,False,False,647673000.0 +2021,Table 1.4,H,13,taxable_interest_income,All,10000.0,15000.0,True,False,False,1414387.0 +2021,Table 1.4,BU,13,unemployment_compensation,All,10000.0,15000.0,False,False,False,11528307000.0 +2021,Table 1.4,BT,13,unemployment_compensation,All,10000.0,15000.0,True,False,False,1136775.0 +2021,Table 1.4,G,13,employment_income,All,10000.0,15000.0,False,False,False,83858745000.0 +2021,Table 1.4,F,13,employment_income,All,10000.0,15000.0,True,False,False,6943210.0 +2021,Table 1.4,EE,14,alternative_minimum_tax,All,15000.0,20000.0,False,False,False,434000.0 +2021,Table 1.4,ED,14,alternative_minimum_tax,All,15000.0,20000.0,True,False,False,13.0 +2021,Table 1.4,U,14,business_net_profits,All,15000.0,20000.0,False,False,False,18140645000.0 +2021,Table 1.4,W,14,business_net_losses,All,15000.0,20000.0,False,False,False,5821504000.0 +2021,Table 1.4,T,14,business_net_profits,All,15000.0,20000.0,True,False,False,1574602.0 +2021,Table 1.4,V,14,business_net_losses,All,15000.0,20000.0,True,False,False,489504.0 +2021,Table 1.4,Y,14,capital_gains_distributions,All,15000.0,20000.0,False,False,False,295710000.0 +2021,Table 1.4,X,14,capital_gains_distributions,All,15000.0,20000.0,True,False,False,116943.0 +2021,Table 1.4,AA,14,capital_gains_gross,All,15000.0,20000.0,False,False,False,2147651000.0 +2021,Table 1.4,AC,14,capital_gains_losses,All,15000.0,20000.0,False,False,False,506220000.0 +2021,Table 1.4,Z,14,capital_gains_gross,All,15000.0,20000.0,True,False,False,419502.0 +2021,Table 1.4,AB,14,capital_gains_losses,All,15000.0,20000.0,True,False,False,277969.0 +2021,Table 1.4,BM,14,estate_income,All,15000.0,20000.0,False,False,False,143010000.0 +2021,Table 1.4,BO,14,estate_losses,All,15000.0,20000.0,False,False,False,6988000.0 +2021,Table 1.4,BL,14,estate_income,All,15000.0,20000.0,True,False,False,17044.0 +2021,Table 1.4,BN,14,estate_losses,All,15000.0,20000.0,True,False,False,16.0 +2021,Table 1.4,K,14,exempt_interest,All,15000.0,20000.0,False,False,False,166021000.0 +2021,Table 1.4,J,14,exempt_interest,All,15000.0,20000.0,True,False,False,86676.0 +2021,Table 1.4,AI,14,ira_distributions,All,15000.0,20000.0,False,False,False,4783292000.0 +2021,Table 1.4,AH,14,ira_distributions,All,15000.0,20000.0,True,False,False,545318.0 +2021,Table 1.4,M,14,ordinary_dividends,All,15000.0,20000.0,False,False,False,1521595000.0 +2021,Table 1.4,L,14,ordinary_dividends,All,15000.0,20000.0,True,False,False,757406.0 +2021,Table 1.4,BE,14,partnership_and_s_corp_income,All,15000.0,20000.0,False,False,False,1103007000.0 +2021,Table 1.4,BG,14,partnership_and_s_corp_losses,All,15000.0,20000.0,False,False,False,1612436000.0 +2021,Table 1.4,BD,14,partnership_and_s_corp_income,All,15000.0,20000.0,True,False,False,103979.0 +2021,Table 1.4,BF,14,partnership_and_s_corp_losses,All,15000.0,20000.0,True,False,False,70310.0 +2021,Table 1.4,AK,14,total_pension_income,All,15000.0,20000.0,False,False,False,17825944000.0 +2021,Table 1.4,AJ,14,total_pension_income,All,15000.0,20000.0,True,False,False,1322953.0 +2021,Table 1.4,AM,14,taxable_pension_income,All,15000.0,20000.0,False,False,False,14244330000.0 +2021,Table 1.4,AL,14,taxable_pension_income,All,15000.0,20000.0,True,False,False,1268203.0 +2021,Table 1.4,DY,14,qualified_business_income_deduction,All,15000.0,20000.0,False,False,False,586769000.0 +2021,Table 1.4,DX,14,qualified_business_income_deduction,All,15000.0,20000.0,True,False,False,970408.0 +2021,Table 1.4,O,14,qualified_dividends,All,15000.0,20000.0,False,False,False,1060701000.0 +2021,Table 1.4,N,14,qualified_dividends,All,15000.0,20000.0,True,False,False,703804.0 +2021,Table 1.4,BA,14,rent_and_royalty_net_income,All,15000.0,20000.0,False,False,False,1359444000.0 +2021,Table 1.4,BC,14,rent_and_royalty_net_losses,All,15000.0,20000.0,False,False,False,804625000.0 +2021,Table 1.4,AZ,14,rent_and_royalty_net_income,All,15000.0,20000.0,True,False,False,192320.0 +2021,Table 1.4,BB,14,rent_and_royalty_net_losses,All,15000.0,20000.0,True,False,False,71717.0 +2021,Table 1.4,BI,14,s_corporation_net_income,All,15000.0,20000.0,False,False,False,592026000.0 +2021,Table 1.4,BK,14,s_corporation_net_losses,All,15000.0,20000.0,False,False,False,1157717000.0 +2021,Table 1.4,BH,14,s_corporation_net_income,All,15000.0,20000.0,True,False,False,56930.0 +2021,Table 1.4,BJ,14,s_corporation_net_losses,All,15000.0,20000.0,True,False,False,36524.0 +2021,Table 1.4,BY,14,taxable_social_security,All,15000.0,20000.0,False,False,False,1390216000.0 +2021,Table 1.4,BX,14,taxable_social_security,All,15000.0,20000.0,True,False,False,1001301.0 +2021,Table 1.4,BW,14,total_social_security,All,15000.0,20000.0,False,False,False,36698208000.0 +2021,Table 1.4,BV,14,total_social_security,All,15000.0,20000.0,True,False,False,1753163.0 +2021,Table 1.4,EI,14,income_tax_before_credits,All,15000.0,20000.0,False,False,False,3112114000.0 +2021,Table 1.4,EH,14,income_tax_before_credits,All,15000.0,20000.0,True,False,False,7085512.0 +2021,Table 1.4,I,14,taxable_interest_income,All,15000.0,20000.0,False,False,False,671713000.0 +2021,Table 1.4,H,14,taxable_interest_income,All,15000.0,20000.0,True,False,False,1435178.0 +2021,Table 1.4,BU,14,unemployment_compensation,All,15000.0,20000.0,False,False,False,24375282000.0 +2021,Table 1.4,BT,14,unemployment_compensation,All,15000.0,20000.0,True,False,False,1878369.0 +2021,Table 1.4,G,14,employment_income,All,15000.0,20000.0,False,False,False,112149988000.0 +2021,Table 1.4,F,14,employment_income,All,15000.0,20000.0,True,False,False,6925718.0 +2021,Table 1.4,EE,15,alternative_minimum_tax,All,20000.0,25000.0,False,False,False,0.0 +2021,Table 1.4,ED,15,alternative_minimum_tax,All,20000.0,25000.0,True,False,False,0.0 +2021,Table 1.4,U,15,business_net_profits,All,20000.0,25000.0,False,False,False,16237426000.0 +2021,Table 1.4,W,15,business_net_losses,All,20000.0,25000.0,False,False,False,4398237000.0 +2021,Table 1.4,T,15,business_net_profits,All,20000.0,25000.0,True,False,False,1258745.0 +2021,Table 1.4,V,15,business_net_losses,All,20000.0,25000.0,True,False,False,404331.0 +2021,Table 1.4,Y,15,capital_gains_distributions,All,20000.0,25000.0,False,False,False,240785000.0 +2021,Table 1.4,X,15,capital_gains_distributions,All,20000.0,25000.0,True,False,False,129200.0 +2021,Table 1.4,AA,15,capital_gains_gross,All,20000.0,25000.0,False,False,False,2033390000.0 +2021,Table 1.4,AC,15,capital_gains_losses,All,20000.0,25000.0,False,False,False,429782000.0 +2021,Table 1.4,Z,15,capital_gains_gross,All,20000.0,25000.0,True,False,False,392742.0 +2021,Table 1.4,AB,15,capital_gains_losses,All,20000.0,25000.0,True,False,False,236185.0 +2021,Table 1.4,BM,15,estate_income,All,20000.0,25000.0,False,False,False,69961000.0 +2021,Table 1.4,BO,15,estate_losses,All,20000.0,25000.0,False,False,False,3736000.0 +2021,Table 1.4,BL,15,estate_income,All,20000.0,25000.0,True,False,False,10425.0 +2021,Table 1.4,BN,15,estate_losses,All,20000.0,25000.0,True,False,False,16.0 +2021,Table 1.4,K,15,exempt_interest,All,20000.0,25000.0,False,False,False,254288000.0 +2021,Table 1.4,J,15,exempt_interest,All,20000.0,25000.0,True,False,False,83587.0 +2021,Table 1.4,AI,15,ira_distributions,All,20000.0,25000.0,False,False,False,4888488000.0 +2021,Table 1.4,AH,15,ira_distributions,All,20000.0,25000.0,True,False,False,490238.0 +2021,Table 1.4,M,15,ordinary_dividends,All,20000.0,25000.0,False,False,False,1464978000.0 +2021,Table 1.4,L,15,ordinary_dividends,All,20000.0,25000.0,True,False,False,685968.0 +2021,Table 1.4,BE,15,partnership_and_s_corp_income,All,20000.0,25000.0,False,False,False,1305887000.0 +2021,Table 1.4,BG,15,partnership_and_s_corp_losses,All,20000.0,25000.0,False,False,False,1138604000.0 +2021,Table 1.4,BD,15,partnership_and_s_corp_income,All,20000.0,25000.0,True,False,False,102791.0 +2021,Table 1.4,BF,15,partnership_and_s_corp_losses,All,20000.0,25000.0,True,False,False,60158.0 +2021,Table 1.4,AK,15,total_pension_income,All,20000.0,25000.0,False,False,False,18785258000.0 +2021,Table 1.4,AJ,15,total_pension_income,All,20000.0,25000.0,True,False,False,1257174.0 +2021,Table 1.4,AM,15,taxable_pension_income,All,20000.0,25000.0,False,False,False,15028717000.0 +2021,Table 1.4,AL,15,taxable_pension_income,All,20000.0,25000.0,True,False,False,1195253.0 +2021,Table 1.4,DY,15,qualified_business_income_deduction,All,20000.0,25000.0,False,False,False,914224000.0 +2021,Table 1.4,DX,15,qualified_business_income_deduction,All,20000.0,25000.0,True,False,False,946007.0 +2021,Table 1.4,O,15,qualified_dividends,All,20000.0,25000.0,False,False,False,895825000.0 +2021,Table 1.4,N,15,qualified_dividends,All,20000.0,25000.0,True,False,False,618604.0 +2021,Table 1.4,BA,15,rent_and_royalty_net_income,All,20000.0,25000.0,False,False,False,1326092000.0 +2021,Table 1.4,BC,15,rent_and_royalty_net_losses,All,20000.0,25000.0,False,False,False,958872000.0 +2021,Table 1.4,AZ,15,rent_and_royalty_net_income,All,20000.0,25000.0,True,False,False,173129.0 +2021,Table 1.4,BB,15,rent_and_royalty_net_losses,All,20000.0,25000.0,True,False,False,87413.0 +2021,Table 1.4,BI,15,s_corporation_net_income,All,20000.0,25000.0,False,False,False,779624000.0 +2021,Table 1.4,BK,15,s_corporation_net_losses,All,20000.0,25000.0,False,False,False,690852000.0 +2021,Table 1.4,BH,15,s_corporation_net_income,All,20000.0,25000.0,True,False,False,57490.0 +2021,Table 1.4,BJ,15,s_corporation_net_losses,All,20000.0,25000.0,True,False,False,28645.0 +2021,Table 1.4,BY,15,taxable_social_security,All,20000.0,25000.0,False,False,False,3274619000.0 +2021,Table 1.4,BX,15,taxable_social_security,All,20000.0,25000.0,True,False,False,1239135.0 +2021,Table 1.4,BW,15,total_social_security,All,20000.0,25000.0,False,False,False,32270846000.0 +2021,Table 1.4,BV,15,total_social_security,All,20000.0,25000.0,True,False,False,1443145.0 +2021,Table 1.4,EI,15,income_tax_before_credits,All,20000.0,25000.0,False,False,False,6155804000.0 +2021,Table 1.4,EH,15,income_tax_before_credits,All,20000.0,25000.0,True,False,False,7525781.0 +2021,Table 1.4,I,15,taxable_interest_income,All,20000.0,25000.0,False,False,False,678317000.0 +2021,Table 1.4,H,15,taxable_interest_income,All,20000.0,25000.0,True,False,False,1439606.0 +2021,Table 1.4,BU,15,unemployment_compensation,All,20000.0,25000.0,False,False,False,23100700000.0 +2021,Table 1.4,BT,15,unemployment_compensation,All,20000.0,25000.0,True,False,False,1642065.0 +2021,Table 1.4,G,15,employment_income,All,20000.0,25000.0,False,False,False,140010172000.0 +2021,Table 1.4,F,15,employment_income,All,20000.0,25000.0,True,False,False,6845285.0 +2021,Table 1.4,EE,16,alternative_minimum_tax,All,25000.0,30000.0,False,False,False,97684000.0 +2021,Table 1.4,ED,16,alternative_minimum_tax,All,25000.0,30000.0,True,False,False,1183.0 +2021,Table 1.4,U,16,business_net_profits,All,25000.0,30000.0,False,False,False,15467287000.0 +2021,Table 1.4,W,16,business_net_losses,All,25000.0,30000.0,False,False,False,4249474000.0 +2021,Table 1.4,T,16,business_net_profits,All,25000.0,30000.0,True,False,False,1060963.0 +2021,Table 1.4,V,16,business_net_losses,All,25000.0,30000.0,True,False,False,398390.0 +2021,Table 1.4,Y,16,capital_gains_distributions,All,25000.0,30000.0,False,False,False,259495000.0 +2021,Table 1.4,X,16,capital_gains_distributions,All,25000.0,30000.0,True,False,False,103882.0 +2021,Table 1.4,AA,16,capital_gains_gross,All,25000.0,30000.0,False,False,False,2354104000.0 +2021,Table 1.4,AC,16,capital_gains_losses,All,25000.0,30000.0,False,False,False,453545000.0 +2021,Table 1.4,Z,16,capital_gains_gross,All,25000.0,30000.0,True,False,False,422949.0 +2021,Table 1.4,AB,16,capital_gains_losses,All,25000.0,30000.0,True,False,False,248004.0 +2021,Table 1.4,BM,16,estate_income,All,25000.0,30000.0,False,False,False,91435000.0 +2021,Table 1.4,BO,16,estate_losses,All,25000.0,30000.0,False,False,False,833000.0 +2021,Table 1.4,BL,16,estate_income,All,25000.0,30000.0,True,False,False,9174.0 +2021,Table 1.4,BN,16,estate_losses,All,25000.0,30000.0,True,False,False,54.0 +2021,Table 1.4,K,16,exempt_interest,All,25000.0,30000.0,False,False,False,183046000.0 +2021,Table 1.4,J,16,exempt_interest,All,25000.0,30000.0,True,False,False,84213.0 +2021,Table 1.4,AI,16,ira_distributions,All,25000.0,30000.0,False,False,False,5079260000.0 +2021,Table 1.4,AH,16,ira_distributions,All,25000.0,30000.0,True,False,False,509524.0 +2021,Table 1.4,M,16,ordinary_dividends,All,25000.0,30000.0,False,False,False,1551754000.0 +2021,Table 1.4,L,16,ordinary_dividends,All,25000.0,30000.0,True,False,False,686838.0 +2021,Table 1.4,BE,16,partnership_and_s_corp_income,All,25000.0,30000.0,False,False,False,1922619000.0 +2021,Table 1.4,BG,16,partnership_and_s_corp_losses,All,25000.0,30000.0,False,False,False,1372282000.0 +2021,Table 1.4,BD,16,partnership_and_s_corp_income,All,25000.0,30000.0,True,False,False,115715.0 +2021,Table 1.4,BF,16,partnership_and_s_corp_losses,All,25000.0,30000.0,True,False,False,63849.0 +2021,Table 1.4,AK,16,total_pension_income,All,25000.0,30000.0,False,False,False,22377250000.0 +2021,Table 1.4,AJ,16,total_pension_income,All,25000.0,30000.0,True,False,False,1258069.0 +2021,Table 1.4,AM,16,taxable_pension_income,All,25000.0,30000.0,False,False,False,16915492000.0 +2021,Table 1.4,AL,16,taxable_pension_income,All,25000.0,30000.0,True,False,False,1176711.0 +2021,Table 1.4,DY,16,qualified_business_income_deduction,All,25000.0,30000.0,False,False,False,1222867000.0 +2021,Table 1.4,DX,16,qualified_business_income_deduction,All,25000.0,30000.0,True,False,False,1073605.0 +2021,Table 1.4,O,16,qualified_dividends,All,25000.0,30000.0,False,False,False,934172000.0 +2021,Table 1.4,N,16,qualified_dividends,All,25000.0,30000.0,True,False,False,628482.0 +2021,Table 1.4,BA,16,rent_and_royalty_net_income,All,25000.0,30000.0,False,False,False,1243079000.0 +2021,Table 1.4,BC,16,rent_and_royalty_net_losses,All,25000.0,30000.0,False,False,False,892664000.0 +2021,Table 1.4,AZ,16,rent_and_royalty_net_income,All,25000.0,30000.0,True,False,False,163891.0 +2021,Table 1.4,BB,16,rent_and_royalty_net_losses,All,25000.0,30000.0,True,False,False,100383.0 +2021,Table 1.4,BI,16,s_corporation_net_income,All,25000.0,30000.0,False,False,False,1069086000.0 +2021,Table 1.4,BK,16,s_corporation_net_losses,All,25000.0,30000.0,False,False,False,896241000.0 +2021,Table 1.4,BH,16,s_corporation_net_income,All,25000.0,30000.0,True,False,False,67025.0 +2021,Table 1.4,BJ,16,s_corporation_net_losses,All,25000.0,30000.0,True,False,False,28773.0 +2021,Table 1.4,BY,16,taxable_social_security,All,25000.0,30000.0,False,False,False,5194320000.0 +2021,Table 1.4,BX,16,taxable_social_security,All,25000.0,30000.0,True,False,False,1280188.0 +2021,Table 1.4,BW,16,total_social_security,All,25000.0,30000.0,False,False,False,30607751000.0 +2021,Table 1.4,BV,16,total_social_security,All,25000.0,30000.0,True,False,False,1320304.0 +2021,Table 1.4,EI,16,income_tax_before_credits,All,25000.0,30000.0,False,False,False,10227467000.0 +2021,Table 1.4,EH,16,income_tax_before_credits,All,25000.0,30000.0,True,False,False,8333779.0 +2021,Table 1.4,I,16,taxable_interest_income,All,25000.0,30000.0,False,False,False,739131000.0 +2021,Table 1.4,H,16,taxable_interest_income,All,25000.0,30000.0,True,False,False,1470320.0 +2021,Table 1.4,BU,16,unemployment_compensation,All,25000.0,30000.0,False,False,False,20127231000.0 +2021,Table 1.4,BT,16,unemployment_compensation,All,25000.0,30000.0,True,False,False,1390637.0 +2021,Table 1.4,G,16,employment_income,All,25000.0,30000.0,False,False,False,181173976000.0 +2021,Table 1.4,F,16,employment_income,All,25000.0,30000.0,True,False,False,7155012.0 +2021,Table 1.4,EE,17,alternative_minimum_tax,All,30000.0,40000.0,False,False,False,872000.0 +2021,Table 1.4,ED,17,alternative_minimum_tax,All,30000.0,40000.0,True,False,False,100.0 +2021,Table 1.4,U,17,business_net_profits,All,30000.0,40000.0,False,False,False,26647935000.0 +2021,Table 1.4,W,17,business_net_losses,All,30000.0,40000.0,False,False,False,7839859000.0 +2021,Table 1.4,T,17,business_net_profits,All,30000.0,40000.0,True,False,False,1633405.0 +2021,Table 1.4,V,17,business_net_losses,All,30000.0,40000.0,True,False,False,731244.0 +2021,Table 1.4,Y,17,capital_gains_distributions,All,30000.0,40000.0,False,False,False,639548000.0 +2021,Table 1.4,X,17,capital_gains_distributions,All,30000.0,40000.0,True,False,False,242939.0 +2021,Table 1.4,AA,17,capital_gains_gross,All,30000.0,40000.0,False,False,False,5913774000.0 +2021,Table 1.4,AC,17,capital_gains_losses,All,30000.0,40000.0,False,False,False,811885000.0 +2021,Table 1.4,Z,17,capital_gains_gross,All,30000.0,40000.0,True,False,False,907889.0 +2021,Table 1.4,AB,17,capital_gains_losses,All,30000.0,40000.0,True,False,False,466004.0 +2021,Table 1.4,BM,17,estate_income,All,30000.0,40000.0,False,False,False,128784000.0 +2021,Table 1.4,BO,17,estate_losses,All,30000.0,40000.0,False,False,False,39521000.0 +2021,Table 1.4,BL,17,estate_income,All,30000.0,40000.0,True,False,False,17740.0 +2021,Table 1.4,BN,17,estate_losses,All,30000.0,40000.0,True,False,False,2217.0 +2021,Table 1.4,K,17,exempt_interest,All,30000.0,40000.0,False,False,False,485953000.0 +2021,Table 1.4,J,17,exempt_interest,All,30000.0,40000.0,True,False,False,185185.0 +2021,Table 1.4,AI,17,ira_distributions,All,30000.0,40000.0,False,False,False,9886903000.0 +2021,Table 1.4,AH,17,ira_distributions,All,30000.0,40000.0,True,False,False,887479.0 +2021,Table 1.4,M,17,ordinary_dividends,All,30000.0,40000.0,False,False,False,3306237000.0 +2021,Table 1.4,L,17,ordinary_dividends,All,30000.0,40000.0,True,False,False,1480384.0 +2021,Table 1.4,BE,17,partnership_and_s_corp_income,All,30000.0,40000.0,False,False,False,3983255000.0 +2021,Table 1.4,BG,17,partnership_and_s_corp_losses,All,30000.0,40000.0,False,False,False,2643384000.0 +2021,Table 1.4,BD,17,partnership_and_s_corp_income,All,30000.0,40000.0,True,False,False,236011.0 +2021,Table 1.4,BF,17,partnership_and_s_corp_losses,All,30000.0,40000.0,True,False,False,123148.0 +2021,Table 1.4,AK,17,total_pension_income,All,30000.0,40000.0,False,False,False,50636533000.0 +2021,Table 1.4,AJ,17,total_pension_income,All,30000.0,40000.0,True,False,False,2362435.0 +2021,Table 1.4,AM,17,taxable_pension_income,All,30000.0,40000.0,False,False,False,36742864000.0 +2021,Table 1.4,AL,17,taxable_pension_income,All,30000.0,40000.0,True,False,False,2197626.0 +2021,Table 1.4,DY,17,qualified_business_income_deduction,All,30000.0,40000.0,False,False,False,2872968000.0 +2021,Table 1.4,DX,17,qualified_business_income_deduction,All,30000.0,40000.0,True,False,False,1812616.0 +2021,Table 1.4,O,17,qualified_dividends,All,30000.0,40000.0,False,False,False,2196487000.0 +2021,Table 1.4,N,17,qualified_dividends,All,30000.0,40000.0,True,False,False,1363506.0 +2021,Table 1.4,BA,17,rent_and_royalty_net_income,All,30000.0,40000.0,False,False,False,2333608000.0 +2021,Table 1.4,BC,17,rent_and_royalty_net_losses,All,30000.0,40000.0,False,False,False,2145126000.0 +2021,Table 1.4,AZ,17,rent_and_royalty_net_income,All,30000.0,40000.0,True,False,False,271019.0 +2021,Table 1.4,BB,17,rent_and_royalty_net_losses,All,30000.0,40000.0,True,False,False,201219.0 +2021,Table 1.4,BI,17,s_corporation_net_income,All,30000.0,40000.0,False,False,False,2553876000.0 +2021,Table 1.4,BK,17,s_corporation_net_losses,All,30000.0,40000.0,False,False,False,1582533000.0 +2021,Table 1.4,BH,17,s_corporation_net_income,All,30000.0,40000.0,True,False,False,146497.0 +2021,Table 1.4,BJ,17,s_corporation_net_losses,All,30000.0,40000.0,True,False,False,66998.0 +2021,Table 1.4,BY,17,taxable_social_security,All,30000.0,40000.0,False,False,False,14547676000.0 +2021,Table 1.4,BX,17,taxable_social_security,All,30000.0,40000.0,True,False,False,2171147.0 +2021,Table 1.4,BW,17,total_social_security,All,30000.0,40000.0,False,False,False,50301193000.0 +2021,Table 1.4,BV,17,total_social_security,All,30000.0,40000.0,True,False,False,2173266.0 +2021,Table 1.4,EI,17,income_tax_before_credits,All,30000.0,40000.0,False,False,False,31177700000.0 +2021,Table 1.4,EH,17,income_tax_before_credits,All,30000.0,40000.0,True,False,False,15914155.0 +2021,Table 1.4,I,17,taxable_interest_income,All,30000.0,40000.0,False,False,False,1349938000.0 +2021,Table 1.4,H,17,taxable_interest_income,All,30000.0,40000.0,True,False,False,2801612.0 +2021,Table 1.4,BU,17,unemployment_compensation,All,30000.0,40000.0,False,False,False,29558905000.0 +2021,Table 1.4,BT,17,unemployment_compensation,All,30000.0,40000.0,True,False,False,2022975.0 +2021,Table 1.4,G,17,employment_income,All,30000.0,40000.0,False,False,False,445172100000.0 +2021,Table 1.4,F,17,employment_income,All,30000.0,40000.0,True,False,False,13754153.0 +2021,Table 1.4,EE,18,alternative_minimum_tax,All,40000.0,50000.0,False,False,False,1319000.0 +2021,Table 1.4,ED,18,alternative_minimum_tax,All,40000.0,50000.0,True,False,False,89.0 +2021,Table 1.4,U,18,business_net_profits,All,40000.0,50000.0,False,False,False,22811556000.0 +2021,Table 1.4,W,18,business_net_losses,All,40000.0,50000.0,False,False,False,6422149000.0 +2021,Table 1.4,T,18,business_net_profits,All,40000.0,50000.0,True,False,False,1255792.0 +2021,Table 1.4,V,18,business_net_losses,All,40000.0,50000.0,True,False,False,614437.0 +2021,Table 1.4,Y,18,capital_gains_distributions,All,40000.0,50000.0,False,False,False,778440000.0 +2021,Table 1.4,X,18,capital_gains_distributions,All,40000.0,50000.0,True,False,False,262877.0 +2021,Table 1.4,AA,18,capital_gains_gross,All,40000.0,50000.0,False,False,False,6347528000.0 +2021,Table 1.4,AC,18,capital_gains_losses,All,40000.0,50000.0,False,False,False,764543000.0 +2021,Table 1.4,Z,18,capital_gains_gross,All,40000.0,50000.0,True,False,False,975226.0 +2021,Table 1.4,AB,18,capital_gains_losses,All,40000.0,50000.0,True,False,False,414682.0 +2021,Table 1.4,BM,18,estate_income,All,40000.0,50000.0,False,False,False,201827000.0 +2021,Table 1.4,BO,18,estate_losses,All,40000.0,50000.0,False,False,False,10079000.0 +2021,Table 1.4,BL,18,estate_income,All,40000.0,50000.0,True,False,False,15074.0 +2021,Table 1.4,BN,18,estate_losses,All,40000.0,50000.0,True,False,False,368.0 +2021,Table 1.4,K,18,exempt_interest,All,40000.0,50000.0,False,False,False,674362000.0 +2021,Table 1.4,J,18,exempt_interest,All,40000.0,50000.0,True,False,False,241353.0 +2021,Table 1.4,AI,18,ira_distributions,All,40000.0,50000.0,False,False,False,11265236000.0 +2021,Table 1.4,AH,18,ira_distributions,All,40000.0,50000.0,True,False,False,926489.0 +2021,Table 1.4,M,18,ordinary_dividends,All,40000.0,50000.0,False,False,False,3821977000.0 +2021,Table 1.4,L,18,ordinary_dividends,All,40000.0,50000.0,True,False,False,1585276.0 +2021,Table 1.4,BE,18,partnership_and_s_corp_income,All,40000.0,50000.0,False,False,False,4619794000.0 +2021,Table 1.4,BG,18,partnership_and_s_corp_losses,All,40000.0,50000.0,False,False,False,1998743000.0 +2021,Table 1.4,BD,18,partnership_and_s_corp_income,All,40000.0,50000.0,True,False,False,228209.0 +2021,Table 1.4,BF,18,partnership_and_s_corp_losses,All,40000.0,50000.0,True,False,False,118522.0 +2021,Table 1.4,AK,18,total_pension_income,All,40000.0,50000.0,False,False,False,52865761000.0 +2021,Table 1.4,AJ,18,total_pension_income,All,40000.0,50000.0,True,False,False,2237532.0 +2021,Table 1.4,AM,18,taxable_pension_income,All,40000.0,50000.0,False,False,False,40461903000.0 +2021,Table 1.4,AL,18,taxable_pension_income,All,40000.0,50000.0,True,False,False,2079488.0 +2021,Table 1.4,DY,18,qualified_business_income_deduction,All,40000.0,50000.0,False,False,False,3191541000.0 +2021,Table 1.4,DX,18,qualified_business_income_deduction,All,40000.0,50000.0,True,False,False,1609597.0 +2021,Table 1.4,O,18,qualified_dividends,All,40000.0,50000.0,False,False,False,2523390000.0 +2021,Table 1.4,N,18,qualified_dividends,All,40000.0,50000.0,True,False,False,1474068.0 +2021,Table 1.4,BA,18,rent_and_royalty_net_income,All,40000.0,50000.0,False,False,False,2115656000.0 +2021,Table 1.4,BC,18,rent_and_royalty_net_losses,All,40000.0,50000.0,False,False,False,1763351000.0 +2021,Table 1.4,AZ,18,rent_and_royalty_net_income,All,40000.0,50000.0,True,False,False,289556.0 +2021,Table 1.4,BB,18,rent_and_royalty_net_losses,All,40000.0,50000.0,True,False,False,188133.0 +2021,Table 1.4,BI,18,s_corporation_net_income,All,40000.0,50000.0,False,False,False,2703861000.0 +2021,Table 1.4,BK,18,s_corporation_net_losses,All,40000.0,50000.0,False,False,False,1062758000.0 +2021,Table 1.4,BH,18,s_corporation_net_income,All,40000.0,50000.0,True,False,False,127348.0 +2021,Table 1.4,BJ,18,s_corporation_net_losses,All,40000.0,50000.0,True,False,False,47866.0 +2021,Table 1.4,BY,18,taxable_social_security,All,40000.0,50000.0,False,False,False,20950320000.0 +2021,Table 1.4,BX,18,taxable_social_security,All,40000.0,50000.0,True,False,False,1960565.0 +2021,Table 1.4,BW,18,total_social_security,All,40000.0,50000.0,False,False,False,45283931000.0 +2021,Table 1.4,BV,18,total_social_security,All,40000.0,50000.0,True,False,False,1960809.0 +2021,Table 1.4,EI,18,income_tax_before_credits,All,40000.0,50000.0,False,False,False,38366413000.0 +2021,Table 1.4,EH,18,income_tax_before_credits,All,40000.0,50000.0,True,False,False,12678971.0 +2021,Table 1.4,I,18,taxable_interest_income,All,40000.0,50000.0,False,False,False,1523359000.0 +2021,Table 1.4,H,18,taxable_interest_income,All,40000.0,50000.0,True,False,False,2917116.0 +2021,Table 1.4,BU,18,unemployment_compensation,All,40000.0,50000.0,False,False,False,18740477000.0 +2021,Table 1.4,BT,18,unemployment_compensation,All,40000.0,50000.0,True,False,False,1312942.0 +2021,Table 1.4,G,18,employment_income,All,40000.0,50000.0,False,False,False,456243382000.0 +2021,Table 1.4,F,18,employment_income,All,40000.0,50000.0,True,False,False,10991851.0 +2021,Table 1.4,EE,19,alternative_minimum_tax,All,50000.0,75000.0,False,False,False,25173000.0 +2021,Table 1.4,ED,19,alternative_minimum_tax,All,50000.0,75000.0,True,False,False,2897.0 +2021,Table 1.4,U,19,business_net_profits,All,50000.0,75000.0,False,False,False,48371161000.0 +2021,Table 1.4,W,19,business_net_losses,All,50000.0,75000.0,False,False,False,9576425000.0 +2021,Table 1.4,T,19,business_net_profits,All,50000.0,75000.0,True,False,False,2395327.0 +2021,Table 1.4,V,19,business_net_losses,All,50000.0,75000.0,True,False,False,1000873.0 +2021,Table 1.4,Y,19,capital_gains_distributions,All,50000.0,75000.0,False,False,False,2211122000.0 +2021,Table 1.4,X,19,capital_gains_distributions,All,50000.0,75000.0,True,False,False,690766.0 +2021,Table 1.4,AA,19,capital_gains_gross,All,50000.0,75000.0,False,False,False,20655401000.0 +2021,Table 1.4,AC,19,capital_gains_losses,All,50000.0,75000.0,False,False,False,1890497000.0 +2021,Table 1.4,Z,19,capital_gains_gross,All,50000.0,75000.0,True,False,False,2364604.0 +2021,Table 1.4,AB,19,capital_gains_losses,All,50000.0,75000.0,True,False,False,1009155.0 +2021,Table 1.4,BM,19,estate_income,All,50000.0,75000.0,False,False,False,600148000.0 +2021,Table 1.4,BO,19,estate_losses,All,50000.0,75000.0,False,False,False,93978000.0 +2021,Table 1.4,BL,19,estate_income,All,50000.0,75000.0,True,False,False,45850.0 +2021,Table 1.4,BN,19,estate_losses,All,50000.0,75000.0,True,False,False,1337.0 +2021,Table 1.4,K,19,exempt_interest,All,50000.0,75000.0,False,False,False,1839498000.0 +2021,Table 1.4,J,19,exempt_interest,All,50000.0,75000.0,True,False,False,639872.0 +2021,Table 1.4,AI,19,ira_distributions,All,50000.0,75000.0,False,False,False,32852491000.0 +2021,Table 1.4,AH,19,ira_distributions,All,50000.0,75000.0,True,False,False,2255659.0 +2021,Table 1.4,M,19,ordinary_dividends,All,50000.0,75000.0,False,False,False,12460005000.0 +2021,Table 1.4,L,19,ordinary_dividends,All,50000.0,75000.0,True,False,False,3974772.0 +2021,Table 1.4,BE,19,partnership_and_s_corp_income,All,50000.0,75000.0,False,False,False,15009727000.0 +2021,Table 1.4,BG,19,partnership_and_s_corp_losses,All,50000.0,75000.0,False,False,False,7096586000.0 +2021,Table 1.4,BD,19,partnership_and_s_corp_income,All,50000.0,75000.0,True,False,False,606696.0 +2021,Table 1.4,BF,19,partnership_and_s_corp_losses,All,50000.0,75000.0,True,False,False,315753.0 +2021,Table 1.4,AK,19,total_pension_income,All,50000.0,75000.0,False,False,False,164394888000.0 +2021,Table 1.4,AJ,19,total_pension_income,All,50000.0,75000.0,True,False,False,5090890.0 +2021,Table 1.4,AM,19,taxable_pension_income,All,50000.0,75000.0,False,False,False,118581365000.0 +2021,Table 1.4,AL,19,taxable_pension_income,All,50000.0,75000.0,True,False,False,4737483.0 +2021,Table 1.4,DY,19,qualified_business_income_deduction,All,50000.0,75000.0,False,False,False,9015688000.0 +2021,Table 1.4,DX,19,qualified_business_income_deduction,All,50000.0,75000.0,True,False,False,3515828.0 +2021,Table 1.4,O,19,qualified_dividends,All,50000.0,75000.0,False,False,False,8599225000.0 +2021,Table 1.4,N,19,qualified_dividends,All,50000.0,75000.0,True,False,False,3723163.0 +2021,Table 1.4,BA,19,rent_and_royalty_net_income,All,50000.0,75000.0,False,False,False,8102192000.0 +2021,Table 1.4,BC,19,rent_and_royalty_net_losses,All,50000.0,75000.0,False,False,False,5248649000.0 +2021,Table 1.4,AZ,19,rent_and_royalty_net_income,All,50000.0,75000.0,True,False,False,759142.0 +2021,Table 1.4,BB,19,rent_and_royalty_net_losses,All,50000.0,75000.0,True,False,False,512458.0 +2021,Table 1.4,BI,19,s_corporation_net_income,All,50000.0,75000.0,False,False,False,9980514000.0 +2021,Table 1.4,BK,19,s_corporation_net_losses,All,50000.0,75000.0,False,False,False,4382315000.0 +2021,Table 1.4,BH,19,s_corporation_net_income,All,50000.0,75000.0,True,False,False,351051.0 +2021,Table 1.4,BJ,19,s_corporation_net_losses,All,50000.0,75000.0,True,False,False,160626.0 +2021,Table 1.4,BY,19,taxable_social_security,All,50000.0,75000.0,False,False,False,71433500000.0 +2021,Table 1.4,BX,19,taxable_social_security,All,50000.0,75000.0,True,False,False,4372880.0 +2021,Table 1.4,BW,19,total_social_security,All,50000.0,75000.0,False,False,False,104788772000.0 +2021,Table 1.4,BV,19,total_social_security,All,50000.0,75000.0,True,False,False,4373045.0 +2021,Table 1.4,EI,19,income_tax_before_credits,All,50000.0,75000.0,False,False,False,115766605000.0 +2021,Table 1.4,EH,19,income_tax_before_credits,All,50000.0,75000.0,True,False,False,22515023.0 +2021,Table 1.4,I,19,taxable_interest_income,All,50000.0,75000.0,False,False,False,4385387000.0 +2021,Table 1.4,H,19,taxable_interest_income,All,50000.0,75000.0,True,False,False,6685822.0 +2021,Table 1.4,BU,19,unemployment_compensation,All,50000.0,75000.0,False,False,False,28035317000.0 +2021,Table 1.4,BT,19,unemployment_compensation,All,50000.0,75000.0,True,False,False,2011827.0 +2021,Table 1.4,G,19,employment_income,All,50000.0,75000.0,False,False,False,1063075172000.0 +2021,Table 1.4,F,19,employment_income,All,50000.0,75000.0,True,False,False,19109110.0 +2021,Table 1.4,EE,20,alternative_minimum_tax,All,75000.0,100000.0,False,False,False,9598000.0 +2021,Table 1.4,ED,20,alternative_minimum_tax,All,75000.0,100000.0,True,False,False,3925.0 +2021,Table 1.4,U,20,business_net_profits,All,75000.0,100000.0,False,False,False,36692610000.0 +2021,Table 1.4,W,20,business_net_losses,All,75000.0,100000.0,False,False,False,7506827000.0 +2021,Table 1.4,T,20,business_net_profits,All,75000.0,100000.0,True,False,False,1620171.0 +2021,Table 1.4,V,20,business_net_losses,All,75000.0,100000.0,True,False,False,712587.0 +2021,Table 1.4,Y,20,capital_gains_distributions,All,75000.0,100000.0,False,False,False,2396707000.0 +2021,Table 1.4,X,20,capital_gains_distributions,All,75000.0,100000.0,True,False,False,576208.0 +2021,Table 1.4,AA,20,capital_gains_gross,All,75000.0,100000.0,False,False,False,27763563000.0 +2021,Table 1.4,AC,20,capital_gains_losses,All,75000.0,100000.0,False,False,False,1644525000.0 +2021,Table 1.4,Z,20,capital_gains_gross,All,75000.0,100000.0,True,False,False,2289026.0 +2021,Table 1.4,AB,20,capital_gains_losses,All,75000.0,100000.0,True,False,False,853928.0 +2021,Table 1.4,BM,20,estate_income,All,75000.0,100000.0,False,False,False,889093000.0 +2021,Table 1.4,BO,20,estate_losses,All,75000.0,100000.0,False,False,False,35427000.0 +2021,Table 1.4,BL,20,estate_income,All,75000.0,100000.0,True,False,False,66873.0 +2021,Table 1.4,BN,20,estate_losses,All,75000.0,100000.0,True,False,False,4539.0 +2021,Table 1.4,K,20,exempt_interest,All,75000.0,100000.0,False,False,False,1906837000.0 +2021,Table 1.4,J,20,exempt_interest,All,75000.0,100000.0,True,False,False,630282.0 +2021,Table 1.4,AI,20,ira_distributions,All,75000.0,100000.0,False,False,False,39055981000.0 +2021,Table 1.4,AH,20,ira_distributions,All,75000.0,100000.0,True,False,False,2007006.0 +2021,Table 1.4,M,20,ordinary_dividends,All,75000.0,100000.0,False,False,False,13739836000.0 +2021,Table 1.4,L,20,ordinary_dividends,All,75000.0,100000.0,True,False,False,3723238.0 +2021,Table 1.4,BE,20,partnership_and_s_corp_income,All,75000.0,100000.0,False,False,False,18667765000.0 +2021,Table 1.4,BG,20,partnership_and_s_corp_losses,All,75000.0,100000.0,False,False,False,6088365000.0 +2021,Table 1.4,BD,20,partnership_and_s_corp_income,All,75000.0,100000.0,True,False,False,578825.0 +2021,Table 1.4,BF,20,partnership_and_s_corp_losses,All,75000.0,100000.0,True,False,False,289414.0 +2021,Table 1.4,AK,20,total_pension_income,All,75000.0,100000.0,False,False,False,183811124000.0 +2021,Table 1.4,AJ,20,total_pension_income,All,75000.0,100000.0,True,False,False,4189391.0 +2021,Table 1.4,AM,20,taxable_pension_income,All,75000.0,100000.0,False,False,False,122865979000.0 +2021,Table 1.4,AL,20,taxable_pension_income,All,75000.0,100000.0,True,False,False,3870768.0 +2021,Table 1.4,DY,20,qualified_business_income_deduction,All,75000.0,100000.0,False,False,False,8543742000.0 +2021,Table 1.4,DX,20,qualified_business_income_deduction,All,75000.0,100000.0,True,False,False,2824372.0 +2021,Table 1.4,O,20,qualified_dividends,All,75000.0,100000.0,False,False,False,9314082000.0 +2021,Table 1.4,N,20,qualified_dividends,All,75000.0,100000.0,True,False,False,3518585.0 +2021,Table 1.4,BA,20,rent_and_royalty_net_income,All,75000.0,100000.0,False,False,False,7488793000.0 +2021,Table 1.4,BC,20,rent_and_royalty_net_losses,All,75000.0,100000.0,False,False,False,5334809000.0 +2021,Table 1.4,AZ,20,rent_and_royalty_net_income,All,75000.0,100000.0,True,False,False,711934.0 +2021,Table 1.4,BB,20,rent_and_royalty_net_losses,All,75000.0,100000.0,True,False,False,506912.0 +2021,Table 1.4,BI,20,s_corporation_net_income,All,75000.0,100000.0,False,False,False,12626016000.0 +2021,Table 1.4,BK,20,s_corporation_net_losses,All,75000.0,100000.0,False,False,False,3469917000.0 +2021,Table 1.4,BH,20,s_corporation_net_income,All,75000.0,100000.0,True,False,False,344190.0 +2021,Table 1.4,BJ,20,s_corporation_net_losses,All,75000.0,100000.0,True,False,False,125252.0 +2021,Table 1.4,BY,20,taxable_social_security,All,75000.0,100000.0,False,False,False,73935780000.0 +2021,Table 1.4,BX,20,taxable_social_security,All,75000.0,100000.0,True,False,False,3446381.0 +2021,Table 1.4,BW,20,total_social_security,All,75000.0,100000.0,False,False,False,90885785000.0 +2021,Table 1.4,BV,20,total_social_security,All,75000.0,100000.0,True,False,False,3447623.0 +2021,Table 1.4,EI,20,income_tax_before_credits,All,75000.0,100000.0,False,False,False,124411058000.0 +2021,Table 1.4,EH,20,income_tax_before_credits,All,75000.0,100000.0,True,False,False,14601342.0 +2021,Table 1.4,I,20,taxable_interest_income,All,75000.0,100000.0,False,False,False,4173567000.0 +2021,Table 1.4,H,20,taxable_interest_income,All,75000.0,100000.0,True,False,False,5884358.0 +2021,Table 1.4,BU,20,unemployment_compensation,All,75000.0,100000.0,False,False,False,17043811000.0 +2021,Table 1.4,BT,20,unemployment_compensation,All,75000.0,100000.0,True,False,False,1289395.0 +2021,Table 1.4,G,20,employment_income,All,75000.0,100000.0,False,False,False,933327679000.0 +2021,Table 1.4,F,20,employment_income,All,75000.0,100000.0,True,False,False,12291548.0 +2021,Table 1.4,EE,21,alternative_minimum_tax,All,100000.0,200000.0,False,False,False,134503000.0 +2021,Table 1.4,ED,21,alternative_minimum_tax,All,100000.0,200000.0,True,False,False,16341.0 +2021,Table 1.4,U,21,business_net_profits,All,100000.0,200000.0,False,False,False,97740921000.0 +2021,Table 1.4,W,21,business_net_losses,All,100000.0,200000.0,False,False,False,13077153000.0 +2021,Table 1.4,T,21,business_net_profits,All,100000.0,200000.0,True,False,False,3193268.0 +2021,Table 1.4,V,21,business_net_losses,All,100000.0,200000.0,True,False,False,1328596.0 +2021,Table 1.4,Y,21,capital_gains_distributions,All,100000.0,200000.0,False,False,False,7791104000.0 +2021,Table 1.4,X,21,capital_gains_distributions,All,100000.0,200000.0,True,False,False,1277399.0 +2021,Table 1.4,AA,21,capital_gains_gross,All,100000.0,200000.0,False,False,False,126157757000.0 +2021,Table 1.4,AC,21,capital_gains_losses,All,100000.0,200000.0,False,False,False,3937902000.0 +2021,Table 1.4,Z,21,capital_gains_gross,All,100000.0,200000.0,True,False,False,5731237.0 +2021,Table 1.4,AB,21,capital_gains_losses,All,100000.0,200000.0,True,False,False,1948252.0 +2021,Table 1.4,BM,21,estate_income,All,100000.0,200000.0,False,False,False,4607196000.0 +2021,Table 1.4,BO,21,estate_losses,All,100000.0,200000.0,False,False,False,99732000.0 +2021,Table 1.4,BL,21,estate_income,All,100000.0,200000.0,True,False,False,179736.0 +2021,Table 1.4,BN,21,estate_losses,All,100000.0,200000.0,True,False,False,11440.0 +2021,Table 1.4,K,21,exempt_interest,All,100000.0,200000.0,False,False,False,8917871000.0 +2021,Table 1.4,J,21,exempt_interest,All,100000.0,200000.0,True,False,False,1867180.0 +2021,Table 1.4,AI,21,ira_distributions,All,100000.0,200000.0,False,False,False,131891844000.0 +2021,Table 1.4,AH,21,ira_distributions,All,100000.0,200000.0,True,False,False,4181158.0 +2021,Table 1.4,M,21,ordinary_dividends,All,100000.0,200000.0,False,False,False,51096349000.0 +2021,Table 1.4,L,21,ordinary_dividends,All,100000.0,200000.0,True,False,False,8972329.0 +2021,Table 1.4,BE,21,partnership_and_s_corp_income,All,100000.0,200000.0,False,False,False,78156489000.0 +2021,Table 1.4,BG,21,partnership_and_s_corp_losses,All,100000.0,200000.0,False,False,False,18194486000.0 +2021,Table 1.4,BD,21,partnership_and_s_corp_income,All,100000.0,200000.0,True,False,False,1785491.0 +2021,Table 1.4,BF,21,partnership_and_s_corp_losses,All,100000.0,200000.0,True,False,False,818577.0 +2021,Table 1.4,AK,21,total_pension_income,All,100000.0,200000.0,False,False,False,502675859000.0 +2021,Table 1.4,AJ,21,total_pension_income,All,100000.0,200000.0,True,False,False,7698980.0 +2021,Table 1.4,AM,21,taxable_pension_income,All,100000.0,200000.0,False,False,False,295456804000.0 +2021,Table 1.4,AL,21,taxable_pension_income,All,100000.0,200000.0,True,False,False,6914014.0 +2021,Table 1.4,DY,21,qualified_business_income_deduction,All,100000.0,200000.0,False,False,False,29732755000.0 +2021,Table 1.4,DX,21,qualified_business_income_deduction,All,100000.0,200000.0,True,False,False,6739276.0 +2021,Table 1.4,O,21,qualified_dividends,All,100000.0,200000.0,False,False,False,36162406000.0 +2021,Table 1.4,N,21,qualified_dividends,All,100000.0,200000.0,True,False,False,8568560.0 +2021,Table 1.4,BA,21,rent_and_royalty_net_income,All,100000.0,200000.0,False,False,False,23848755000.0 +2021,Table 1.4,BC,21,rent_and_royalty_net_losses,All,100000.0,200000.0,False,False,False,10158810000.0 +2021,Table 1.4,AZ,21,rent_and_royalty_net_income,All,100000.0,200000.0,True,False,False,1629877.0 +2021,Table 1.4,BB,21,rent_and_royalty_net_losses,All,100000.0,200000.0,True,False,False,928576.0 +2021,Table 1.4,BI,21,s_corporation_net_income,All,100000.0,200000.0,False,False,False,51717735000.0 +2021,Table 1.4,BK,21,s_corporation_net_losses,All,100000.0,200000.0,False,False,False,9417120000.0 +2021,Table 1.4,BH,21,s_corporation_net_income,All,100000.0,200000.0,True,False,False,1023614.0 +2021,Table 1.4,BJ,21,s_corporation_net_losses,All,100000.0,200000.0,True,False,False,354264.0 +2021,Table 1.4,BY,21,taxable_social_security,All,100000.0,200000.0,False,False,False,148855563000.0 +2021,Table 1.4,BX,21,taxable_social_security,All,100000.0,200000.0,True,False,False,5623506.0 +2021,Table 1.4,BW,21,total_social_security,All,100000.0,200000.0,False,False,False,175599410000.0 +2021,Table 1.4,BV,21,total_social_security,All,100000.0,200000.0,True,False,False,5628183.0 +2021,Table 1.4,EI,21,income_tax_before_credits,All,100000.0,200000.0,False,False,False,405668074000.0 +2021,Table 1.4,EH,21,income_tax_before_credits,All,100000.0,200000.0,True,False,False,24006476.0 +2021,Table 1.4,I,21,taxable_interest_income,All,100000.0,200000.0,False,False,False,13402654000.0 +2021,Table 1.4,H,21,taxable_interest_income,All,100000.0,200000.0,True,False,False,12805970.0 +2021,Table 1.4,BU,21,unemployment_compensation,All,100000.0,200000.0,False,False,False,23285476000.0 +2021,Table 1.4,BT,21,unemployment_compensation,All,100000.0,200000.0,True,False,False,1840565.0 +2021,Table 1.4,G,21,employment_income,All,100000.0,200000.0,False,False,False,2355845184000.0 +2021,Table 1.4,F,21,employment_income,All,100000.0,200000.0,True,False,False,20368720.0 +2021,Table 1.4,EE,22,alternative_minimum_tax,All,200000.0,500000.0,False,False,False,870515000.0 +2021,Table 1.4,ED,22,alternative_minimum_tax,All,200000.0,500000.0,True,False,False,38734.0 +2021,Table 1.4,U,22,business_net_profits,All,200000.0,500000.0,False,False,False,98370059000.0 +2021,Table 1.4,W,22,business_net_losses,All,200000.0,500000.0,False,False,False,8282956000.0 +2021,Table 1.4,T,22,business_net_profits,All,200000.0,500000.0,True,False,False,1464231.0 +2021,Table 1.4,V,22,business_net_losses,All,200000.0,500000.0,True,False,False,526968.0 +2021,Table 1.4,Y,22,capital_gains_distributions,All,200000.0,500000.0,False,False,False,6797511000.0 +2021,Table 1.4,X,22,capital_gains_distributions,All,200000.0,500000.0,True,False,False,570826.0 +2021,Table 1.4,AA,22,capital_gains_gross,All,200000.0,500000.0,False,False,False,239861626000.0 +2021,Table 1.4,AC,22,capital_gains_losses,All,200000.0,500000.0,False,False,False,2553466000.0 +2021,Table 1.4,Z,22,capital_gains_gross,All,200000.0,500000.0,True,False,False,4062046.0 +2021,Table 1.4,AB,22,capital_gains_losses,All,200000.0,500000.0,True,False,False,1153231.0 +2021,Table 1.4,BM,22,estate_income,All,200000.0,500000.0,False,False,False,7211565000.0 +2021,Table 1.4,BO,22,estate_losses,All,200000.0,500000.0,False,False,False,278211000.0 +2021,Table 1.4,BL,22,estate_income,All,200000.0,500000.0,True,False,False,146691.0 +2021,Table 1.4,BN,22,estate_losses,All,200000.0,500000.0,True,False,False,8183.0 +2021,Table 1.4,K,22,exempt_interest,All,200000.0,500000.0,False,False,False,11404390000.0 +2021,Table 1.4,J,22,exempt_interest,All,200000.0,500000.0,True,False,False,1535001.0 +2021,Table 1.4,AI,22,ira_distributions,All,200000.0,500000.0,False,False,False,108787482000.0 +2021,Table 1.4,AH,22,ira_distributions,All,200000.0,500000.0,True,False,False,1849303.0 +2021,Table 1.4,M,22,ordinary_dividends,All,200000.0,500000.0,False,False,False,74408554000.0 +2021,Table 1.4,L,22,ordinary_dividends,All,200000.0,500000.0,True,False,False,5657743.0 +2021,Table 1.4,BE,22,partnership_and_s_corp_income,All,200000.0,500000.0,False,False,False,181930698000.0 +2021,Table 1.4,BG,22,partnership_and_s_corp_losses,All,200000.0,500000.0,False,False,False,24100077000.0 +2021,Table 1.4,BD,22,partnership_and_s_corp_income,All,200000.0,500000.0,True,False,False,1753402.0 +2021,Table 1.4,BF,22,partnership_and_s_corp_losses,All,200000.0,500000.0,True,False,False,633067.0 +2021,Table 1.4,AK,22,total_pension_income,All,200000.0,500000.0,False,False,False,323076078000.0 +2021,Table 1.4,AJ,22,total_pension_income,All,200000.0,500000.0,True,False,False,2835784.0 +2021,Table 1.4,AM,22,taxable_pension_income,All,200000.0,500000.0,False,False,False,142093107000.0 +2021,Table 1.4,AL,22,taxable_pension_income,All,200000.0,500000.0,True,False,False,2378973.0 +2021,Table 1.4,DY,22,qualified_business_income_deduction,All,200000.0,500000.0,False,False,False,39509153000.0 +2021,Table 1.4,DX,22,qualified_business_income_deduction,All,200000.0,500000.0,True,False,False,4297046.0 +2021,Table 1.4,O,22,qualified_dividends,All,200000.0,500000.0,False,False,False,54930379000.0 +2021,Table 1.4,N,22,qualified_dividends,All,200000.0,500000.0,True,False,False,5491717.0 +2021,Table 1.4,BA,22,rent_and_royalty_net_income,All,200000.0,500000.0,False,False,False,27515158000.0 +2021,Table 1.4,BC,22,rent_and_royalty_net_losses,All,200000.0,500000.0,False,False,False,8898786000.0 +2021,Table 1.4,AZ,22,rent_and_royalty_net_income,All,200000.0,500000.0,True,False,False,1009957.0 +2021,Table 1.4,BB,22,rent_and_royalty_net_losses,All,200000.0,500000.0,True,False,False,340074.0 +2021,Table 1.4,BI,22,s_corporation_net_income,All,200000.0,500000.0,False,False,False,118036039000.0 +2021,Table 1.4,BK,22,s_corporation_net_losses,All,200000.0,500000.0,False,False,False,9774224000.0 +2021,Table 1.4,BH,22,s_corporation_net_income,All,200000.0,500000.0,True,False,False,964074.0 +2021,Table 1.4,BJ,22,s_corporation_net_losses,All,200000.0,500000.0,True,False,False,222459.0 +2021,Table 1.4,BY,22,taxable_social_security,All,200000.0,500000.0,False,False,False,56662240000.0 +2021,Table 1.4,BX,22,taxable_social_security,All,200000.0,500000.0,True,False,False,1871269.0 +2021,Table 1.4,BW,22,total_social_security,All,200000.0,500000.0,False,False,False,66714127000.0 +2021,Table 1.4,BV,22,total_social_security,All,200000.0,500000.0,True,False,False,1873015.0 +2021,Table 1.4,EI,22,income_tax_before_credits,All,200000.0,500000.0,False,False,False,451924178000.0 +2021,Table 1.4,EH,22,income_tax_before_credits,All,200000.0,500000.0,True,False,False,9036803.0 +2021,Table 1.4,I,22,taxable_interest_income,All,200000.0,500000.0,False,False,False,14439132000.0 +2021,Table 1.4,H,22,taxable_interest_income,All,200000.0,500000.0,True,False,False,6484175.0 +2021,Table 1.4,BU,22,unemployment_compensation,All,200000.0,500000.0,False,False,False,5767497000.0 +2021,Table 1.4,BT,22,unemployment_compensation,All,200000.0,500000.0,True,False,False,433790.0 +2021,Table 1.4,G,22,employment_income,All,200000.0,500000.0,False,False,False,1713498524000.0 +2021,Table 1.4,F,22,employment_income,All,200000.0,500000.0,True,False,False,7776331.0 +2021,Table 1.4,EE,23,alternative_minimum_tax,All,500000.0,1000000.0,False,False,False,4283305000.0 +2021,Table 1.4,ED,23,alternative_minimum_tax,All,500000.0,1000000.0,True,False,False,176382.0 +2021,Table 1.4,U,23,business_net_profits,All,500000.0,1000000.0,False,False,False,40285196000.0 +2021,Table 1.4,W,23,business_net_losses,All,500000.0,1000000.0,False,False,False,2797954000.0 +2021,Table 1.4,T,23,business_net_profits,All,500000.0,1000000.0,True,False,False,310202.0 +2021,Table 1.4,V,23,business_net_losses,All,500000.0,1000000.0,True,False,False,96621.0 +2021,Table 1.4,Y,23,capital_gains_distributions,All,500000.0,1000000.0,False,False,False,1132318000.0 +2021,Table 1.4,X,23,capital_gains_distributions,All,500000.0,1000000.0,True,False,False,62560.0 +2021,Table 1.4,AA,23,capital_gains_gross,All,500000.0,1000000.0,False,False,False,185067883000.0 +2021,Table 1.4,AC,23,capital_gains_losses,All,500000.0,1000000.0,False,False,False,621321000.0 +2021,Table 1.4,Z,23,capital_gains_gross,All,500000.0,1000000.0,True,False,False,1052486.0 +2021,Table 1.4,AB,23,capital_gains_losses,All,500000.0,1000000.0,True,False,False,250020.0 +2021,Table 1.4,BM,23,estate_income,All,500000.0,1000000.0,False,False,False,4549574000.0 +2021,Table 1.4,BO,23,estate_losses,All,500000.0,1000000.0,False,False,False,243152000.0 +2021,Table 1.4,BL,23,estate_income,All,500000.0,1000000.0,True,False,False,44278.0 +2021,Table 1.4,BN,23,estate_losses,All,500000.0,1000000.0,True,False,False,3901.0 +2021,Table 1.4,K,23,exempt_interest,All,500000.0,1000000.0,False,False,False,7414214000.0 +2021,Table 1.4,J,23,exempt_interest,All,500000.0,1000000.0,True,False,False,509107.0 +2021,Table 1.4,AI,23,ira_distributions,All,500000.0,1000000.0,False,False,False,25693093000.0 +2021,Table 1.4,AH,23,ira_distributions,All,500000.0,1000000.0,True,False,False,308885.0 +2021,Table 1.4,M,23,ordinary_dividends,All,500000.0,1000000.0,False,False,False,44870842000.0 +2021,Table 1.4,L,23,ordinary_dividends,All,500000.0,1000000.0,True,False,False,1299171.0 +2021,Table 1.4,BE,23,partnership_and_s_corp_income,All,500000.0,1000000.0,False,False,False,173728789000.0 +2021,Table 1.4,BG,23,partnership_and_s_corp_losses,All,500000.0,1000000.0,False,False,False,17044916000.0 +2021,Table 1.4,BD,23,partnership_and_s_corp_income,All,500000.0,1000000.0,True,False,False,694433.0 +2021,Table 1.4,BF,23,partnership_and_s_corp_losses,All,500000.0,1000000.0,True,False,False,243058.0 +2021,Table 1.4,AK,23,total_pension_income,All,500000.0,1000000.0,False,False,False,77426767000.0 +2021,Table 1.4,AJ,23,total_pension_income,All,500000.0,1000000.0,True,False,False,423868.0 +2021,Table 1.4,AM,23,taxable_pension_income,All,500000.0,1000000.0,False,False,False,21135234000.0 +2021,Table 1.4,AL,23,taxable_pension_income,All,500000.0,1000000.0,True,False,False,309957.0 +2021,Table 1.4,DY,23,qualified_business_income_deduction,All,500000.0,1000000.0,False,False,False,18882845000.0 +2021,Table 1.4,DX,23,qualified_business_income_deduction,All,500000.0,1000000.0,True,False,False,995853.0 +2021,Table 1.4,O,23,qualified_dividends,All,500000.0,1000000.0,False,False,False,34477019000.0 +2021,Table 1.4,N,23,qualified_dividends,All,500000.0,1000000.0,True,False,False,1266819.0 +2021,Table 1.4,BA,23,rent_and_royalty_net_income,All,500000.0,1000000.0,False,False,False,13796937000.0 +2021,Table 1.4,BC,23,rent_and_royalty_net_losses,All,500000.0,1000000.0,False,False,False,4900018000.0 +2021,Table 1.4,AZ,23,rent_and_royalty_net_income,All,500000.0,1000000.0,True,False,False,271737.0 +2021,Table 1.4,BB,23,rent_and_royalty_net_losses,All,500000.0,1000000.0,True,False,False,109995.0 +2021,Table 1.4,BI,23,s_corporation_net_income,All,500000.0,1000000.0,False,False,False,100763796000.0 +2021,Table 1.4,BK,23,s_corporation_net_losses,All,500000.0,1000000.0,False,False,False,5305980000.0 +2021,Table 1.4,BH,23,s_corporation_net_income,All,500000.0,1000000.0,True,False,False,341823.0 +2021,Table 1.4,BJ,23,s_corporation_net_losses,All,500000.0,1000000.0,True,False,False,67985.0 +2021,Table 1.4,BY,23,taxable_social_security,All,500000.0,1000000.0,False,False,False,10063315000.0 +2021,Table 1.4,BX,23,taxable_social_security,All,500000.0,1000000.0,True,False,False,303816.0 +2021,Table 1.4,BW,23,total_social_security,All,500000.0,1000000.0,False,False,False,11845014000.0 +2021,Table 1.4,BV,23,total_social_security,All,500000.0,1000000.0,True,False,False,304147.0 +2021,Table 1.4,EI,23,income_tax_before_credits,All,500000.0,1000000.0,False,False,False,250471738000.0 +2021,Table 1.4,EH,23,income_tax_before_credits,All,500000.0,1000000.0,True,False,False,1615890.0 +2021,Table 1.4,I,23,taxable_interest_income,All,500000.0,1000000.0,False,False,False,8049644000.0 +2021,Table 1.4,H,23,taxable_interest_income,All,500000.0,1000000.0,True,False,False,1408417.0 +2021,Table 1.4,BU,23,unemployment_compensation,All,500000.0,1000000.0,False,False,False,694202000.0 +2021,Table 1.4,BT,23,unemployment_compensation,All,500000.0,1000000.0,True,False,False,47030.0 +2021,Table 1.4,G,23,employment_income,All,500000.0,1000000.0,False,False,False,593531858000.0 +2021,Table 1.4,F,23,employment_income,All,500000.0,1000000.0,True,False,False,1371980.0 +2021,Table 1.4,EE,24,alternative_minimum_tax,All,1000000.0,1500000.0,False,False,False,0.0 +2021,Table 1.4,ED,24,alternative_minimum_tax,All,1000000.0,1500000.0,True,False,False,0.0 +2021,Table 1.4,U,24,business_net_profits,All,1000000.0,1500000.0,False,False,False,14533100000.0 +2021,Table 1.4,W,24,business_net_losses,All,1000000.0,1500000.0,False,False,False,1176858000.0 +2021,Table 1.4,T,24,business_net_profits,All,1000000.0,1500000.0,True,False,False,72615.0 +2021,Table 1.4,V,24,business_net_losses,All,1000000.0,1500000.0,True,False,False,23020.0 +2021,Table 1.4,Y,24,capital_gains_distributions,All,1000000.0,1500000.0,False,False,False,365803000.0 +2021,Table 1.4,X,24,capital_gains_distributions,All,1000000.0,1500000.0,True,False,False,9603.0 +2021,Table 1.4,AA,24,capital_gains_gross,All,1000000.0,1500000.0,False,False,False,98605526000.0 +2021,Table 1.4,AC,24,capital_gains_losses,All,1000000.0,1500000.0,False,False,False,147697000.0 +2021,Table 1.4,Z,24,capital_gains_gross,All,1000000.0,1500000.0,True,False,False,276029.0 +2021,Table 1.4,AB,24,capital_gains_losses,All,1000000.0,1500000.0,True,False,False,55654.0 +2021,Table 1.4,BM,24,estate_income,All,1000000.0,1500000.0,False,False,False,2716098000.0 +2021,Table 1.4,BO,24,estate_losses,All,1000000.0,1500000.0,False,False,False,209182000.0 +2021,Table 1.4,BL,24,estate_income,All,1000000.0,1500000.0,True,False,False,13733.0 +2021,Table 1.4,BN,24,estate_losses,All,1000000.0,1500000.0,True,False,False,2120.0 +2021,Table 1.4,K,24,exempt_interest,All,1000000.0,1500000.0,False,False,False,3473707000.0 +2021,Table 1.4,J,24,exempt_interest,All,1000000.0,1500000.0,True,False,False,148862.0 +2021,Table 1.4,AI,24,ira_distributions,All,1000000.0,1500000.0,False,False,False,6573862000.0 +2021,Table 1.4,AH,24,ira_distributions,All,1000000.0,1500000.0,True,False,False,67779.0 +2021,Table 1.4,M,24,ordinary_dividends,All,1000000.0,1500000.0,False,False,False,20107920000.0 +2021,Table 1.4,L,24,ordinary_dividends,All,1000000.0,1500000.0,True,False,False,320718.0 +2021,Table 1.4,BE,24,partnership_and_s_corp_income,All,1000000.0,1500000.0,False,False,False,104846418000.0 +2021,Table 1.4,BG,24,partnership_and_s_corp_losses,All,1000000.0,1500000.0,False,False,False,8770210000.0 +2021,Table 1.4,BD,24,partnership_and_s_corp_income,All,1000000.0,1500000.0,True,False,False,227981.0 +2021,Table 1.4,BF,24,partnership_and_s_corp_losses,All,1000000.0,1500000.0,True,False,False,76758.0 +2021,Table 1.4,AK,24,total_pension_income,All,1000000.0,1500000.0,False,False,False,21775336000.0 +2021,Table 1.4,AJ,24,total_pension_income,All,1000000.0,1500000.0,True,False,False,93871.0 +2021,Table 1.4,AM,24,taxable_pension_income,All,1000000.0,1500000.0,False,False,False,4286668000.0 +2021,Table 1.4,AL,24,taxable_pension_income,All,1000000.0,1500000.0,True,False,False,64883.0 +2021,Table 1.4,DY,24,qualified_business_income_deduction,All,1000000.0,1500000.0,False,False,False,11281864000.0 +2021,Table 1.4,DX,24,qualified_business_income_deduction,All,1000000.0,1500000.0,True,False,False,265528.0 +2021,Table 1.4,O,24,qualified_dividends,All,1000000.0,1500000.0,False,False,False,15503762000.0 +2021,Table 1.4,N,24,qualified_dividends,All,1000000.0,1500000.0,True,False,False,314136.0 +2021,Table 1.4,BA,24,rent_and_royalty_net_income,All,1000000.0,1500000.0,False,False,False,5825852000.0 +2021,Table 1.4,BC,24,rent_and_royalty_net_losses,All,1000000.0,1500000.0,False,False,False,1804009000.0 +2021,Table 1.4,AZ,24,rent_and_royalty_net_income,All,1000000.0,1500000.0,True,False,False,79355.0 +2021,Table 1.4,BB,24,rent_and_royalty_net_losses,All,1000000.0,1500000.0,True,False,False,31247.0 +2021,Table 1.4,BI,24,s_corporation_net_income,All,1000000.0,1500000.0,False,False,False,62531757000.0 +2021,Table 1.4,BK,24,s_corporation_net_losses,All,1000000.0,1500000.0,False,False,False,2401748000.0 +2021,Table 1.4,BH,24,s_corporation_net_income,All,1000000.0,1500000.0,True,False,False,110295.0 +2021,Table 1.4,BJ,24,s_corporation_net_losses,All,1000000.0,1500000.0,True,False,False,19489.0 +2021,Table 1.4,BY,24,taxable_social_security,All,1000000.0,1500000.0,False,False,False,2409392000.0 +2021,Table 1.4,BX,24,taxable_social_security,All,1000000.0,1500000.0,True,False,False,70581.0 +2021,Table 1.4,BW,24,total_social_security,All,1000000.0,1500000.0,False,False,False,2836780000.0 +2021,Table 1.4,BV,24,total_social_security,All,1000000.0,1500000.0,True,False,False,70642.0 +2021,Table 1.4,EI,24,income_tax_before_credits,All,1000000.0,1500000.0,False,False,False,117790037000.0 +2021,Table 1.4,EH,24,income_tax_before_credits,All,1000000.0,1500000.0,True,False,False,376494.0 +2021,Table 1.4,I,24,taxable_interest_income,All,1000000.0,1500000.0,False,False,False,4459247000.0 +2021,Table 1.4,H,24,taxable_interest_income,All,1000000.0,1500000.0,True,False,False,349330.0 +2021,Table 1.4,BU,24,unemployment_compensation,All,1000000.0,1500000.0,False,False,False,113470000.0 +2021,Table 1.4,BT,24,unemployment_compensation,All,1000000.0,1500000.0,True,False,False,8021.0 +2021,Table 1.4,G,24,employment_income,All,1000000.0,1500000.0,False,False,False,202146931000.0 +2021,Table 1.4,F,24,employment_income,All,1000000.0,1500000.0,True,False,False,314686.0 +2021,Table 1.4,EE,25,alternative_minimum_tax,All,1500000.0,2000000.0,False,False,False,0.0 +2021,Table 1.4,ED,25,alternative_minimum_tax,All,1500000.0,2000000.0,True,False,False,0.0 +2021,Table 1.4,U,25,business_net_profits,All,1500000.0,2000000.0,False,False,False,8245025000.0 +2021,Table 1.4,W,25,business_net_losses,All,1500000.0,2000000.0,False,False,False,745854000.0 +2021,Table 1.4,T,25,business_net_profits,All,1500000.0,2000000.0,True,False,False,29373.0 +2021,Table 1.4,V,25,business_net_losses,All,1500000.0,2000000.0,True,False,False,9921.0 +2021,Table 1.4,Y,25,capital_gains_distributions,All,1500000.0,2000000.0,False,False,False,50466000.0 +2021,Table 1.4,X,25,capital_gains_distributions,All,1500000.0,2000000.0,True,False,False,2394.0 +2021,Table 1.4,AA,25,capital_gains_gross,All,1500000.0,2000000.0,False,False,False,67058929000.0 +2021,Table 1.4,AC,25,capital_gains_losses,All,1500000.0,2000000.0,False,False,False,60591000.0 +2021,Table 1.4,Z,25,capital_gains_gross,All,1500000.0,2000000.0,True,False,False,119345.0 +2021,Table 1.4,AB,25,capital_gains_losses,All,1500000.0,2000000.0,True,False,False,22285.0 +2021,Table 1.4,BM,25,estate_income,All,1500000.0,2000000.0,False,False,False,1539241000.0 +2021,Table 1.4,BO,25,estate_losses,All,1500000.0,2000000.0,False,False,False,123348000.0 +2021,Table 1.4,BL,25,estate_income,All,1500000.0,2000000.0,True,False,False,6620.0 +2021,Table 1.4,BN,25,estate_losses,All,1500000.0,2000000.0,True,False,False,1229.0 +2021,Table 1.4,K,25,exempt_interest,All,1500000.0,2000000.0,False,False,False,2253316000.0 +2021,Table 1.4,J,25,exempt_interest,All,1500000.0,2000000.0,True,False,False,69529.0 +2021,Table 1.4,AI,25,ira_distributions,All,1500000.0,2000000.0,False,False,False,3313664000.0 +2021,Table 1.4,AH,25,ira_distributions,All,1500000.0,2000000.0,True,False,False,28426.0 +2021,Table 1.4,M,25,ordinary_dividends,All,1500000.0,2000000.0,False,False,False,12094139000.0 +2021,Table 1.4,L,25,ordinary_dividends,All,1500000.0,2000000.0,True,False,False,136624.0 +2021,Table 1.4,BE,25,partnership_and_s_corp_income,All,1500000.0,2000000.0,False,False,False,69068636000.0 +2021,Table 1.4,BG,25,partnership_and_s_corp_losses,All,1500000.0,2000000.0,False,False,False,5542594000.0 +2021,Table 1.4,BD,25,partnership_and_s_corp_income,All,1500000.0,2000000.0,True,False,False,105458.0 +2021,Table 1.4,BF,25,partnership_and_s_corp_losses,All,1500000.0,2000000.0,True,False,False,37017.0 +2021,Table 1.4,AK,25,total_pension_income,All,1500000.0,2000000.0,False,False,False,8868497000.0 +2021,Table 1.4,AJ,25,total_pension_income,All,1500000.0,2000000.0,True,False,False,38651.0 +2021,Table 1.4,AM,25,taxable_pension_income,All,1500000.0,2000000.0,False,False,False,1936068000.0 +2021,Table 1.4,AL,25,taxable_pension_income,All,1500000.0,2000000.0,True,False,False,26817.0 +2021,Table 1.4,DY,25,qualified_business_income_deduction,All,1500000.0,2000000.0,False,False,False,7932390000.0 +2021,Table 1.4,DX,25,qualified_business_income_deduction,All,1500000.0,2000000.0,True,False,False,114452.0 +2021,Table 1.4,O,25,qualified_dividends,All,1500000.0,2000000.0,False,False,False,9363207000.0 +2021,Table 1.4,N,25,qualified_dividends,All,1500000.0,2000000.0,True,False,False,133787.0 +2021,Table 1.4,BA,25,rent_and_royalty_net_income,All,1500000.0,2000000.0,False,False,False,3571948000.0 +2021,Table 1.4,BC,25,rent_and_royalty_net_losses,All,1500000.0,2000000.0,False,False,False,894747000.0 +2021,Table 1.4,AZ,25,rent_and_royalty_net_income,All,1500000.0,2000000.0,True,False,False,36535.0 +2021,Table 1.4,BB,25,rent_and_royalty_net_losses,All,1500000.0,2000000.0,True,False,False,14592.0 +2021,Table 1.4,BI,25,s_corporation_net_income,All,1500000.0,2000000.0,False,False,False,42085326000.0 +2021,Table 1.4,BK,25,s_corporation_net_losses,All,1500000.0,2000000.0,False,False,False,1521322000.0 +2021,Table 1.4,BH,25,s_corporation_net_income,All,1500000.0,2000000.0,True,False,False,50221.0 +2021,Table 1.4,BJ,25,s_corporation_net_losses,All,1500000.0,2000000.0,True,False,False,9229.0 +2021,Table 1.4,BY,25,taxable_social_security,All,1500000.0,2000000.0,False,False,False,1049301000.0 +2021,Table 1.4,BX,25,taxable_social_security,All,1500000.0,2000000.0,True,False,False,30206.0 +2021,Table 1.4,BW,25,total_social_security,All,1500000.0,2000000.0,False,False,False,1235190000.0 +2021,Table 1.4,BV,25,total_social_security,All,1500000.0,2000000.0,True,False,False,30245.0 +2021,Table 1.4,EI,25,income_tax_before_credits,All,1500000.0,2000000.0,False,False,False,71950793000.0 +2021,Table 1.4,EH,25,income_tax_before_credits,All,1500000.0,2000000.0,True,False,False,155831.0 +2021,Table 1.4,I,25,taxable_interest_income,All,1500000.0,2000000.0,False,False,False,2875469000.0 +2021,Table 1.4,H,25,taxable_interest_income,All,1500000.0,2000000.0,True,False,False,148403.0 +2021,Table 1.4,BU,25,unemployment_compensation,All,1500000.0,2000000.0,False,False,False,41432000.0 +2021,Table 1.4,BT,25,unemployment_compensation,All,1500000.0,2000000.0,True,False,False,2944.0 +2021,Table 1.4,G,25,employment_income,All,1500000.0,2000000.0,False,False,False,104008030000.0 +2021,Table 1.4,F,25,employment_income,All,1500000.0,2000000.0,True,False,False,127464.0 +2021,Table 1.4,EE,26,alternative_minimum_tax,All,2000000.0,5000000.0,False,False,False,0.0 +2021,Table 1.4,ED,26,alternative_minimum_tax,All,2000000.0,5000000.0,True,False,False,0.0 +2021,Table 1.4,U,26,business_net_profits,All,2000000.0,5000000.0,False,False,False,16755437000.0 +2021,Table 1.4,W,26,business_net_losses,All,2000000.0,5000000.0,False,False,False,2221287000.0 +2021,Table 1.4,T,26,business_net_profits,All,2000000.0,5000000.0,True,False,False,43498.0 +2021,Table 1.4,V,26,business_net_losses,All,2000000.0,5000000.0,True,False,False,16222.0 +2021,Table 1.4,Y,26,capital_gains_distributions,All,2000000.0,5000000.0,False,False,False,117583000.0 +2021,Table 1.4,X,26,capital_gains_distributions,All,2000000.0,5000000.0,True,False,False,2895.0 +2021,Table 1.4,AA,26,capital_gains_gross,All,2000000.0,5000000.0,False,False,False,216578879000.0 +2021,Table 1.4,AC,26,capital_gains_losses,All,2000000.0,5000000.0,False,False,False,87792000.0 +2021,Table 1.4,Z,26,capital_gains_gross,All,2000000.0,5000000.0,True,False,False,185600.0 +2021,Table 1.4,AB,26,capital_gains_losses,All,2000000.0,5000000.0,True,False,False,31810.0 +2021,Table 1.4,BM,26,estate_income,All,2000000.0,5000000.0,False,False,False,6203776000.0 +2021,Table 1.4,BO,26,estate_losses,All,2000000.0,5000000.0,False,False,False,490805000.0 +2021,Table 1.4,BL,26,estate_income,All,2000000.0,5000000.0,True,False,False,13765.0 +2021,Table 1.4,BN,26,estate_losses,All,2000000.0,5000000.0,True,False,False,2632.0 +2021,Table 1.4,K,26,exempt_interest,All,2000000.0,5000000.0,False,False,False,5638265000.0 +2021,Table 1.4,J,26,exempt_interest,All,2000000.0,5000000.0,True,False,False,118422.0 +2021,Table 1.4,AI,26,ira_distributions,All,2000000.0,5000000.0,False,False,False,7074590000.0 +2021,Table 1.4,AH,26,ira_distributions,All,2000000.0,5000000.0,True,False,False,41232.0 +2021,Table 1.4,M,26,ordinary_dividends,All,2000000.0,5000000.0,False,False,False,34574922000.0 +2021,Table 1.4,L,26,ordinary_dividends,All,2000000.0,5000000.0,True,False,False,208955.0 +2021,Table 1.4,BE,26,partnership_and_s_corp_income,All,2000000.0,5000000.0,False,False,False,191186000000.0 +2021,Table 1.4,BG,26,partnership_and_s_corp_losses,All,2000000.0,5000000.0,False,False,False,18083170000.0 +2021,Table 1.4,BD,26,partnership_and_s_corp_income,All,2000000.0,5000000.0,True,False,False,174470.0 +2021,Table 1.4,BF,26,partnership_and_s_corp_losses,All,2000000.0,5000000.0,True,False,False,66284.0 +2021,Table 1.4,AK,26,total_pension_income,All,2000000.0,5000000.0,False,False,False,15425227000.0 +2021,Table 1.4,AJ,26,total_pension_income,All,2000000.0,5000000.0,True,False,False,54952.0 +2021,Table 1.4,AM,26,taxable_pension_income,All,2000000.0,5000000.0,False,False,False,3380526000.0 +2021,Table 1.4,AL,26,taxable_pension_income,All,2000000.0,5000000.0,True,False,False,37790.0 +2021,Table 1.4,DY,26,qualified_business_income_deduction,All,2000000.0,5000000.0,False,False,False,23312146000.0 +2021,Table 1.4,DX,26,qualified_business_income_deduction,All,2000000.0,5000000.0,True,False,False,178739.0 +2021,Table 1.4,O,26,qualified_dividends,All,2000000.0,5000000.0,False,False,False,27212821000.0 +2021,Table 1.4,N,26,qualified_dividends,All,2000000.0,5000000.0,True,False,False,205033.0 +2021,Table 1.4,BA,26,rent_and_royalty_net_income,All,2000000.0,5000000.0,False,False,False,8452529000.0 +2021,Table 1.4,BC,26,rent_and_royalty_net_losses,All,2000000.0,5000000.0,False,False,False,1872901000.0 +2021,Table 1.4,AZ,26,rent_and_royalty_net_income,All,2000000.0,5000000.0,True,False,False,62357.0 +2021,Table 1.4,BB,26,rent_and_royalty_net_losses,All,2000000.0,5000000.0,True,False,False,24066.0 +2021,Table 1.4,BI,26,s_corporation_net_income,All,2000000.0,5000000.0,False,False,False,116109397000.0 +2021,Table 1.4,BK,26,s_corporation_net_losses,All,2000000.0,5000000.0,False,False,False,4389329000.0 +2021,Table 1.4,BH,26,s_corporation_net_income,All,2000000.0,5000000.0,True,False,False,80671.0 +2021,Table 1.4,BJ,26,s_corporation_net_losses,All,2000000.0,5000000.0,True,False,False,16093.0 +2021,Table 1.4,BY,26,taxable_social_security,All,2000000.0,5000000.0,False,False,False,1604460000.0 +2021,Table 1.4,BX,26,taxable_social_security,All,2000000.0,5000000.0,True,False,False,46179.0 +2021,Table 1.4,BW,26,total_social_security,All,2000000.0,5000000.0,False,False,False,1888392000.0 +2021,Table 1.4,BV,26,total_social_security,All,2000000.0,5000000.0,True,False,False,46214.0 +2021,Table 1.4,EI,26,income_tax_before_credits,All,2000000.0,5000000.0,False,False,False,189909559000.0 +2021,Table 1.4,EH,26,income_tax_before_credits,All,2000000.0,5000000.0,True,False,False,233468.0 +2021,Table 1.4,I,26,taxable_interest_income,All,2000000.0,5000000.0,False,False,False,9097803000.0 +2021,Table 1.4,H,26,taxable_interest_income,All,2000000.0,5000000.0,True,False,False,225416.0 +2021,Table 1.4,BU,26,unemployment_compensation,All,2000000.0,5000000.0,False,False,False,47162000.0 +2021,Table 1.4,BT,26,unemployment_compensation,All,2000000.0,5000000.0,True,False,False,3154.0 +2021,Table 1.4,G,26,employment_income,All,2000000.0,5000000.0,False,False,False,220575715000.0 +2021,Table 1.4,F,26,employment_income,All,2000000.0,5000000.0,True,False,False,188625.0 +2021,Table 1.4,EE,27,alternative_minimum_tax,All,5000000.0,10000000.0,False,False,False,0.0 +2021,Table 1.4,ED,27,alternative_minimum_tax,All,5000000.0,10000000.0,True,False,False,0.0 +2021,Table 1.4,U,27,business_net_profits,All,5000000.0,10000000.0,False,False,False,7274231000.0 +2021,Table 1.4,W,27,business_net_losses,All,5000000.0,10000000.0,False,False,False,1162557000.0 +2021,Table 1.4,T,27,business_net_profits,All,5000000.0,10000000.0,True,False,False,11675.0 +2021,Table 1.4,V,27,business_net_losses,All,5000000.0,10000000.0,True,False,False,4765.0 +2021,Table 1.4,Y,27,capital_gains_distributions,All,5000000.0,10000000.0,False,False,False,32557000.0 +2021,Table 1.4,X,27,capital_gains_distributions,All,5000000.0,10000000.0,True,False,False,392.0 +2021,Table 1.4,AA,27,capital_gains_gross,All,5000000.0,10000000.0,False,False,False,175240752000.0 +2021,Table 1.4,AC,27,capital_gains_losses,All,5000000.0,10000000.0,False,False,False,20661000.0 +2021,Table 1.4,Z,27,capital_gains_gross,All,5000000.0,10000000.0,True,False,False,53600.0 +2021,Table 1.4,AB,27,capital_gains_losses,All,5000000.0,10000000.0,True,False,False,7274.0 +2021,Table 1.4,BM,27,estate_income,All,5000000.0,10000000.0,False,False,False,4243588000.0 +2021,Table 1.4,BO,27,estate_losses,All,5000000.0,10000000.0,False,False,False,298217000.0 +2021,Table 1.4,BL,27,estate_income,All,5000000.0,10000000.0,True,False,False,4783.0 +2021,Table 1.4,BN,27,estate_losses,All,5000000.0,10000000.0,True,False,False,1387.0 +2021,Table 1.4,K,27,exempt_interest,All,5000000.0,10000000.0,False,False,False,3138614000.0 +2021,Table 1.4,J,27,exempt_interest,All,5000000.0,10000000.0,True,False,False,37253.0 +2021,Table 1.4,AI,27,ira_distributions,All,5000000.0,10000000.0,False,False,False,3128843000.0 +2021,Table 1.4,AH,27,ira_distributions,All,5000000.0,10000000.0,True,False,False,10727.0 +2021,Table 1.4,M,27,ordinary_dividends,All,5000000.0,10000000.0,False,False,False,22076152000.0 +2021,Table 1.4,L,27,ordinary_dividends,All,5000000.0,10000000.0,True,False,False,58225.0 +2021,Table 1.4,BE,27,partnership_and_s_corp_income,All,5000000.0,10000000.0,False,False,False,111698107000.0 +2021,Table 1.4,BG,27,partnership_and_s_corp_losses,All,5000000.0,10000000.0,False,False,False,11883221000.0 +2021,Table 1.4,BD,27,partnership_and_s_corp_income,All,5000000.0,10000000.0,True,False,False,51294.0 +2021,Table 1.4,BF,27,partnership_and_s_corp_losses,All,5000000.0,10000000.0,True,False,False,22375.0 +2021,Table 1.4,AK,27,total_pension_income,All,5000000.0,10000000.0,False,False,False,5131480000.0 +2021,Table 1.4,AJ,27,total_pension_income,All,5000000.0,10000000.0,True,False,False,14628.0 +2021,Table 1.4,AM,27,taxable_pension_income,All,5000000.0,10000000.0,False,False,False,1268562000.0 +2021,Table 1.4,AL,27,taxable_pension_income,All,5000000.0,10000000.0,True,False,False,9918.0 +2021,Table 1.4,DY,27,qualified_business_income_deduction,All,5000000.0,10000000.0,False,False,False,14234309000.0 +2021,Table 1.4,DX,27,qualified_business_income_deduction,All,5000000.0,10000000.0,True,False,False,48998.0 +2021,Table 1.4,O,27,qualified_dividends,All,5000000.0,10000000.0,False,False,False,17867740000.0 +2021,Table 1.4,N,27,qualified_dividends,All,5000000.0,10000000.0,True,False,False,57194.0 +2021,Table 1.4,BA,27,rent_and_royalty_net_income,All,5000000.0,10000000.0,False,False,False,3944126000.0 +2021,Table 1.4,BC,27,rent_and_royalty_net_losses,All,5000000.0,10000000.0,False,False,False,876204000.0 +2021,Table 1.4,AZ,27,rent_and_royalty_net_income,All,5000000.0,10000000.0,True,False,False,20267.0 +2021,Table 1.4,BB,27,rent_and_royalty_net_losses,All,5000000.0,10000000.0,True,False,False,7425.0 +2021,Table 1.4,BI,27,s_corporation_net_income,All,5000000.0,10000000.0,False,False,False,68737430000.0 +2021,Table 1.4,BK,27,s_corporation_net_losses,All,5000000.0,10000000.0,False,False,False,2633645000.0 +2021,Table 1.4,BH,27,s_corporation_net_income,All,5000000.0,10000000.0,True,False,False,23204.0 +2021,Table 1.4,BJ,27,s_corporation_net_losses,All,5000000.0,10000000.0,True,False,False,5688.0 +2021,Table 1.4,BY,27,taxable_social_security,All,5000000.0,10000000.0,False,False,False,454512000.0 +2021,Table 1.4,BX,27,taxable_social_security,All,5000000.0,10000000.0,True,False,False,12500.0 +2021,Table 1.4,BW,27,total_social_security,All,5000000.0,10000000.0,False,False,False,535125000.0 +2021,Table 1.4,BV,27,total_social_security,All,5000000.0,10000000.0,True,False,False,12510.0 +2021,Table 1.4,EI,27,income_tax_before_credits,All,5000000.0,10000000.0,False,False,False,116498227000.0 +2021,Table 1.4,EH,27,income_tax_before_credits,All,5000000.0,10000000.0,True,False,False,63288.0 +2021,Table 1.4,I,27,taxable_interest_income,All,5000000.0,10000000.0,False,False,False,6177098000.0 +2021,Table 1.4,H,27,taxable_interest_income,All,5000000.0,10000000.0,True,False,False,62111.0 +2021,Table 1.4,BU,27,unemployment_compensation,All,5000000.0,10000000.0,False,False,False,7800000.0 +2021,Table 1.4,BT,27,unemployment_compensation,All,5000000.0,10000000.0,True,False,False,550.0 +2021,Table 1.4,G,27,employment_income,All,5000000.0,10000000.0,False,False,False,108085376000.0 +2021,Table 1.4,F,27,employment_income,All,5000000.0,10000000.0,True,False,False,50463.0 +2021,Table 1.4,EE,28,alternative_minimum_tax,All,10000000.0,inf,False,False,False,0.0 +2021,Table 1.4,ED,28,alternative_minimum_tax,All,10000000.0,inf,True,False,False,0.0 +2021,Table 1.4,U,28,business_net_profits,All,10000000.0,inf,False,False,False,11005486000.0 +2021,Table 1.4,W,28,business_net_losses,All,10000000.0,inf,False,False,False,3324675000.0 +2021,Table 1.4,T,28,business_net_profits,All,10000000.0,inf,True,False,False,8271.0 +2021,Table 1.4,V,28,business_net_losses,All,10000000.0,inf,True,False,False,4207.0 +2021,Table 1.4,Y,28,capital_gains_distributions,All,10000000.0,inf,False,False,False,75734000.0 +2021,Table 1.4,X,28,capital_gains_distributions,All,10000000.0,inf,True,False,False,127.0 +2021,Table 1.4,AA,28,capital_gains_gross,All,10000000.0,inf,False,False,False,850313922000.0 +2021,Table 1.4,AC,28,capital_gains_losses,All,10000000.0,inf,False,False,False,11481000.0 +2021,Table 1.4,Z,28,capital_gains_gross,All,10000000.0,inf,True,False,False,40444.0 +2021,Table 1.4,AB,28,capital_gains_losses,All,10000000.0,inf,True,False,False,4018.0 +2021,Table 1.4,BM,28,estate_income,All,10000000.0,inf,False,False,False,15574190000.0 +2021,Table 1.4,BO,28,estate_losses,All,10000000.0,inf,False,False,False,2668626000.0 +2021,Table 1.4,BL,28,estate_income,All,10000000.0,inf,True,False,False,4186.0 +2021,Table 1.4,BN,28,estate_losses,All,10000000.0,inf,True,False,False,1817.0 +2021,Table 1.4,K,28,exempt_interest,All,10000000.0,inf,False,False,False,6328290000.0 +2021,Table 1.4,J,28,exempt_interest,All,10000000.0,inf,True,False,False,30429.0 +2021,Table 1.4,AI,28,ira_distributions,All,10000000.0,inf,False,False,False,4806315000.0 +2021,Table 1.4,AH,28,ira_distributions,All,10000000.0,inf,True,False,False,6996.0 +2021,Table 1.4,M,28,ordinary_dividends,All,10000000.0,inf,False,False,False,83529618000.0 +2021,Table 1.4,L,28,ordinary_dividends,All,10000000.0,inf,True,False,False,42967.0 +2021,Table 1.4,BE,28,partnership_and_s_corp_income,All,10000000.0,inf,False,False,False,269603756000.0 +2021,Table 1.4,BG,28,partnership_and_s_corp_losses,All,10000000.0,inf,False,False,False,60304551000.0 +2021,Table 1.4,BD,28,partnership_and_s_corp_income,All,10000000.0,inf,True,False,False,38208.0 +2021,Table 1.4,BF,28,partnership_and_s_corp_losses,All,10000000.0,inf,True,False,False,20051.0 +2021,Table 1.4,AK,28,total_pension_income,All,10000000.0,inf,False,False,False,4456090000.0 +2021,Table 1.4,AJ,28,total_pension_income,All,10000000.0,inf,True,False,False,10257.0 +2021,Table 1.4,AM,28,taxable_pension_income,All,10000000.0,inf,False,False,False,1300036000.0 +2021,Table 1.4,AL,28,taxable_pension_income,All,10000000.0,inf,True,False,False,7225.0 +2021,Table 1.4,DY,28,qualified_business_income_deduction,All,10000000.0,inf,False,False,False,34430031000.0 +2021,Table 1.4,DX,28,qualified_business_income_deduction,All,10000000.0,inf,True,False,False,33615.0 +2021,Table 1.4,O,28,qualified_dividends,All,10000000.0,inf,False,False,False,70666204000.0 +2021,Table 1.4,N,28,qualified_dividends,All,10000000.0,inf,True,False,False,42247.0 +2021,Table 1.4,BA,28,rent_and_royalty_net_income,All,10000000.0,inf,False,False,False,9337965000.0 +2021,Table 1.4,BC,28,rent_and_royalty_net_losses,All,10000000.0,inf,False,False,False,1365840000.0 +2021,Table 1.4,AZ,28,rent_and_royalty_net_income,All,10000000.0,inf,True,False,False,17163.0 +2021,Table 1.4,BB,28,rent_and_royalty_net_losses,All,10000000.0,inf,True,False,False,6233.0 +2021,Table 1.4,BI,28,s_corporation_net_income,All,10000000.0,inf,False,False,False,171110216000.0 +2021,Table 1.4,BK,28,s_corporation_net_losses,All,10000000.0,inf,False,False,False,11754707000.0 +2021,Table 1.4,BH,28,s_corporation_net_income,All,10000000.0,inf,True,False,False,16948.0 +2021,Table 1.4,BJ,28,s_corporation_net_losses,All,10000000.0,inf,True,False,False,5363.0 +2021,Table 1.4,BY,28,taxable_social_security,All,10000000.0,inf,False,False,False,330800000.0 +2021,Table 1.4,BX,28,taxable_social_security,All,10000000.0,inf,True,False,False,8767.0 +2021,Table 1.4,BW,28,total_social_security,All,10000000.0,inf,False,False,False,389254000.0 +2021,Table 1.4,BV,28,total_social_security,All,10000000.0,inf,True,False,False,8772.0 +2021,Table 1.4,EI,28,income_tax_before_credits,All,10000000.0,inf,False,False,False,356151525000.0 +2021,Table 1.4,EH,28,income_tax_before_credits,All,10000000.0,inf,True,False,False,45273.0 +2021,Table 1.4,I,28,taxable_interest_income,All,10000000.0,inf,False,False,False,26425211000.0 +2021,Table 1.4,H,28,taxable_interest_income,All,10000000.0,inf,True,False,False,44841.0 +2021,Table 1.4,BU,28,unemployment_compensation,All,10000000.0,inf,False,False,False,3737000.0 +2021,Table 1.4,BT,28,unemployment_compensation,All,10000000.0,inf,True,False,False,303.0 +2021,Table 1.4,G,28,employment_income,All,10000000.0,inf,False,False,False,217002426000.0 +2021,Table 1.4,F,28,employment_income,All,10000000.0,inf,True,False,False,36210.0 +2021,Table 2.1,CX,10,charitable_contributions_deductions,All,-inf,inf,False,False,True,263250541000.0 +2021,Table 2.1,CW,10,charitable_contributions_deductions,All,-inf,inf,True,False,True,12117590.0 +2021,Table 2.1,BX,10,itemized_general_sales_tax_deduction,All,-inf,inf,False,False,True,7642643000.0 +2021,Table 2.1,BW,10,itemized_general_sales_tax_deduction,All,-inf,inf,True,False,True,3540640.0 +2021,Table 2.1,CH,10,interest_paid_deductions,All,-inf,inf,False,False,True,163273742000.0 +2021,Table 2.1,CG,10,interest_paid_deductions,All,-inf,inf,True,False,True,11754235.0 +2021,Table 2.1,BJ,10,medical_expense_deductions_capped,All,-inf,inf,False,False,True,75886325000.0 +2021,Table 2.1,BI,10,medical_expense_deductions_capped,All,-inf,inf,True,False,True,3693434.0 +2021,Table 2.1,BL,10,medical_expense_deductions_uncapped,All,-inf,inf,False,False,True,101860682000.0 +2021,Table 2.1,BK,10,medical_expense_deductions_uncapped,All,-inf,inf,True,False,True,3693434.0 +2021,Table 2.1,CJ,10,mortgage_interest_deductions,All,-inf,inf,False,False,True,143469233000.0 +2021,Table 2.1,CI,10,mortgage_interest_deductions,All,-inf,inf,True,False,True,11538228.0 +2021,Table 2.1,BV,10,itemized_state_income_tax_deductions,All,-inf,inf,False,False,True,250997086000.0 +2021,Table 2.1,BU,10,itemized_state_income_tax_deductions,All,-inf,inf,True,False,True,10770045.0 +2021,Table 2.1,BT,10,idpitgst,All,-inf,inf,False,False,True,258639729000.0 +2021,Table 2.1,BS,10,idpitgst,All,-inf,inf,True,False,True,14310685.0 +2021,Table 2.1,BZ,10,itemized_real_estate_tax_deductions,All,-inf,inf,False,False,True,99984344000.0 +2021,Table 2.1,BY,10,itemized_real_estate_tax_deductions,All,-inf,inf,True,False,True,12779463.0 +2021,Table 2.1,BR,10,state_and_local_tax_deductions,All,-inf,inf,False,False,True,362507801000.0 +2021,Table 2.1,BQ,10,state_and_local_tax_deductions,All,-inf,inf,True,False,True,14644905.0 +2021,Table 2.1,BP,10,itemized_taxes_paid_deductions,All,-inf,inf,False,False,True,119541517000.0 +2021,Table 2.1,BO,10,itemized_taxes_paid_deductions,All,-inf,inf,True,False,True,14687846.0 +2021,Table 2.1,CX,11,charitable_contributions_deductions,All,0.0,5000.0,False,False,False,27412000.0 +2021,Table 2.1,CW,11,charitable_contributions_deductions,All,0.0,5000.0,True,False,False,36897.0 +2021,Table 2.1,BX,11,itemized_general_sales_tax_deduction,All,0.0,5000.0,False,False,False,20064000.0 +2021,Table 2.1,BW,11,itemized_general_sales_tax_deduction,All,0.0,5000.0,True,False,False,42999.0 +2021,Table 2.1,CH,11,interest_paid_deductions,All,0.0,5000.0,False,False,False,351878000.0 +2021,Table 2.1,CG,11,interest_paid_deductions,All,0.0,5000.0,True,False,False,34775.0 +2021,Table 2.1,BJ,11,medical_expense_deductions_capped,All,0.0,5000.0,False,False,False,1182428000.0 +2021,Table 2.1,BI,11,medical_expense_deductions_capped,All,0.0,5000.0,True,False,False,64071.0 +2021,Table 2.1,BL,11,medical_expense_deductions_uncapped,All,0.0,5000.0,False,False,False,1191945000.0 +2021,Table 2.1,BK,11,medical_expense_deductions_uncapped,All,0.0,5000.0,True,False,False,64071.0 +2021,Table 2.1,CJ,11,mortgage_interest_deductions,All,0.0,5000.0,False,False,False,349116000.0 +2021,Table 2.1,CI,11,mortgage_interest_deductions,All,0.0,5000.0,True,False,False,33207.0 +2021,Table 2.1,BV,11,itemized_state_income_tax_deductions,All,0.0,5000.0,False,False,False,49819000.0 +2021,Table 2.1,BU,11,itemized_state_income_tax_deductions,All,0.0,5000.0,True,False,False,16674.0 +2021,Table 2.1,BT,11,idpitgst,All,0.0,5000.0,False,False,False,69882000.0 +2021,Table 2.1,BS,11,idpitgst,All,0.0,5000.0,True,False,False,59673.0 +2021,Table 2.1,BZ,11,itemized_real_estate_tax_deductions,All,0.0,5000.0,False,False,False,256216000.0 +2021,Table 2.1,BY,11,itemized_real_estate_tax_deductions,All,0.0,5000.0,True,False,False,46424.0 +2021,Table 2.1,BR,11,state_and_local_tax_deductions,All,0.0,5000.0,False,False,False,336650000.0 +2021,Table 2.1,BQ,11,state_and_local_tax_deductions,All,0.0,5000.0,True,False,False,72301.0 +2021,Table 2.1,BP,11,itemized_taxes_paid_deductions,All,0.0,5000.0,False,False,False,300355000.0 +2021,Table 2.1,BO,11,itemized_taxes_paid_deductions,All,0.0,5000.0,True,False,False,72393.0 +2021,Table 2.1,CX,12,charitable_contributions_deductions,All,5000.0,10000.0,False,False,False,96560000.0 +2021,Table 2.1,CW,12,charitable_contributions_deductions,All,5000.0,10000.0,True,False,False,50340.0 +2021,Table 2.1,BX,12,itemized_general_sales_tax_deduction,All,5000.0,10000.0,False,False,False,28935000.0 +2021,Table 2.1,BW,12,itemized_general_sales_tax_deduction,All,5000.0,10000.0,True,False,False,54451.0 +2021,Table 2.1,CH,12,interest_paid_deductions,All,5000.0,10000.0,False,False,False,505199000.0 +2021,Table 2.1,CG,12,interest_paid_deductions,All,5000.0,10000.0,True,False,False,42464.0 +2021,Table 2.1,BJ,12,medical_expense_deductions_capped,All,5000.0,10000.0,False,False,False,1290734000.0 +2021,Table 2.1,BI,12,medical_expense_deductions_capped,All,5000.0,10000.0,True,False,False,67090.0 +2021,Table 2.1,BL,12,medical_expense_deductions_uncapped,All,5000.0,10000.0,False,False,False,1328511000.0 +2021,Table 2.1,BK,12,medical_expense_deductions_uncapped,All,5000.0,10000.0,True,False,False,67090.0 +2021,Table 2.1,CJ,12,mortgage_interest_deductions,All,5000.0,10000.0,False,False,False,504725000.0 +2021,Table 2.1,CI,12,mortgage_interest_deductions,All,5000.0,10000.0,True,False,False,42439.0 +2021,Table 2.1,BV,12,itemized_state_income_tax_deductions,All,5000.0,10000.0,False,False,False,52308000.0 +2021,Table 2.1,BU,12,itemized_state_income_tax_deductions,All,5000.0,10000.0,True,False,False,23016.0 +2021,Table 2.1,BT,12,idpitgst,All,5000.0,10000.0,False,False,False,81243000.0 +2021,Table 2.1,BS,12,idpitgst,All,5000.0,10000.0,True,False,False,77467.0 +2021,Table 2.1,BZ,12,itemized_real_estate_tax_deductions,All,5000.0,10000.0,False,False,False,294963000.0 +2021,Table 2.1,BY,12,itemized_real_estate_tax_deductions,All,5000.0,10000.0,True,False,False,60133.0 +2021,Table 2.1,BR,12,state_and_local_tax_deductions,All,5000.0,10000.0,False,False,False,380502000.0 +2021,Table 2.1,BQ,12,state_and_local_tax_deductions,All,5000.0,10000.0,True,False,False,87056.0 +2021,Table 2.1,BP,12,itemized_taxes_paid_deductions,All,5000.0,10000.0,False,False,False,346915000.0 +2021,Table 2.1,BO,12,itemized_taxes_paid_deductions,All,5000.0,10000.0,True,False,False,89055.0 +2021,Table 2.1,CX,13,charitable_contributions_deductions,All,10000.0,15000.0,False,False,False,155840000.0 +2021,Table 2.1,CW,13,charitable_contributions_deductions,All,10000.0,15000.0,True,False,False,64125.0 +2021,Table 2.1,BX,13,itemized_general_sales_tax_deduction,All,10000.0,15000.0,False,False,False,34004000.0 +2021,Table 2.1,BW,13,itemized_general_sales_tax_deduction,All,10000.0,15000.0,True,False,False,58735.0 +2021,Table 2.1,CH,13,interest_paid_deductions,All,10000.0,15000.0,False,False,False,661032000.0 +2021,Table 2.1,CG,13,interest_paid_deductions,All,10000.0,15000.0,True,False,False,58324.0 +2021,Table 2.1,BJ,13,medical_expense_deductions_capped,All,10000.0,15000.0,False,False,False,1366812000.0 +2021,Table 2.1,BI,13,medical_expense_deductions_capped,All,10000.0,15000.0,True,False,False,74656.0 +2021,Table 2.1,BL,13,medical_expense_deductions_uncapped,All,10000.0,15000.0,False,False,False,1436712000.0 +2021,Table 2.1,BK,13,medical_expense_deductions_uncapped,All,10000.0,15000.0,True,False,False,74656.0 +2021,Table 2.1,CJ,13,mortgage_interest_deductions,All,10000.0,15000.0,False,False,False,654059000.0 +2021,Table 2.1,CI,13,mortgage_interest_deductions,All,10000.0,15000.0,True,False,False,55732.0 +2021,Table 2.1,BV,13,itemized_state_income_tax_deductions,All,10000.0,15000.0,False,False,False,104215000.0 +2021,Table 2.1,BU,13,itemized_state_income_tax_deductions,All,10000.0,15000.0,True,False,False,36489.0 +2021,Table 2.1,BT,13,idpitgst,All,10000.0,15000.0,False,False,False,138219000.0 +2021,Table 2.1,BS,13,idpitgst,All,10000.0,15000.0,True,False,False,95224.0 +2021,Table 2.1,BZ,13,itemized_real_estate_tax_deductions,All,10000.0,15000.0,False,False,False,423838000.0 +2021,Table 2.1,BY,13,itemized_real_estate_tax_deductions,All,10000.0,15000.0,True,False,False,75943.0 +2021,Table 2.1,BR,13,state_and_local_tax_deductions,All,10000.0,15000.0,False,False,False,581150000.0 +2021,Table 2.1,BQ,13,state_and_local_tax_deductions,All,10000.0,15000.0,True,False,False,102025.0 +2021,Table 2.1,BP,13,itemized_taxes_paid_deductions,All,10000.0,15000.0,False,False,False,519125000.0 +2021,Table 2.1,BO,13,itemized_taxes_paid_deductions,All,10000.0,15000.0,True,False,False,103125.0 +2021,Table 2.1,CX,14,charitable_contributions_deductions,All,15000.0,20000.0,False,False,False,277664000.0 +2021,Table 2.1,CW,14,charitable_contributions_deductions,All,15000.0,20000.0,True,False,False,97378.0 +2021,Table 2.1,BX,14,itemized_general_sales_tax_deduction,All,15000.0,20000.0,False,False,False,73684000.0 +2021,Table 2.1,BW,14,itemized_general_sales_tax_deduction,All,15000.0,20000.0,True,False,False,85755.0 +2021,Table 2.1,CH,14,interest_paid_deductions,All,15000.0,20000.0,False,False,False,795523000.0 +2021,Table 2.1,CG,14,interest_paid_deductions,All,15000.0,20000.0,True,False,False,78442.0 +2021,Table 2.1,BJ,14,medical_expense_deductions_capped,All,15000.0,20000.0,False,False,False,2885547000.0 +2021,Table 2.1,BI,14,medical_expense_deductions_capped,All,15000.0,20000.0,True,False,False,126081.0 +2021,Table 2.1,BL,14,medical_expense_deductions_uncapped,All,15000.0,20000.0,False,False,False,3049836000.0 +2021,Table 2.1,BK,14,medical_expense_deductions_uncapped,All,15000.0,20000.0,True,False,False,126081.0 +2021,Table 2.1,CJ,14,mortgage_interest_deductions,All,15000.0,20000.0,False,False,False,793827000.0 +2021,Table 2.1,CI,14,mortgage_interest_deductions,All,15000.0,20000.0,True,False,False,77595.0 +2021,Table 2.1,BV,14,itemized_state_income_tax_deductions,All,15000.0,20000.0,False,False,False,183949000.0 +2021,Table 2.1,BU,14,itemized_state_income_tax_deductions,All,15000.0,20000.0,True,False,False,54965.0 +2021,Table 2.1,BT,14,idpitgst,All,15000.0,20000.0,False,False,False,257632000.0 +2021,Table 2.1,BS,14,idpitgst,All,15000.0,20000.0,True,False,False,140720.0 +2021,Table 2.1,BZ,14,itemized_real_estate_tax_deductions,All,15000.0,20000.0,False,False,False,556597000.0 +2021,Table 2.1,BY,14,itemized_real_estate_tax_deductions,All,15000.0,20000.0,True,False,False,97224.0 +2021,Table 2.1,BR,14,state_and_local_tax_deductions,All,15000.0,20000.0,False,False,False,821023000.0 +2021,Table 2.1,BQ,14,state_and_local_tax_deductions,All,15000.0,20000.0,True,False,False,148557.0 +2021,Table 2.1,BP,14,itemized_taxes_paid_deductions,All,15000.0,20000.0,False,False,False,687462000.0 +2021,Table 2.1,BO,14,itemized_taxes_paid_deductions,All,15000.0,20000.0,True,False,False,149922.0 +2021,Table 2.1,CX,15,charitable_contributions_deductions,All,20000.0,25000.0,False,False,False,419994000.0 +2021,Table 2.1,CW,15,charitable_contributions_deductions,All,20000.0,25000.0,True,False,False,108446.0 +2021,Table 2.1,BX,15,itemized_general_sales_tax_deduction,All,20000.0,25000.0,False,False,False,85770000.0 +2021,Table 2.1,BW,15,itemized_general_sales_tax_deduction,All,20000.0,25000.0,True,False,False,80697.0 +2021,Table 2.1,CH,15,interest_paid_deductions,All,20000.0,25000.0,False,False,False,975865000.0 +2021,Table 2.1,CG,15,interest_paid_deductions,All,20000.0,25000.0,True,False,False,92849.0 +2021,Table 2.1,BJ,15,medical_expense_deductions_capped,All,20000.0,25000.0,False,False,False,2057325000.0 +2021,Table 2.1,BI,15,medical_expense_deductions_capped,All,20000.0,25000.0,True,False,False,120657.0 +2021,Table 2.1,BL,15,medical_expense_deductions_uncapped,All,20000.0,25000.0,False,False,False,2262637000.0 +2021,Table 2.1,BK,15,medical_expense_deductions_uncapped,All,20000.0,25000.0,True,False,False,120657.0 +2021,Table 2.1,CJ,15,mortgage_interest_deductions,All,20000.0,25000.0,False,False,False,966376000.0 +2021,Table 2.1,CI,15,mortgage_interest_deductions,All,20000.0,25000.0,True,False,False,91706.0 +2021,Table 2.1,BV,15,itemized_state_income_tax_deductions,All,20000.0,25000.0,False,False,False,124232000.0 +2021,Table 2.1,BU,15,itemized_state_income_tax_deductions,All,20000.0,25000.0,True,False,False,68182.0 +2021,Table 2.1,BT,15,idpitgst,All,20000.0,25000.0,False,False,False,210001000.0 +2021,Table 2.1,BS,15,idpitgst,All,20000.0,25000.0,True,False,False,148879.0 +2021,Table 2.1,BZ,15,itemized_real_estate_tax_deductions,All,20000.0,25000.0,False,False,False,565930000.0 +2021,Table 2.1,BY,15,itemized_real_estate_tax_deductions,All,20000.0,25000.0,True,False,False,112133.0 +2021,Table 2.1,BR,15,state_and_local_tax_deductions,All,20000.0,25000.0,False,False,False,811022000.0 +2021,Table 2.1,BQ,15,state_and_local_tax_deductions,All,20000.0,25000.0,True,False,False,155007.0 +2021,Table 2.1,BP,15,itemized_taxes_paid_deductions,All,20000.0,25000.0,False,False,False,753305000.0 +2021,Table 2.1,BO,15,itemized_taxes_paid_deductions,All,20000.0,25000.0,True,False,False,156017.0 +2021,Table 2.1,CX,16,charitable_contributions_deductions,All,25000.0,30000.0,False,False,False,706756000.0 +2021,Table 2.1,CW,16,charitable_contributions_deductions,All,25000.0,30000.0,True,False,False,144537.0 +2021,Table 2.1,BX,16,itemized_general_sales_tax_deduction,All,25000.0,30000.0,False,False,False,99703000.0 +2021,Table 2.1,BW,16,itemized_general_sales_tax_deduction,All,25000.0,30000.0,True,False,False,84858.0 +2021,Table 2.1,CH,16,interest_paid_deductions,All,25000.0,30000.0,False,False,False,964858000.0 +2021,Table 2.1,CG,16,interest_paid_deductions,All,25000.0,30000.0,True,False,False,97966.0 +2021,Table 2.1,BJ,16,medical_expense_deductions_capped,All,25000.0,30000.0,False,False,False,2142120000.0 +2021,Table 2.1,BI,16,medical_expense_deductions_capped,All,25000.0,30000.0,True,False,False,128192.0 +2021,Table 2.1,BL,16,medical_expense_deductions_uncapped,All,25000.0,30000.0,False,False,False,2408161000.0 +2021,Table 2.1,BK,16,medical_expense_deductions_uncapped,All,25000.0,30000.0,True,False,False,128192.0 +2021,Table 2.1,CJ,16,mortgage_interest_deductions,All,25000.0,30000.0,False,False,False,958030000.0 +2021,Table 2.1,CI,16,mortgage_interest_deductions,All,25000.0,30000.0,True,False,False,96818.0 +2021,Table 2.1,BV,16,itemized_state_income_tax_deductions,All,25000.0,30000.0,False,False,False,155739000.0 +2021,Table 2.1,BU,16,itemized_state_income_tax_deductions,All,25000.0,30000.0,True,False,False,87029.0 +2021,Table 2.1,BT,16,idpitgst,All,25000.0,30000.0,False,False,False,255442000.0 +2021,Table 2.1,BS,16,idpitgst,All,25000.0,30000.0,True,False,False,171887.0 +2021,Table 2.1,BZ,16,itemized_real_estate_tax_deductions,All,25000.0,30000.0,False,False,False,525455000.0 +2021,Table 2.1,BY,16,itemized_real_estate_tax_deductions,All,25000.0,30000.0,True,False,False,110828.0 +2021,Table 2.1,BR,16,state_and_local_tax_deductions,All,25000.0,30000.0,False,False,False,835417000.0 +2021,Table 2.1,BQ,16,state_and_local_tax_deductions,All,25000.0,30000.0,True,False,False,184738.0 +2021,Table 2.1,BP,16,itemized_taxes_paid_deductions,All,25000.0,30000.0,False,False,False,781930000.0 +2021,Table 2.1,BO,16,itemized_taxes_paid_deductions,All,25000.0,30000.0,True,False,False,184790.0 +2021,Table 2.1,CX,17,charitable_contributions_deductions,All,30000.0,35000.0,False,False,False,904472000.0 +2021,Table 2.1,CW,17,charitable_contributions_deductions,All,30000.0,35000.0,True,False,False,174762.0 +2021,Table 2.1,BX,17,itemized_general_sales_tax_deduction,All,30000.0,35000.0,False,False,False,148397000.0 +2021,Table 2.1,BW,17,itemized_general_sales_tax_deduction,All,30000.0,35000.0,True,False,False,87722.0 +2021,Table 2.1,CH,17,interest_paid_deductions,All,30000.0,35000.0,False,False,False,1300974000.0 +2021,Table 2.1,CG,17,interest_paid_deductions,All,30000.0,35000.0,True,False,False,128477.0 +2021,Table 2.1,BJ,17,medical_expense_deductions_capped,All,30000.0,35000.0,False,False,False,2492152000.0 +2021,Table 2.1,BI,17,medical_expense_deductions_capped,All,30000.0,35000.0,True,False,False,135437.0 +2021,Table 2.1,BL,17,medical_expense_deductions_uncapped,All,30000.0,35000.0,False,False,False,2824184000.0 +2021,Table 2.1,BK,17,medical_expense_deductions_uncapped,All,30000.0,35000.0,True,False,False,135437.0 +2021,Table 2.1,CJ,17,mortgage_interest_deductions,All,30000.0,35000.0,False,False,False,1296531000.0 +2021,Table 2.1,CI,17,mortgage_interest_deductions,All,30000.0,35000.0,True,False,False,125957.0 +2021,Table 2.1,BV,17,itemized_state_income_tax_deductions,All,30000.0,35000.0,False,False,False,283058000.0 +2021,Table 2.1,BU,17,itemized_state_income_tax_deductions,All,30000.0,35000.0,True,False,False,122508.0 +2021,Table 2.1,BT,17,idpitgst,All,30000.0,35000.0,False,False,False,431455000.0 +2021,Table 2.1,BS,17,idpitgst,All,30000.0,35000.0,True,False,False,210230.0 +2021,Table 2.1,BZ,17,itemized_real_estate_tax_deductions,All,30000.0,35000.0,False,False,False,740176000.0 +2021,Table 2.1,BY,17,itemized_real_estate_tax_deductions,All,30000.0,35000.0,True,False,False,141234.0 +2021,Table 2.1,BR,17,state_and_local_tax_deductions,All,30000.0,35000.0,False,False,False,1209086000.0 +2021,Table 2.1,BQ,17,state_and_local_tax_deductions,All,30000.0,35000.0,True,False,False,220479.0 +2021,Table 2.1,BP,17,itemized_taxes_paid_deductions,All,30000.0,35000.0,False,False,False,1100170000.0 +2021,Table 2.1,BO,17,itemized_taxes_paid_deductions,All,30000.0,35000.0,True,False,False,222604.0 +2021,Table 2.1,CX,18,charitable_contributions_deductions,All,35000.0,40000.0,False,False,False,903908000.0 +2021,Table 2.1,CW,18,charitable_contributions_deductions,All,35000.0,40000.0,True,False,False,163203.0 +2021,Table 2.1,BX,18,itemized_general_sales_tax_deduction,All,35000.0,40000.0,False,False,False,127765000.0 +2021,Table 2.1,BW,18,itemized_general_sales_tax_deduction,All,35000.0,40000.0,True,False,False,91605.0 +2021,Table 2.1,CH,18,interest_paid_deductions,All,35000.0,40000.0,False,False,False,1472192000.0 +2021,Table 2.1,CG,18,interest_paid_deductions,All,35000.0,40000.0,True,False,False,151067.0 +2021,Table 2.1,BJ,18,medical_expense_deductions_capped,All,35000.0,40000.0,False,False,False,2572548000.0 +2021,Table 2.1,BI,18,medical_expense_deductions_capped,All,35000.0,40000.0,True,False,False,133583.0 +2021,Table 2.1,BL,18,medical_expense_deductions_uncapped,All,35000.0,40000.0,False,False,False,2949560000.0 +2021,Table 2.1,BK,18,medical_expense_deductions_uncapped,All,35000.0,40000.0,True,False,False,133583.0 +2021,Table 2.1,CJ,18,mortgage_interest_deductions,All,35000.0,40000.0,False,False,False,1465880000.0 +2021,Table 2.1,CI,18,mortgage_interest_deductions,All,35000.0,40000.0,True,False,False,150651.0 +2021,Table 2.1,BV,18,itemized_state_income_tax_deductions,All,35000.0,40000.0,False,False,False,402927000.0 +2021,Table 2.1,BU,18,itemized_state_income_tax_deductions,All,35000.0,40000.0,True,False,False,132013.0 +2021,Table 2.1,BT,18,idpitgst,All,35000.0,40000.0,False,False,False,530692000.0 +2021,Table 2.1,BS,18,idpitgst,All,35000.0,40000.0,True,False,False,223618.0 +2021,Table 2.1,BZ,18,itemized_real_estate_tax_deductions,All,35000.0,40000.0,False,False,False,773900000.0 +2021,Table 2.1,BY,18,itemized_real_estate_tax_deductions,All,35000.0,40000.0,True,False,False,169721.0 +2021,Table 2.1,BR,18,state_and_local_tax_deductions,All,35000.0,40000.0,False,False,False,1372777000.0 +2021,Table 2.1,BQ,18,state_and_local_tax_deductions,All,35000.0,40000.0,True,False,False,234030.0 +2021,Table 2.1,BP,18,itemized_taxes_paid_deductions,All,35000.0,40000.0,False,False,False,1143800000.0 +2021,Table 2.1,BO,18,itemized_taxes_paid_deductions,All,35000.0,40000.0,True,False,False,234031.0 +2021,Table 2.1,CX,19,charitable_contributions_deductions,All,40000.0,45000.0,False,False,False,1110681000.0 +2021,Table 2.1,CW,19,charitable_contributions_deductions,All,40000.0,45000.0,True,False,False,212594.0 +2021,Table 2.1,BX,19,itemized_general_sales_tax_deduction,All,40000.0,45000.0,False,False,False,138996000.0 +2021,Table 2.1,BW,19,itemized_general_sales_tax_deduction,All,40000.0,45000.0,True,False,False,104970.0 +2021,Table 2.1,CH,19,interest_paid_deductions,All,40000.0,45000.0,False,False,False,1942763000.0 +2021,Table 2.1,CG,19,interest_paid_deductions,All,40000.0,45000.0,True,False,False,178110.0 +2021,Table 2.1,BJ,19,medical_expense_deductions_capped,All,40000.0,45000.0,False,False,False,2397784000.0 +2021,Table 2.1,BI,19,medical_expense_deductions_capped,All,40000.0,45000.0,True,False,False,148065.0 +2021,Table 2.1,BL,19,medical_expense_deductions_uncapped,All,40000.0,45000.0,False,False,False,2869363000.0 +2021,Table 2.1,BK,19,medical_expense_deductions_uncapped,All,40000.0,45000.0,True,False,False,148065.0 +2021,Table 2.1,CJ,19,mortgage_interest_deductions,All,40000.0,45000.0,False,False,False,1933451000.0 +2021,Table 2.1,CI,19,mortgage_interest_deductions,All,40000.0,45000.0,True,False,False,176842.0 +2021,Table 2.1,BV,19,itemized_state_income_tax_deductions,All,40000.0,45000.0,False,False,False,393145000.0 +2021,Table 2.1,BU,19,itemized_state_income_tax_deductions,All,40000.0,45000.0,True,False,False,168904.0 +2021,Table 2.1,BT,19,idpitgst,All,40000.0,45000.0,False,False,False,532141000.0 +2021,Table 2.1,BS,19,idpitgst,All,40000.0,45000.0,True,False,False,273874.0 +2021,Table 2.1,BZ,19,itemized_real_estate_tax_deductions,All,40000.0,45000.0,False,False,False,1014207000.0 +2021,Table 2.1,BY,19,itemized_real_estate_tax_deductions,All,40000.0,45000.0,True,False,False,200465.0 +2021,Table 2.1,BR,19,state_and_local_tax_deductions,All,40000.0,45000.0,False,False,False,1576721000.0 +2021,Table 2.1,BQ,19,state_and_local_tax_deductions,All,40000.0,45000.0,True,False,False,286943.0 +2021,Table 2.1,BP,19,itemized_taxes_paid_deductions,All,40000.0,45000.0,False,False,False,1466305000.0 +2021,Table 2.1,BO,19,itemized_taxes_paid_deductions,All,40000.0,45000.0,True,False,False,289986.0 +2021,Table 2.1,CX,20,charitable_contributions_deductions,All,45000.0,50000.0,False,False,False,1105708000.0 +2021,Table 2.1,CW,20,charitable_contributions_deductions,All,45000.0,50000.0,True,False,False,232425.0 +2021,Table 2.1,BX,20,itemized_general_sales_tax_deduction,All,45000.0,50000.0,False,False,False,140861000.0 +2021,Table 2.1,BW,20,itemized_general_sales_tax_deduction,All,45000.0,50000.0,True,False,False,96072.0 +2021,Table 2.1,CH,20,interest_paid_deductions,All,45000.0,50000.0,False,False,False,2040007000.0 +2021,Table 2.1,CG,20,interest_paid_deductions,All,45000.0,50000.0,True,False,False,197093.0 +2021,Table 2.1,BJ,20,medical_expense_deductions_capped,All,45000.0,50000.0,False,False,False,3270037000.0 +2021,Table 2.1,BI,20,medical_expense_deductions_capped,All,45000.0,50000.0,True,False,False,169056.0 +2021,Table 2.1,BL,20,medical_expense_deductions_uncapped,All,45000.0,50000.0,False,False,False,3869434000.0 +2021,Table 2.1,BK,20,medical_expense_deductions_uncapped,All,45000.0,50000.0,True,False,False,169056.0 +2021,Table 2.1,CJ,20,mortgage_interest_deductions,All,45000.0,50000.0,False,False,False,2030291000.0 +2021,Table 2.1,CI,20,mortgage_interest_deductions,All,45000.0,50000.0,True,False,False,196700.0 +2021,Table 2.1,BV,20,itemized_state_income_tax_deductions,All,45000.0,50000.0,False,False,False,533009000.0 +2021,Table 2.1,BU,20,itemized_state_income_tax_deductions,All,45000.0,50000.0,True,False,False,203815.0 +2021,Table 2.1,BT,20,idpitgst,All,45000.0,50000.0,False,False,False,673870000.0 +2021,Table 2.1,BS,20,idpitgst,All,45000.0,50000.0,True,False,False,299887.0 +2021,Table 2.1,BZ,20,itemized_real_estate_tax_deductions,All,45000.0,50000.0,False,False,False,1129842000.0 +2021,Table 2.1,BY,20,itemized_real_estate_tax_deductions,All,45000.0,50000.0,True,False,False,224009.0 +2021,Table 2.1,BR,20,state_and_local_tax_deductions,All,45000.0,50000.0,False,False,False,1926544000.0 +2021,Table 2.1,BQ,20,state_and_local_tax_deductions,All,45000.0,50000.0,True,False,False,312280.0 +2021,Table 2.1,BP,20,itemized_taxes_paid_deductions,All,45000.0,50000.0,False,False,False,1819849000.0 +2021,Table 2.1,BO,20,itemized_taxes_paid_deductions,All,45000.0,50000.0,True,False,False,314349.0 +2021,Table 2.1,CX,21,charitable_contributions_deductions,All,50000.0,55000.0,False,False,False,1349600000.0 +2021,Table 2.1,CW,21,charitable_contributions_deductions,All,50000.0,55000.0,True,False,False,239594.0 +2021,Table 2.1,BX,21,itemized_general_sales_tax_deduction,All,50000.0,55000.0,False,False,False,146664000.0 +2021,Table 2.1,BW,21,itemized_general_sales_tax_deduction,All,50000.0,55000.0,True,False,False,117197.0 +2021,Table 2.1,CH,21,interest_paid_deductions,All,50000.0,55000.0,False,False,False,2236435000.0 +2021,Table 2.1,CG,21,interest_paid_deductions,All,50000.0,55000.0,True,False,False,237857.0 +2021,Table 2.1,BJ,21,medical_expense_deductions_capped,All,50000.0,55000.0,False,False,False,3052627000.0 +2021,Table 2.1,BI,21,medical_expense_deductions_capped,All,50000.0,55000.0,True,False,False,163599.0 +2021,Table 2.1,BL,21,medical_expense_deductions_uncapped,All,50000.0,55000.0,False,False,False,3696666000.0 +2021,Table 2.1,BK,21,medical_expense_deductions_uncapped,All,50000.0,55000.0,True,False,False,163599.0 +2021,Table 2.1,CJ,21,mortgage_interest_deductions,All,50000.0,55000.0,False,False,False,2224423000.0 +2021,Table 2.1,CI,21,mortgage_interest_deductions,All,50000.0,55000.0,True,False,False,235397.0 +2021,Table 2.1,BV,21,itemized_state_income_tax_deductions,All,50000.0,55000.0,False,False,False,528568000.0 +2021,Table 2.1,BU,21,itemized_state_income_tax_deductions,All,50000.0,55000.0,True,False,False,203778.0 +2021,Table 2.1,BT,21,idpitgst,All,50000.0,55000.0,False,False,False,675232000.0 +2021,Table 2.1,BS,21,idpitgst,All,50000.0,55000.0,True,False,False,320975.0 +2021,Table 2.1,BZ,21,itemized_real_estate_tax_deductions,All,50000.0,55000.0,False,False,False,1251885000.0 +2021,Table 2.1,BY,21,itemized_real_estate_tax_deductions,All,50000.0,55000.0,True,False,False,266129.0 +2021,Table 2.1,BR,21,state_and_local_tax_deductions,All,50000.0,55000.0,False,False,False,2041826000.0 +2021,Table 2.1,BQ,21,state_and_local_tax_deductions,All,50000.0,55000.0,True,False,False,335880.0 +2021,Table 2.1,BP,21,itemized_taxes_paid_deductions,All,50000.0,55000.0,False,False,False,1886129000.0 +2021,Table 2.1,BO,21,itemized_taxes_paid_deductions,All,50000.0,55000.0,True,False,False,337954.0 +2021,Table 2.1,CX,22,charitable_contributions_deductions,All,55000.0,60000.0,False,False,False,1438248000.0 +2021,Table 2.1,CW,22,charitable_contributions_deductions,All,55000.0,60000.0,True,False,False,267505.0 +2021,Table 2.1,BX,22,itemized_general_sales_tax_deduction,All,55000.0,60000.0,False,False,False,124418000.0 +2021,Table 2.1,BW,22,itemized_general_sales_tax_deduction,All,55000.0,60000.0,True,False,False,104878.0 +2021,Table 2.1,CH,22,interest_paid_deductions,All,55000.0,60000.0,False,False,False,2296099000.0 +2021,Table 2.1,CG,22,interest_paid_deductions,All,55000.0,60000.0,True,False,False,240249.0 +2021,Table 2.1,BJ,22,medical_expense_deductions_capped,All,55000.0,60000.0,False,False,False,2517256000.0 +2021,Table 2.1,BI,22,medical_expense_deductions_capped,All,55000.0,60000.0,True,False,False,152888.0 +2021,Table 2.1,BL,22,medical_expense_deductions_uncapped,All,55000.0,60000.0,False,False,False,3175555000.0 +2021,Table 2.1,BK,22,medical_expense_deductions_uncapped,All,55000.0,60000.0,True,False,False,152888.0 +2021,Table 2.1,CJ,22,mortgage_interest_deductions,All,55000.0,60000.0,False,False,False,2286536000.0 +2021,Table 2.1,CI,22,mortgage_interest_deductions,All,55000.0,60000.0,True,False,False,239179.0 +2021,Table 2.1,BV,22,itemized_state_income_tax_deductions,All,55000.0,60000.0,False,False,False,757495000.0 +2021,Table 2.1,BU,22,itemized_state_income_tax_deductions,All,55000.0,60000.0,True,False,False,233712.0 +2021,Table 2.1,BT,22,idpitgst,All,55000.0,60000.0,False,False,False,881913000.0 +2021,Table 2.1,BS,22,idpitgst,All,55000.0,60000.0,True,False,False,338591.0 +2021,Table 2.1,BZ,22,itemized_real_estate_tax_deductions,All,55000.0,60000.0,False,False,False,1322707000.0 +2021,Table 2.1,BY,22,itemized_real_estate_tax_deductions,All,55000.0,60000.0,True,False,False,270434.0 +2021,Table 2.1,BR,22,state_and_local_tax_deductions,All,55000.0,60000.0,False,False,False,2299240000.0 +2021,Table 2.1,BQ,22,state_and_local_tax_deductions,All,55000.0,60000.0,True,False,False,348695.0 +2021,Table 2.1,BP,22,itemized_taxes_paid_deductions,All,55000.0,60000.0,False,False,False,2093207000.0 +2021,Table 2.1,BO,22,itemized_taxes_paid_deductions,All,55000.0,60000.0,True,False,False,349713.0 +2021,Table 2.1,CX,23,charitable_contributions_deductions,All,60000.0,75000.0,False,False,False,4778416000.0 +2021,Table 2.1,CW,23,charitable_contributions_deductions,All,60000.0,75000.0,True,False,False,876462.0 +2021,Table 2.1,BX,23,itemized_general_sales_tax_deduction,All,60000.0,75000.0,False,False,False,484758000.0 +2021,Table 2.1,BW,23,itemized_general_sales_tax_deduction,All,60000.0,75000.0,True,False,False,282627.0 +2021,Table 2.1,CH,23,interest_paid_deductions,All,60000.0,75000.0,False,False,False,8299830000.0 +2021,Table 2.1,CG,23,interest_paid_deductions,All,60000.0,75000.0,True,False,False,880459.0 +2021,Table 2.1,BJ,23,medical_expense_deductions_capped,All,60000.0,75000.0,False,False,False,7867927000.0 +2021,Table 2.1,BI,23,medical_expense_deductions_capped,All,60000.0,75000.0,True,False,False,416631.0 +2021,Table 2.1,BL,23,medical_expense_deductions_uncapped,All,60000.0,75000.0,False,False,False,9961801000.0 +2021,Table 2.1,BK,23,medical_expense_deductions_uncapped,All,60000.0,75000.0,True,False,False,416631.0 +2021,Table 2.1,CJ,23,mortgage_interest_deductions,All,60000.0,75000.0,False,False,False,8263595000.0 +2021,Table 2.1,CI,23,mortgage_interest_deductions,All,60000.0,75000.0,True,False,False,879564.0 +2021,Table 2.1,BV,23,itemized_state_income_tax_deductions,All,60000.0,75000.0,False,False,False,2791591000.0 +2021,Table 2.1,BU,23,itemized_state_income_tax_deductions,All,60000.0,75000.0,True,False,False,794833.0 +2021,Table 2.1,BT,23,idpitgst,All,60000.0,75000.0,False,False,False,3276349000.0 +2021,Table 2.1,BS,23,idpitgst,All,60000.0,75000.0,True,False,False,1077460.0 +2021,Table 2.1,BZ,23,itemized_real_estate_tax_deductions,All,60000.0,75000.0,False,False,False,4541711000.0 +2021,Table 2.1,BY,23,itemized_real_estate_tax_deductions,All,60000.0,75000.0,True,False,False,948235.0 +2021,Table 2.1,BR,23,state_and_local_tax_deductions,All,60000.0,75000.0,False,False,False,8106733000.0 +2021,Table 2.1,BQ,23,state_and_local_tax_deductions,All,60000.0,75000.0,True,False,False,1112635.0 +2021,Table 2.1,BP,23,itemized_taxes_paid_deductions,All,60000.0,75000.0,False,False,False,7407751000.0 +2021,Table 2.1,BO,23,itemized_taxes_paid_deductions,All,60000.0,75000.0,True,False,False,1117975.0 +2021,Table 2.1,CX,24,charitable_contributions_deductions,All,75000.0,100000.0,False,False,False,9765308000.0 +2021,Table 2.1,CW,24,charitable_contributions_deductions,All,75000.0,100000.0,True,False,False,1533838.0 +2021,Table 2.1,BX,24,itemized_general_sales_tax_deduction,All,75000.0,100000.0,False,False,False,848993000.0 +2021,Table 2.1,BW,24,itemized_general_sales_tax_deduction,All,75000.0,100000.0,True,False,False,435436.0 +2021,Table 2.1,CH,24,interest_paid_deductions,All,75000.0,100000.0,False,False,False,16691350000.0 +2021,Table 2.1,CG,24,interest_paid_deductions,All,75000.0,100000.0,True,False,False,1615876.0 +2021,Table 2.1,BJ,24,medical_expense_deductions_capped,All,75000.0,100000.0,False,False,False,11251902000.0 +2021,Table 2.1,BI,24,medical_expense_deductions_capped,All,75000.0,100000.0,True,False,False,568901.0 +2021,Table 2.1,BL,24,medical_expense_deductions_uncapped,All,75000.0,100000.0,False,False,False,14967597000.0 +2021,Table 2.1,BK,24,medical_expense_deductions_uncapped,All,75000.0,100000.0,True,False,False,568901.0 +2021,Table 2.1,CJ,24,mortgage_interest_deductions,All,75000.0,100000.0,False,False,False,16552940000.0 +2021,Table 2.1,CI,24,mortgage_interest_deductions,All,75000.0,100000.0,True,False,False,1605710.0 +2021,Table 2.1,BV,24,itemized_state_income_tax_deductions,All,75000.0,100000.0,False,False,False,6804275000.0 +2021,Table 2.1,BU,24,itemized_state_income_tax_deductions,All,75000.0,100000.0,True,False,False,1488980.0 +2021,Table 2.1,BT,24,idpitgst,All,75000.0,100000.0,False,False,False,7653268000.0 +2021,Table 2.1,BS,24,idpitgst,All,75000.0,100000.0,True,False,False,1924416.0 +2021,Table 2.1,BZ,24,itemized_real_estate_tax_deductions,All,75000.0,100000.0,False,False,False,8792062000.0 +2021,Table 2.1,BY,24,itemized_real_estate_tax_deductions,All,75000.0,100000.0,True,False,False,1737166.0 +2021,Table 2.1,BR,24,state_and_local_tax_deductions,All,75000.0,100000.0,False,False,False,16952297000.0 +2021,Table 2.1,BQ,24,state_and_local_tax_deductions,All,75000.0,100000.0,True,False,False,1962692.0 +2021,Table 2.1,BP,24,itemized_taxes_paid_deductions,All,75000.0,100000.0,False,False,False,14864227000.0 +2021,Table 2.1,BO,24,itemized_taxes_paid_deductions,All,75000.0,100000.0,True,False,False,1973087.0 +2021,Table 2.1,CX,25,charitable_contributions_deductions,All,100000.0,200000.0,False,False,False,32601479000.0 +2021,Table 2.1,CW,25,charitable_contributions_deductions,All,100000.0,200000.0,True,False,False,3779220.0 +2021,Table 2.1,BX,25,itemized_general_sales_tax_deduction,All,100000.0,200000.0,False,False,False,1957484000.0 +2021,Table 2.1,BW,25,itemized_general_sales_tax_deduction,All,100000.0,200000.0,True,False,False,895878.0 +2021,Table 2.1,CH,25,interest_paid_deductions,All,100000.0,200000.0,False,False,False,42043244000.0 +2021,Table 2.1,CG,25,interest_paid_deductions,All,100000.0,200000.0,True,False,False,3736970.0 +2021,Table 2.1,BJ,25,medical_expense_deductions_capped,All,100000.0,200000.0,False,False,False,18438486000.0 +2021,Table 2.1,BI,25,medical_expense_deductions_capped,All,100000.0,200000.0,True,False,False,930719.0 +2021,Table 2.1,BL,25,medical_expense_deductions_uncapped,All,100000.0,200000.0,False,False,False,27979072000.0 +2021,Table 2.1,BK,25,medical_expense_deductions_uncapped,All,100000.0,200000.0,True,False,False,930719.0 +2021,Table 2.1,CJ,25,mortgage_interest_deductions,All,100000.0,200000.0,False,False,False,41472589000.0 +2021,Table 2.1,CI,25,mortgage_interest_deductions,All,100000.0,200000.0,True,False,False,3707749.0 +2021,Table 2.1,BV,25,itemized_state_income_tax_deductions,All,100000.0,200000.0,False,False,False,26778437000.0 +2021,Table 2.1,BU,25,itemized_state_income_tax_deductions,All,100000.0,200000.0,True,False,False,3508177.0 +2021,Table 2.1,BT,25,idpitgst,All,100000.0,200000.0,False,False,False,28735921000.0 +2021,Table 2.1,BS,25,idpitgst,All,100000.0,200000.0,True,False,False,4404055.0 +2021,Table 2.1,BZ,25,itemized_real_estate_tax_deductions,All,100000.0,200000.0,False,False,False,24647914000.0 +2021,Table 2.1,BY,25,itemized_real_estate_tax_deductions,All,100000.0,200000.0,True,False,False,4074023.0 +2021,Table 2.1,BR,25,state_and_local_tax_deductions,All,100000.0,200000.0,False,False,False,54478221000.0 +2021,Table 2.1,BQ,25,state_and_local_tax_deductions,All,100000.0,200000.0,True,False,False,4478609.0 +2021,Table 2.1,BP,25,itemized_taxes_paid_deductions,All,100000.0,200000.0,False,False,False,39290771000.0 +2021,Table 2.1,BO,25,itemized_taxes_paid_deductions,All,100000.0,200000.0,True,False,False,4488763.0 +2021,Table 2.1,CX,26,charitable_contributions_deductions,All,200000.0,500000.0,False,False,False,36617094000.0 +2021,Table 2.1,CW,26,charitable_contributions_deductions,All,200000.0,500000.0,True,False,False,2772371.0 +2021,Table 2.1,BX,26,itemized_general_sales_tax_deduction,All,200000.0,500000.0,False,False,False,1859432000.0 +2021,Table 2.1,BW,26,itemized_general_sales_tax_deduction,All,200000.0,500000.0,True,False,False,617892.0 +2021,Table 2.1,CH,26,interest_paid_deductions,All,200000.0,500000.0,False,False,False,41669568000.0 +2021,Table 2.1,CG,26,interest_paid_deductions,All,200000.0,500000.0,True,False,False,2711961.0 +2021,Table 2.1,BJ,26,medical_expense_deductions_capped,All,200000.0,500000.0,False,False,False,9442173000.0 +2021,Table 2.1,BI,26,medical_expense_deductions_capped,All,200000.0,500000.0,True,False,False,274102.0 +2021,Table 2.1,BL,26,medical_expense_deductions_uncapped,All,200000.0,500000.0,False,False,False,15009041000.0 +2021,Table 2.1,BK,26,medical_expense_deductions_uncapped,All,200000.0,500000.0,True,False,False,274102.0 +2021,Table 2.1,CJ,26,mortgage_interest_deductions,All,200000.0,500000.0,False,False,False,40001465000.0 +2021,Table 2.1,CI,26,mortgage_interest_deductions,All,200000.0,500000.0,True,False,False,2664041.0 +2021,Table 2.1,BV,26,itemized_state_income_tax_deductions,All,200000.0,500000.0,False,False,False,44765649000.0 +2021,Table 2.1,BU,26,itemized_state_income_tax_deductions,All,200000.0,500000.0,True,False,False,2463551.0 +2021,Table 2.1,BT,26,idpitgst,All,200000.0,500000.0,False,False,False,46625081000.0 +2021,Table 2.1,BS,26,idpitgst,All,200000.0,500000.0,True,False,False,3081442.0 +2021,Table 2.1,BZ,26,itemized_real_estate_tax_deductions,All,200000.0,500000.0,False,False,False,26891746000.0 +2021,Table 2.1,BY,26,itemized_real_estate_tax_deductions,All,200000.0,500000.0,True,False,False,2894851.0 +2021,Table 2.1,BR,26,state_and_local_tax_deductions,All,200000.0,500000.0,False,False,False,74417699000.0 +2021,Table 2.1,BQ,26,state_and_local_tax_deductions,All,200000.0,500000.0,True,False,False,3125168.0 +2021,Table 2.1,BP,26,itemized_taxes_paid_deductions,All,200000.0,500000.0,False,False,False,30133315000.0 +2021,Table 2.1,BO,26,itemized_taxes_paid_deductions,All,200000.0,500000.0,True,False,False,3125969.0 +2021,Table 2.1,CX,27,charitable_contributions_deductions,All,500000.0,1000000.0,False,False,False,20410026000.0 +2021,Table 2.1,CW,27,charitable_contributions_deductions,All,500000.0,1000000.0,True,False,False,792642.0 +2021,Table 2.1,BX,27,itemized_general_sales_tax_deduction,All,500000.0,1000000.0,False,False,False,629114000.0 +2021,Table 2.1,BW,27,itemized_general_sales_tax_deduction,All,500000.0,1000000.0,True,False,False,184506.0 +2021,Table 2.1,CH,27,interest_paid_deductions,All,500000.0,1000000.0,False,False,False,14990473000.0 +2021,Table 2.1,CG,27,interest_paid_deductions,All,500000.0,1000000.0,True,False,False,761726.0 +2021,Table 2.1,BJ,27,medical_expense_deductions_capped,All,500000.0,1000000.0,False,False,False,1198745000.0 +2021,Table 2.1,BI,27,medical_expense_deductions_capped,All,500000.0,1000000.0,True,False,False,16117.0 +2021,Table 2.1,BL,27,medical_expense_deductions_uncapped,All,500000.0,1000000.0,False,False,False,1982643000.0 +2021,Table 2.1,BK,27,medical_expense_deductions_uncapped,All,500000.0,1000000.0,True,False,False,16117.0 +2021,Table 2.1,CJ,27,mortgage_interest_deductions,All,500000.0,1000000.0,False,False,False,13291073000.0 +2021,Table 2.1,CI,27,mortgage_interest_deductions,All,500000.0,1000000.0,True,False,False,728125.0 +2021,Table 2.1,BV,27,itemized_state_income_tax_deductions,All,500000.0,1000000.0,False,False,False,30215027000.0 +2021,Table 2.1,BU,27,itemized_state_income_tax_deductions,All,500000.0,1000000.0,True,False,False,677002.0 +2021,Table 2.1,BT,27,idpitgst,All,500000.0,1000000.0,False,False,False,30844141000.0 +2021,Table 2.1,BS,27,idpitgst,All,500000.0,1000000.0,True,False,False,861508.0 +2021,Table 2.1,BZ,27,itemized_real_estate_tax_deductions,All,500000.0,1000000.0,False,False,False,11588950000.0 +2021,Table 2.1,BY,27,itemized_real_estate_tax_deductions,All,500000.0,1000000.0,True,False,False,804340.0 +2021,Table 2.1,BR,27,state_and_local_tax_deductions,All,500000.0,1000000.0,False,False,False,42702238000.0 +2021,Table 2.1,BQ,27,state_and_local_tax_deductions,All,500000.0,1000000.0,True,False,False,871728.0 +2021,Table 2.1,BP,27,itemized_taxes_paid_deductions,All,500000.0,1000000.0,False,False,False,8552942000.0 +2021,Table 2.1,BO,27,itemized_taxes_paid_deductions,All,500000.0,1000000.0,True,False,False,871926.0 +2021,Table 2.1,CX,28,charitable_contributions_deductions,All,1000000.0,1500000.0,False,False,False,10362710000.0 +2021,Table 2.1,CW,28,charitable_contributions_deductions,All,1000000.0,1500000.0,True,False,False,220383.0 +2021,Table 2.1,BX,28,itemized_general_sales_tax_deduction,All,1000000.0,1500000.0,False,False,False,163249000.0 +2021,Table 2.1,BW,28,itemized_general_sales_tax_deduction,All,1000000.0,1500000.0,True,False,False,47719.0 +2021,Table 2.1,CH,28,interest_paid_deductions,All,1000000.0,1500000.0,False,False,False,4571747000.0 +2021,Table 2.1,CG,28,interest_paid_deductions,All,1000000.0,1500000.0,True,False,False,202243.0 +2021,Table 2.1,BJ,28,medical_expense_deductions_capped,All,1000000.0,1500000.0,False,False,False,263035000.0 +2021,Table 2.1,BI,28,medical_expense_deductions_capped,All,1000000.0,1500000.0,True,False,False,2294.0 +2021,Table 2.1,BL,28,medical_expense_deductions_uncapped,All,1000000.0,1500000.0,False,False,False,462885000.0 +2021,Table 2.1,BK,28,medical_expense_deductions_uncapped,All,1000000.0,1500000.0,True,False,False,2294.0 +2021,Table 2.1,CJ,28,mortgage_interest_deductions,All,1000000.0,1500000.0,False,False,False,3564332000.0 +2021,Table 2.1,CI,28,mortgage_interest_deductions,All,1000000.0,1500000.0,True,False,False,184775.0 +2021,Table 2.1,BV,28,itemized_state_income_tax_deductions,All,1000000.0,1500000.0,False,False,False,15658427000.0 +2021,Table 2.1,BU,28,itemized_state_income_tax_deductions,All,1000000.0,1500000.0,True,False,False,186856.0 +2021,Table 2.1,BT,28,idpitgst,All,1000000.0,1500000.0,False,False,False,15821676000.0 +2021,Table 2.1,BS,28,idpitgst,All,1000000.0,1500000.0,True,False,False,234575.0 +2021,Table 2.1,BZ,28,itemized_real_estate_tax_deductions,All,1000000.0,1500000.0,False,False,False,4093373000.0 +2021,Table 2.1,BY,28,itemized_real_estate_tax_deductions,All,1000000.0,1500000.0,True,False,False,216368.0 +2021,Table 2.1,BR,28,state_and_local_tax_deductions,All,1000000.0,1500000.0,False,False,False,20002533000.0 +2021,Table 2.1,BQ,28,state_and_local_tax_deductions,All,1000000.0,1500000.0,True,False,False,236470.0 +2021,Table 2.1,BP,28,itemized_taxes_paid_deductions,All,1000000.0,1500000.0,False,False,False,2335291000.0 +2021,Table 2.1,BO,28,itemized_taxes_paid_deductions,All,1000000.0,1500000.0,True,False,False,236528.0 +2021,Table 2.1,CX,29,charitable_contributions_deductions,All,1500000.0,2000000.0,False,False,False,6878704000.0 +2021,Table 2.1,CW,29,charitable_contributions_deductions,All,1500000.0,2000000.0,True,False,False,100341.0 +2021,Table 2.1,BX,29,itemized_general_sales_tax_deduction,All,1500000.0,2000000.0,False,False,False,80089000.0 +2021,Table 2.1,BW,29,itemized_general_sales_tax_deduction,All,1500000.0,2000000.0,True,False,False,21394.0 +2021,Table 2.1,CH,29,interest_paid_deductions,All,1500000.0,2000000.0,False,False,False,2376237000.0 +2021,Table 2.1,CG,29,interest_paid_deductions,All,1500000.0,2000000.0,True,False,False,89958.0 +2021,Table 2.1,BJ,29,medical_expense_deductions_capped,All,1500000.0,2000000.0,False,False,False,72898000.0 +2021,Table 2.1,BI,29,medical_expense_deductions_capped,All,1500000.0,2000000.0,True,False,False,567.0 +2021,Table 2.1,BL,29,medical_expense_deductions_uncapped,All,1500000.0,2000000.0,False,False,False,146817000.0 +2021,Table 2.1,BK,29,medical_expense_deductions_uncapped,All,1500000.0,2000000.0,True,False,False,567.0 +2021,Table 2.1,CJ,29,mortgage_interest_deductions,All,1500000.0,2000000.0,False,False,False,1547029000.0 +2021,Table 2.1,CI,29,mortgage_interest_deductions,All,1500000.0,2000000.0,True,False,False,78662.0 +2021,Table 2.1,BV,29,itemized_state_income_tax_deductions,All,1500000.0,2000000.0,False,False,False,10183883000.0 +2021,Table 2.1,BU,29,itemized_state_income_tax_deductions,All,1500000.0,2000000.0,True,False,False,85032.0 +2021,Table 2.1,BT,29,idpitgst,All,1500000.0,2000000.0,False,False,False,10263972000.0 +2021,Table 2.1,BS,29,idpitgst,All,1500000.0,2000000.0,True,False,False,106426.0 +2021,Table 2.1,BZ,29,itemized_real_estate_tax_deductions,All,1500000.0,2000000.0,False,False,False,2067297000.0 +2021,Table 2.1,BY,29,itemized_real_estate_tax_deductions,All,1500000.0,2000000.0,True,False,False,96934.0 +2021,Table 2.1,BR,29,state_and_local_tax_deductions,All,1500000.0,2000000.0,False,False,False,12367696000.0 +2021,Table 2.1,BQ,29,state_and_local_tax_deductions,All,1500000.0,2000000.0,True,False,False,107265.0 +2021,Table 2.1,BP,29,itemized_taxes_paid_deductions,All,1500000.0,2000000.0,False,False,False,1067749000.0 +2021,Table 2.1,BO,29,itemized_taxes_paid_deductions,All,1500000.0,2000000.0,True,False,False,107271.0 +2021,Table 2.1,CX,30,charitable_contributions_deductions,All,2000000.0,5000000.0,False,False,False,20644770000.0 +2021,Table 2.1,CW,30,charitable_contributions_deductions,All,2000000.0,5000000.0,True,False,False,162976.0 +2021,Table 2.1,BX,30,itemized_general_sales_tax_deduction,All,2000000.0,5000000.0,False,False,False,138735000.0 +2021,Table 2.1,BW,30,itemized_general_sales_tax_deduction,All,2000000.0,5000000.0,True,False,False,31424.0 +2021,Table 2.1,CH,30,interest_paid_deductions,All,2000000.0,5000000.0,False,False,False,4793545000.0 +2021,Table 2.1,CG,30,interest_paid_deductions,All,2000000.0,5000000.0,True,False,False,141920.0 +2021,Table 2.1,BJ,30,medical_expense_deductions_capped,All,2000000.0,5000000.0,False,False,False,114862000.0 +2021,Table 2.1,BI,30,medical_expense_deductions_capped,All,2000000.0,5000000.0,True,False,False,700.0 +2021,Table 2.1,BL,30,medical_expense_deductions_uncapped,All,2000000.0,5000000.0,False,False,False,264656000.0 +2021,Table 2.1,BK,30,medical_expense_deductions_uncapped,All,2000000.0,5000000.0,True,False,False,700.0 +2021,Table 2.1,CJ,30,mortgage_interest_deductions,All,2000000.0,5000000.0,False,False,False,2275375000.0 +2021,Table 2.1,CI,30,mortgage_interest_deductions,All,2000000.0,5000000.0,True,False,False,115934.0 +2021,Table 2.1,BV,30,itemized_state_income_tax_deductions,All,2000000.0,5000000.0,False,False,False,29112954000.0 +2021,Table 2.1,BU,30,itemized_state_income_tax_deductions,All,2000000.0,5000000.0,True,False,False,138820.0 +2021,Table 2.1,BT,30,idpitgst,All,2000000.0,5000000.0,False,False,False,29251689000.0 +2021,Table 2.1,BS,30,idpitgst,All,2000000.0,5000000.0,True,False,False,170243.0 +2021,Table 2.1,BZ,30,itemized_real_estate_tax_deductions,All,2000000.0,5000000.0,False,False,False,4228788000.0 +2021,Table 2.1,BY,30,itemized_real_estate_tax_deductions,All,2000000.0,5000000.0,True,False,False,153461.0 +2021,Table 2.1,BR,30,state_and_local_tax_deductions,All,2000000.0,5000000.0,False,False,False,33547583000.0 +2021,Table 2.1,BQ,30,state_and_local_tax_deductions,All,2000000.0,5000000.0,True,False,False,171918.0 +2021,Table 2.1,BP,30,itemized_taxes_paid_deductions,All,2000000.0,5000000.0,False,False,False,1755888000.0 +2021,Table 2.1,BO,30,itemized_taxes_paid_deductions,All,2000000.0,5000000.0,True,False,False,171946.0 +2021,Table 2.1,CX,31,charitable_contributions_deductions,All,5000000.0,10000000.0,False,False,False,14896310000.0 +2021,Table 2.1,CW,31,charitable_contributions_deductions,All,5000000.0,10000000.0,True,False,False,49077.0 +2021,Table 2.1,BX,31,itemized_general_sales_tax_deduction,All,5000000.0,10000000.0,False,False,False,55981000.0 +2021,Table 2.1,BW,31,itemized_general_sales_tax_deduction,All,5000000.0,10000000.0,True,False,False,8332.0 +2021,Table 2.1,CH,31,interest_paid_deductions,All,5000000.0,10000000.0,False,False,False,2504179000.0 +2021,Table 2.1,CG,31,interest_paid_deductions,All,5000000.0,10000000.0,True,False,False,42161.0 +2021,Table 2.1,BJ,31,medical_expense_deductions_capped,All,5000000.0,10000000.0,False,False,False,8927000.0 +2021,Table 2.1,BI,31,medical_expense_deductions_capped,All,5000000.0,10000000.0,True,False,False,27.0 +2021,Table 2.1,BL,31,medical_expense_deductions_uncapped,All,5000000.0,10000000.0,False,False,False,23606000.0 +2021,Table 2.1,BK,31,medical_expense_deductions_uncapped,All,5000000.0,10000000.0,True,False,False,27.0 +2021,Table 2.1,CJ,31,mortgage_interest_deductions,All,5000000.0,10000000.0,False,False,False,623376000.0 +2021,Table 2.1,CI,31,mortgage_interest_deductions,All,5000000.0,10000000.0,True,False,False,31004.0 +2021,Table 2.1,BV,31,itemized_state_income_tax_deductions,All,5000000.0,10000000.0,False,False,False,18561732000.0 +2021,Table 2.1,BU,31,itemized_state_income_tax_deductions,All,5000000.0,10000000.0,True,False,False,42074.0 +2021,Table 2.1,BT,31,idpitgst,All,5000000.0,10000000.0,False,False,False,18617713000.0 +2021,Table 2.1,BS,31,idpitgst,All,5000000.0,10000000.0,True,False,False,50405.0 +2021,Table 2.1,BZ,31,itemized_real_estate_tax_deductions,All,5000000.0,10000000.0,False,False,False,1781149000.0 +2021,Table 2.1,BY,31,itemized_real_estate_tax_deductions,All,5000000.0,10000000.0,True,False,False,45063.0 +2021,Table 2.1,BR,31,state_and_local_tax_deductions,All,5000000.0,10000000.0,False,False,False,20421310000.0 +2021,Table 2.1,BQ,31,state_and_local_tax_deductions,All,5000000.0,10000000.0,True,False,False,50923.0 +2021,Table 2.1,BP,31,itemized_taxes_paid_deductions,All,5000000.0,10000000.0,False,False,False,552034000.0 +2021,Table 2.1,BO,31,itemized_taxes_paid_deductions,All,5000000.0,10000000.0,True,False,False,50927.0 +2021,Table 2.1,CX,32,charitable_contributions_deductions,All,10000000.0,inf,False,False,False,97798882000.0 +2021,Table 2.1,CW,32,charitable_contributions_deductions,All,10000000.0,inf,True,False,False,38473.0 +2021,Table 2.1,BX,32,itemized_general_sales_tax_deduction,All,10000000.0,inf,False,False,False,255548000.0 +2021,Table 2.1,BW,32,itemized_general_sales_tax_deduction,All,10000000.0,inf,True,False,False,5492.0 +2021,Table 2.1,CH,32,interest_paid_deductions,All,10000000.0,inf,False,False,False,9790742000.0 +2021,Table 2.1,CG,32,interest_paid_deductions,All,10000000.0,inf,True,False,False,33287.0 +2021,Table 2.1,BJ,32,medical_expense_deductions_capped,All,10000000.0,inf,False,False,False,0.0 +2021,Table 2.1,BI,32,medical_expense_deductions_capped,All,10000000.0,inf,True,False,False,0.0 +2021,Table 2.1,BL,32,medical_expense_deductions_uncapped,All,10000000.0,inf,False,False,False,0.0 +2021,Table 2.1,BK,32,medical_expense_deductions_uncapped,All,10000000.0,inf,True,False,False,0.0 +2021,Table 2.1,CJ,32,mortgage_interest_deductions,All,10000000.0,inf,False,False,False,414211000.0 +2021,Table 2.1,CI,32,mortgage_interest_deductions,All,10000000.0,inf,True,False,False,20442.0 +2021,Table 2.1,BV,32,itemized_state_income_tax_deductions,All,10000000.0,inf,False,False,False,62556646000.0 +2021,Table 2.1,BU,32,itemized_state_income_tax_deductions,All,10000000.0,inf,True,False,False,33638.0 +2021,Table 2.1,BT,32,idpitgst,All,10000000.0,inf,False,False,False,62812195000.0 +2021,Table 2.1,BS,32,idpitgst,All,10000000.0,inf,True,False,False,39130.0 +2021,Table 2.1,BZ,32,itemized_real_estate_tax_deductions,All,10000000.0,inf,False,False,False,2495637000.0 +2021,Table 2.1,BY,32,itemized_real_estate_tax_deductions,All,10000000.0,inf,True,False,False,34347.0 +2021,Table 2.1,BR,32,state_and_local_tax_deductions,All,10000000.0,inf,False,False,False,65319533000.0 +2021,Table 2.1,BQ,32,state_and_local_tax_deductions,All,10000000.0,inf,True,False,False,39505.0 +2021,Table 2.1,BP,32,itemized_taxes_paid_deductions,All,10000000.0,inf,False,False,False,682998000.0 +2021,Table 2.1,BO,32,itemized_taxes_paid_deductions,All,10000000.0,inf,True,False,False,39516.0 +2022,Table 1.1,D,10,adjusted_gross_income,All,-inf,inf,False,False,True,14833956956000.0 +2022,Table 1.1,B,10,count,All,-inf,inf,True,False,True,161336659.0 +2022,Table 1.1,D,11,adjusted_gross_income,All,-inf,0.0,False,False,False,-164160281000.0 +2022,Table 1.1,B,11,count,All,-inf,0.0,True,False,False,3254225.0 +2022,Table 1.1,D,12,adjusted_gross_income,All,1.0,5000.0,False,False,False,19538869000.0 +2022,Table 1.1,B,12,count,All,1.0,5000.0,True,False,False,8195783.0 +2022,Table 1.1,D,13,adjusted_gross_income,All,5000.0,10000.0,False,False,False,66070756000.0 +2022,Table 1.1,B,13,count,All,5000.0,10000.0,True,False,False,8747727.0 +2022,Table 1.1,D,14,adjusted_gross_income,All,10000.0,15000.0,False,False,False,120502825000.0 +2022,Table 1.1,B,14,count,All,10000.0,15000.0,True,False,False,9642322.0 +2022,Table 1.1,D,15,adjusted_gross_income,All,15000.0,20000.0,False,False,False,157738693000.0 +2022,Table 1.1,B,15,count,All,15000.0,20000.0,True,False,False,9058382.0 +2022,Table 1.1,D,16,adjusted_gross_income,All,20000.0,25000.0,False,False,False,180311082000.0 +2022,Table 1.1,B,16,count,All,20000.0,25000.0,True,False,False,8035277.0 +2022,Table 1.1,D,17,adjusted_gross_income,All,25000.0,30000.0,False,False,False,219958083000.0 +2022,Table 1.1,B,17,count,All,25000.0,30000.0,True,False,False,8005289.0 +2022,Table 1.1,D,18,adjusted_gross_income,All,30000.0,40000.0,False,False,False,550490150000.0 +2022,Table 1.1,B,18,count,All,30000.0,40000.0,True,False,False,15771561.0 +2022,Table 1.1,D,19,adjusted_gross_income,All,40000.0,50000.0,False,False,False,593955496000.0 +2022,Table 1.1,B,19,count,All,40000.0,50000.0,True,False,False,13255063.0 +2022,Table 1.1,D,20,adjusted_gross_income,All,50000.0,75000.0,False,False,False,1466486055000.0 +2022,Table 1.1,B,20,count,All,50000.0,75000.0,True,False,False,23805797.0 +2022,Table 1.1,D,21,adjusted_gross_income,All,75000.0,100000.0,False,False,False,1315619561000.0 +2022,Table 1.1,B,21,count,All,75000.0,100000.0,True,False,False,15181035.0 +2022,Table 1.1,D,22,adjusted_gross_income,All,100000.0,200000.0,False,False,False,3567047571000.0 +2022,Table 1.1,B,22,count,All,100000.0,200000.0,True,False,False,25887136.0 +2022,Table 1.1,D,23,adjusted_gross_income,All,200000.0,500000.0,False,False,False,2891064828000.0 +2022,Table 1.1,B,23,count,All,200000.0,500000.0,True,False,False,10017626.0 +2022,Table 1.1,D,24,adjusted_gross_income,All,500000.0,1000000.0,False,False,False,1124299469000.0 +2022,Table 1.1,B,24,count,All,500000.0,1000000.0,True,False,False,1674608.0 +2022,Table 1.1,D,25,adjusted_gross_income,All,1000000.0,1500000.0,False,False,False,435177502000.0 +2022,Table 1.1,B,25,count,All,1000000.0,1500000.0,True,False,False,360882.0 +2022,Table 1.1,D,26,adjusted_gross_income,All,1500000.0,2000000.0,False,False,False,254476785000.0 +2022,Table 1.1,B,26,count,All,1500000.0,2000000.0,True,False,False,148222.0 +2022,Table 1.1,D,27,adjusted_gross_income,All,2000000.0,5000000.0,False,False,False,621044404000.0 +2022,Table 1.1,B,27,count,All,2000000.0,5000000.0,True,False,False,208129.0 +2022,Table 1.1,D,28,adjusted_gross_income,All,5000000.0,10000000.0,False,False,False,362815724000.0 +2022,Table 1.1,B,28,count,All,5000000.0,10000000.0,True,False,False,52968.0 +2022,Table 1.1,D,29,adjusted_gross_income,All,10000000.0,inf,False,False,False,1051519384000.0 +2022,Table 1.1,B,29,count,All,10000000.0,inf,True,False,False,34630.0 +2022,Table 1.2,AM,9,adjusted_gross_income,Head of Household,-inf,inf,False,False,False,1097074146000.0 +2022,Table 1.2,O,9,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,-inf,inf,False,False,False,9329885992000.0 +2022,Table 1.2,AA,9,adjusted_gross_income,Married Filing Separately,-inf,inf,False,False,False,365129451000.0 +2022,Table 1.2,AY,9,adjusted_gross_income,Single,-inf,inf,False,False,False,4041867367000.0 +2022,Table 1.2,AL,9,count,Head of Household,-inf,inf,True,False,False,21268139.0 +2022,Table 1.2,N,9,count,Married Filing Jointly/Surviving Spouse,-inf,inf,True,False,False,54886428.0 +2022,Table 1.2,Z,9,count,Married Filing Separately,-inf,inf,True,False,False,3992729.0 +2022,Table 1.2,AX,9,count,Single,-inf,inf,True,False,False,81189363.0 +2022,Table 1.2,E,9,itemized_deductions,All,-inf,inf,False,False,True,668001764000.0 +2022,Table 1.2,D,9,itemized_deductions,All,-inf,inf,True,False,True,15290841.0 +2022,Table 1.2,G,9,standard_deduction,All,-inf,inf,False,False,True,2609228480000.0 +2022,Table 1.2,F,9,standard_deduction,All,-inf,inf,True,False,True,142779280.0 +2022,Table 1.2,K,9,income_tax_after_credits,All,-inf,inf,False,False,True,2098923017000.0 +2022,Table 1.2,J,9,income_tax_after_credits,All,-inf,inf,True,False,True,110611880.0 +2022,Table 1.2,I,9,taxable_income,All,-inf,inf,False,False,True,11714186280000.0 +2022,Table 1.2,H,9,taxable_income,All,-inf,inf,True,False,True,129349042.0 +2022,Table 1.2,M,9,tottax,All,-inf,inf,False,False,True,2139922072000.0 +2022,Table 1.2,L,9,tottax,All,-inf,inf,True,False,True,110640128.0 +2022,Table 1.2,AM,10,adjusted_gross_income,Head of Household,-inf,0.0,False,False,False,-4930197000.0 +2022,Table 1.2,O,10,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,-inf,0.0,False,False,False,-97857692000.0 +2022,Table 1.2,AA,10,adjusted_gross_income,Married Filing Separately,-inf,0.0,False,False,False,-9626067000.0 +2022,Table 1.2,AY,10,adjusted_gross_income,Single,-inf,0.0,False,False,False,-51746325000.0 +2022,Table 1.2,AL,10,count,Head of Household,-inf,0.0,True,False,False,113913.0 +2022,Table 1.2,N,10,count,Married Filing Jointly/Surviving Spouse,-inf,0.0,True,False,False,660606.0 +2022,Table 1.2,Z,10,count,Married Filing Separately,-inf,0.0,True,False,False,113465.0 +2022,Table 1.2,AX,10,count,Single,-inf,0.0,True,False,False,2366241.0 +2022,Table 1.2,E,10,itemized_deductions,All,-inf,0.0,False,False,False,0.0 +2022,Table 1.2,D,10,itemized_deductions,All,-inf,0.0,True,False,False,0.0 +2022,Table 1.2,G,10,standard_deduction,All,-inf,0.0,False,False,False,0.0 +2022,Table 1.2,F,10,standard_deduction,All,-inf,0.0,True,False,False,0.0 +2022,Table 1.2,K,10,income_tax_after_credits,All,-inf,0.0,False,False,False,128418000.0 +2022,Table 1.2,J,10,income_tax_after_credits,All,-inf,0.0,True,False,False,3843.0 +2022,Table 1.2,I,10,taxable_income,All,-inf,0.0,False,False,False,0.0 +2022,Table 1.2,H,10,taxable_income,All,-inf,0.0,True,False,False,0.0 +2022,Table 1.2,M,10,tottax,All,-inf,0.0,False,False,False,128418000.0 +2022,Table 1.2,L,10,tottax,All,-inf,0.0,True,False,False,3843.0 +2022,Table 1.2,AM,11,adjusted_gross_income,Head of Household,1.0,5000.0,False,False,False,1228387000.0 +2022,Table 1.2,O,11,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,1.0,5000.0,False,False,False,1635886000.0 +2022,Table 1.2,AA,11,adjusted_gross_income,Married Filing Separately,1.0,5000.0,False,False,False,266908000.0 +2022,Table 1.2,AY,11,adjusted_gross_income,Single,1.0,5000.0,False,False,False,16407688000.0 +2022,Table 1.2,AL,11,count,Head of Household,1.0,5000.0,True,False,False,475615.0 +2022,Table 1.2,N,11,count,Married Filing Jointly/Surviving Spouse,1.0,5000.0,True,False,False,753224.0 +2022,Table 1.2,Z,11,count,Married Filing Separately,1.0,5000.0,True,False,False,146282.0 +2022,Table 1.2,AX,11,count,Single,1.0,5000.0,True,False,False,6820661.0 +2022,Table 1.2,E,11,itemized_deductions,All,1.0,5000.0,False,False,False,2212245000.0 +2022,Table 1.2,D,11,itemized_deductions,All,1.0,5000.0,True,False,False,106861.0 +2022,Table 1.2,G,11,standard_deduction,All,1.0,5000.0,False,False,False,97479411000.0 +2022,Table 1.2,F,11,standard_deduction,All,1.0,5000.0,True,False,False,8088921.0 +2022,Table 1.2,K,11,income_tax_after_credits,All,1.0,5000.0,False,False,False,18734000.0 +2022,Table 1.2,J,11,income_tax_after_credits,All,1.0,5000.0,True,False,False,105475.0 +2022,Table 1.2,I,11,taxable_income,All,1.0,5000.0,False,False,False,213811000.0 +2022,Table 1.2,H,11,taxable_income,All,1.0,5000.0,True,False,False,181081.0 +2022,Table 1.2,M,11,tottax,All,1.0,5000.0,False,False,False,18734000.0 +2022,Table 1.2,L,11,tottax,All,1.0,5000.0,True,False,False,105475.0 +2022,Table 1.2,AM,12,adjusted_gross_income,Head of Household,5000.0,10000.0,False,False,False,6293814000.0 +2022,Table 1.2,O,12,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,5000.0,10000.0,False,False,False,5663247000.0 +2022,Table 1.2,AA,12,adjusted_gross_income,Married Filing Separately,5000.0,10000.0,False,False,False,1133437000.0 +2022,Table 1.2,AY,12,adjusted_gross_income,Single,5000.0,10000.0,False,False,False,52980258000.0 +2022,Table 1.2,AL,12,count,Head of Household,5000.0,10000.0,True,False,False,811217.0 +2022,Table 1.2,N,12,count,Married Filing Jointly/Surviving Spouse,5000.0,10000.0,True,False,False,744778.0 +2022,Table 1.2,Z,12,count,Married Filing Separately,5000.0,10000.0,True,False,False,149041.0 +2022,Table 1.2,AX,12,count,Single,5000.0,10000.0,True,False,False,7042691.0 +2022,Table 1.2,E,12,itemized_deductions,All,5000.0,10000.0,False,False,False,11186695000.0 +2022,Table 1.2,D,12,itemized_deductions,All,5000.0,10000.0,True,False,False,104685.0 +2022,Table 1.2,G,12,standard_deduction,All,5000.0,10000.0,False,False,False,117632709000.0 +2022,Table 1.2,F,12,standard_deduction,All,5000.0,10000.0,True,False,False,8642057.0 +2022,Table 1.2,K,12,income_tax_after_credits,All,5000.0,10000.0,False,False,False,41423000.0 +2022,Table 1.2,J,12,income_tax_after_credits,All,5000.0,10000.0,True,False,False,119109.0 +2022,Table 1.2,I,12,taxable_income,All,5000.0,10000.0,False,False,False,509165000.0 +2022,Table 1.2,H,12,taxable_income,All,5000.0,10000.0,True,False,False,171520.0 +2022,Table 1.2,M,12,tottax,All,5000.0,10000.0,False,False,False,41423000.0 +2022,Table 1.2,L,12,tottax,All,5000.0,10000.0,True,False,False,119109.0 +2022,Table 1.2,AM,13,adjusted_gross_income,Head of Household,10000.0,15000.0,False,False,False,21033971000.0 +2022,Table 1.2,O,13,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,10000.0,15000.0,False,False,False,12018239000.0 +2022,Table 1.2,AA,13,adjusted_gross_income,Married Filing Separately,10000.0,15000.0,False,False,False,2034607000.0 +2022,Table 1.2,AY,13,adjusted_gross_income,Single,10000.0,15000.0,False,False,False,85416008000.0 +2022,Table 1.2,AL,13,count,Head of Household,10000.0,15000.0,True,False,False,1687098.0 +2022,Table 1.2,N,13,count,Married Filing Jointly/Surviving Spouse,10000.0,15000.0,True,False,False,960577.0 +2022,Table 1.2,Z,13,count,Married Filing Separately,10000.0,15000.0,True,False,False,160742.0 +2022,Table 1.2,AX,13,count,Single,10000.0,15000.0,True,False,False,6833904.0 +2022,Table 1.2,E,13,itemized_deductions,All,10000.0,15000.0,False,False,False,2765492000.0 +2022,Table 1.2,D,13,itemized_deductions,All,10000.0,15000.0,True,False,False,117421.0 +2022,Table 1.2,G,13,standard_deduction,All,10000.0,15000.0,False,False,False,147950673000.0 +2022,Table 1.2,F,13,standard_deduction,All,10000.0,15000.0,True,False,False,9524899.0 +2022,Table 1.2,K,13,income_tax_after_credits,All,10000.0,15000.0,False,False,False,188178000.0 +2022,Table 1.2,J,13,income_tax_after_credits,All,10000.0,15000.0,True,False,False,1370355.0 +2022,Table 1.2,I,13,taxable_income,All,10000.0,15000.0,False,False,False,2938421000.0 +2022,Table 1.2,H,13,taxable_income,All,10000.0,15000.0,True,False,False,2568638.0 +2022,Table 1.2,M,13,tottax,All,10000.0,15000.0,False,False,False,188178000.0 +2022,Table 1.2,L,13,tottax,All,10000.0,15000.0,True,False,False,1370355.0 +2022,Table 1.2,AM,14,adjusted_gross_income,Head of Household,15000.0,20000.0,False,False,False,35834809000.0 +2022,Table 1.2,O,14,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,15000.0,20000.0,False,False,False,18659337000.0 +2022,Table 1.2,AA,14,adjusted_gross_income,Married Filing Separately,15000.0,20000.0,False,False,False,2564977000.0 +2022,Table 1.2,AY,14,adjusted_gross_income,Single,15000.0,20000.0,False,False,False,100679569000.0 +2022,Table 1.2,AL,14,count,Head of Household,15000.0,20000.0,True,False,False,2064678.0 +2022,Table 1.2,N,14,count,Married Filing Jointly/Surviving Spouse,15000.0,20000.0,True,False,False,1067299.0 +2022,Table 1.2,Z,14,count,Married Filing Separately,15000.0,20000.0,True,False,False,146705.0 +2022,Table 1.2,AX,14,count,Single,15000.0,20000.0,True,False,False,5779700.0 +2022,Table 1.2,E,14,itemized_deductions,All,15000.0,20000.0,False,False,False,3989446000.0 +2022,Table 1.2,D,14,itemized_deductions,All,15000.0,20000.0,True,False,False,157566.0 +2022,Table 1.2,G,14,standard_deduction,All,15000.0,20000.0,False,False,False,144554689000.0 +2022,Table 1.2,F,14,standard_deduction,All,15000.0,20000.0,True,False,False,8898827.0 +2022,Table 1.2,K,14,income_tax_after_credits,All,15000.0,20000.0,False,False,False,1735910000.0 +2022,Table 1.2,J,14,income_tax_after_credits,All,15000.0,20000.0,True,False,False,4429442.0 +2022,Table 1.2,I,14,taxable_income,All,15000.0,20000.0,False,False,False,24431244000.0 +2022,Table 1.2,H,14,taxable_income,All,15000.0,20000.0,True,False,False,6078901.0 +2022,Table 1.2,M,14,tottax,All,15000.0,20000.0,False,False,False,1736237000.0 +2022,Table 1.2,L,14,tottax,All,15000.0,20000.0,True,False,False,4429445.0 +2022,Table 1.2,AM,15,adjusted_gross_income,Head of Household,20000.0,25000.0,False,False,False,37385369000.0 +2022,Table 1.2,O,15,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,20000.0,25000.0,False,False,False,25700695000.0 +2022,Table 1.2,AA,15,adjusted_gross_income,Married Filing Separately,20000.0,25000.0,False,False,False,4152375000.0 +2022,Table 1.2,AY,15,adjusted_gross_income,Single,20000.0,25000.0,False,False,False,113072643000.0 +2022,Table 1.2,AL,15,count,Head of Household,20000.0,25000.0,True,False,False,1669981.0 +2022,Table 1.2,N,15,count,Married Filing Jointly/Surviving Spouse,20000.0,25000.0,True,False,False,1141188.0 +2022,Table 1.2,Z,15,count,Married Filing Separately,20000.0,25000.0,True,False,False,183385.0 +2022,Table 1.2,AX,15,count,Single,20000.0,25000.0,True,False,False,5040723.0 +2022,Table 1.2,E,15,itemized_deductions,All,20000.0,25000.0,False,False,False,5050663000.0 +2022,Table 1.2,D,15,itemized_deductions,All,20000.0,25000.0,True,False,False,185594.0 +2022,Table 1.2,G,15,standard_deduction,All,20000.0,25000.0,False,False,False,128777753000.0 +2022,Table 1.2,F,15,standard_deduction,All,20000.0,25000.0,True,False,False,7847660.0 +2022,Table 1.2,K,15,income_tax_after_credits,All,20000.0,25000.0,False,False,False,3804019000.0 +2022,Table 1.2,J,15,income_tax_after_credits,All,20000.0,25000.0,True,False,False,4393888.0 +2022,Table 1.2,I,15,taxable_income,All,20000.0,25000.0,False,False,False,51892301000.0 +2022,Table 1.2,H,15,taxable_income,All,20000.0,25000.0,True,False,False,6813732.0 +2022,Table 1.2,M,15,tottax,All,20000.0,25000.0,False,False,False,3804019000.0 +2022,Table 1.2,L,15,tottax,All,20000.0,25000.0,True,False,False,4393888.0 +2022,Table 1.2,AM,16,adjusted_gross_income,Head of Household,25000.0,30000.0,False,False,False,46606455000.0 +2022,Table 1.2,O,16,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,25000.0,30000.0,False,False,False,35469300000.0 +2022,Table 1.2,AA,16,adjusted_gross_income,Married Filing Separately,25000.0,30000.0,False,False,False,5936278000.0 +2022,Table 1.2,AY,16,adjusted_gross_income,Single,25000.0,30000.0,False,False,False,131946049000.0 +2022,Table 1.2,AL,16,count,Head of Household,25000.0,30000.0,True,False,False,1691489.0 +2022,Table 1.2,N,16,count,Married Filing Jointly/Surviving Spouse,25000.0,30000.0,True,False,False,1293290.0 +2022,Table 1.2,Z,16,count,Married Filing Separately,25000.0,30000.0,True,False,False,216440.0 +2022,Table 1.2,AX,16,count,Single,25000.0,30000.0,True,False,False,4804071.0 +2022,Table 1.2,E,16,itemized_deductions,All,25000.0,30000.0,False,False,False,5703689000.0 +2022,Table 1.2,D,16,itemized_deductions,All,25000.0,30000.0,True,False,False,204094.0 +2022,Table 1.2,G,16,standard_deduction,All,25000.0,30000.0,False,False,False,130110271000.0 +2022,Table 1.2,F,16,standard_deduction,All,25000.0,30000.0,True,False,False,7799177.0 +2022,Table 1.2,K,16,income_tax_after_credits,All,25000.0,30000.0,False,False,False,6376403000.0 +2022,Table 1.2,J,16,income_tax_after_credits,All,25000.0,30000.0,True,False,False,4801988.0 +2022,Table 1.2,I,16,taxable_income,All,25000.0,30000.0,False,False,False,85131728000.0 +2022,Table 1.2,H,16,taxable_income,All,25000.0,30000.0,True,False,False,7425764.0 +2022,Table 1.2,M,16,tottax,All,25000.0,30000.0,False,False,False,6376403000.0 +2022,Table 1.2,L,16,tottax,All,25000.0,30000.0,True,False,False,4801988.0 +2022,Table 1.2,AM,17,adjusted_gross_income,Head of Household,30000.0,40000.0,False,False,False,118348139000.0 +2022,Table 1.2,O,17,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,30000.0,40000.0,False,False,False,94270098000.0 +2022,Table 1.2,AA,17,adjusted_gross_income,Married Filing Separately,30000.0,40000.0,False,False,False,15648673000.0 +2022,Table 1.2,AY,17,adjusted_gross_income,Single,30000.0,40000.0,False,False,False,322223239000.0 +2022,Table 1.2,AL,17,count,Head of Household,30000.0,40000.0,True,False,False,3400025.0 +2022,Table 1.2,N,17,count,Married Filing Jointly/Surviving Spouse,30000.0,40000.0,True,False,False,2689524.0 +2022,Table 1.2,Z,17,count,Married Filing Separately,30000.0,40000.0,True,False,False,449169.0 +2022,Table 1.2,AX,17,count,Single,30000.0,40000.0,True,False,False,9232844.0 +2022,Table 1.2,E,17,itemized_deductions,All,30000.0,40000.0,False,False,False,14494331000.0 +2022,Table 1.2,D,17,itemized_deductions,All,30000.0,40000.0,True,False,False,504475.0 +2022,Table 1.2,G,17,standard_deduction,All,30000.0,40000.0,False,False,False,257003124000.0 +2022,Table 1.2,F,17,standard_deduction,All,30000.0,40000.0,True,False,False,15266077.0 +2022,Table 1.2,K,17,income_tax_after_credits,All,30000.0,40000.0,False,False,False,21322189000.0 +2022,Table 1.2,J,17,income_tax_after_credits,All,30000.0,40000.0,True,False,False,10791931.0 +2022,Table 1.2,I,17,taxable_income,All,30000.0,40000.0,False,False,False,278222619000.0 +2022,Table 1.2,H,17,taxable_income,All,30000.0,40000.0,True,False,False,15678991.0 +2022,Table 1.2,M,17,tottax,All,30000.0,40000.0,False,False,False,21322304000.0 +2022,Table 1.2,L,17,tottax,All,30000.0,40000.0,True,False,False,10791934.0 +2022,Table 1.2,AM,18,adjusted_gross_income,Head of Household,40000.0,50000.0,False,False,False,109641166000.0 +2022,Table 1.2,O,18,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,40000.0,50000.0,False,False,False,122225672000.0 +2022,Table 1.2,AA,18,adjusted_gross_income,Married Filing Separately,40000.0,50000.0,False,False,False,23642616000.0 +2022,Table 1.2,AY,18,adjusted_gross_income,Single,40000.0,50000.0,False,False,False,338446043000.0 +2022,Table 1.2,AL,18,count,Head of Household,40000.0,50000.0,True,False,False,2452228.0 +2022,Table 1.2,N,18,count,Married Filing Jointly/Surviving Spouse,40000.0,50000.0,True,False,False,2710563.0 +2022,Table 1.2,Z,18,count,Married Filing Separately,40000.0,50000.0,True,False,False,527396.0 +2022,Table 1.2,AX,18,count,Single,40000.0,50000.0,True,False,False,7564876.0 +2022,Table 1.2,E,18,itemized_deductions,All,40000.0,50000.0,False,False,False,15604243000.0 +2022,Table 1.2,D,18,itemized_deductions,All,40000.0,50000.0,True,False,False,565877.0 +2022,Table 1.2,G,18,standard_deduction,All,40000.0,50000.0,False,False,False,217167013000.0 +2022,Table 1.2,F,18,standard_deduction,All,40000.0,50000.0,True,False,False,12687168.0 +2022,Table 1.2,K,18,income_tax_after_credits,All,40000.0,50000.0,False,False,False,30308339000.0 +2022,Table 1.2,J,18,income_tax_after_credits,All,40000.0,50000.0,True,False,False,10680343.0 +2022,Table 1.2,I,18,taxable_income,All,40000.0,50000.0,False,False,False,358916800000.0 +2022,Table 1.2,H,18,taxable_income,All,40000.0,50000.0,True,False,False,13208042.0 +2022,Table 1.2,M,18,tottax,All,40000.0,50000.0,False,False,False,30309343000.0 +2022,Table 1.2,L,18,tottax,All,40000.0,50000.0,True,False,False,10680343.0 +2022,Table 1.2,AM,19,adjusted_gross_income,Head of Household,50000.0,75000.0,False,False,False,212385442000.0 +2022,Table 1.2,O,19,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,50000.0,75000.0,False,False,False,446675368000.0 +2022,Table 1.2,AA,19,adjusted_gross_income,Married Filing Separately,50000.0,75000.0,False,False,False,53764184000.0 +2022,Table 1.2,AY,19,adjusted_gross_income,Single,50000.0,75000.0,False,False,False,753661060000.0 +2022,Table 1.2,AL,19,count,Head of Household,50000.0,75000.0,True,False,False,3479671.0 +2022,Table 1.2,N,19,count,Married Filing Jointly/Surviving Spouse,50000.0,75000.0,True,False,False,7112905.0 +2022,Table 1.2,Z,19,count,Married Filing Separately,50000.0,75000.0,True,False,False,881160.0 +2022,Table 1.2,AX,19,count,Single,50000.0,75000.0,True,False,False,12332062.0 +2022,Table 1.2,E,19,itemized_deductions,All,50000.0,75000.0,False,False,False,51651608000.0 +2022,Table 1.2,D,19,itemized_deductions,All,50000.0,75000.0,True,False,False,1891131.0 +2022,Table 1.2,G,19,standard_deduction,All,50000.0,75000.0,False,False,False,400850408000.0 +2022,Table 1.2,F,19,standard_deduction,All,50000.0,75000.0,True,False,False,21913662.0 +2022,Table 1.2,K,19,income_tax_after_credits,All,50000.0,75000.0,False,False,False,100103566000.0 +2022,Table 1.2,J,19,income_tax_after_credits,All,50000.0,75000.0,True,False,False,21378035.0 +2022,Table 1.2,I,19,taxable_income,All,50000.0,75000.0,False,False,False,1007053999000.0 +2022,Table 1.2,H,19,taxable_income,All,50000.0,75000.0,True,False,False,23729171.0 +2022,Table 1.2,M,19,tottax,All,50000.0,75000.0,False,False,False,100103598000.0 +2022,Table 1.2,L,19,tottax,All,50000.0,75000.0,True,False,False,21378339.0 +2022,Table 1.2,AM,20,adjusted_gross_income,Head of Household,75000.0,100000.0,False,False,False,134708572000.0 +2022,Table 1.2,O,20,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,75000.0,100000.0,False,False,False,641738206000.0 +2022,Table 1.2,AA,20,adjusted_gross_income,Married Filing Separately,75000.0,100000.0,False,False,False,35334473000.0 +2022,Table 1.2,AY,20,adjusted_gross_income,Single,75000.0,100000.0,False,False,False,503838311000.0 +2022,Table 1.2,AL,20,count,Head of Household,75000.0,100000.0,True,False,False,1572622.0 +2022,Table 1.2,N,20,count,Married Filing Jointly/Surviving Spouse,75000.0,100000.0,True,False,False,7325004.0 +2022,Table 1.2,Z,20,count,Married Filing Separately,75000.0,100000.0,True,False,False,408716.0 +2022,Table 1.2,AX,20,count,Single,75000.0,100000.0,True,False,False,5874693.0 +2022,Table 1.2,E,20,itemized_deductions,All,75000.0,100000.0,False,False,False,53445883000.0 +2022,Table 1.2,D,20,itemized_deductions,All,75000.0,100000.0,True,False,False,1915805.0 +2022,Table 1.2,G,20,standard_deduction,All,75000.0,100000.0,False,False,False,276421006000.0 +2022,Table 1.2,F,20,standard_deduction,All,75000.0,100000.0,True,False,False,13265228.0 +2022,Table 1.2,K,20,income_tax_after_credits,All,75000.0,100000.0,False,False,False,113079178000.0 +2022,Table 1.2,J,20,income_tax_after_credits,All,75000.0,100000.0,True,False,False,14549341.0 +2022,Table 1.2,I,20,taxable_income,All,75000.0,100000.0,False,False,False,979156790000.0 +2022,Table 1.2,H,20,taxable_income,All,75000.0,100000.0,True,False,False,15144544.0 +2022,Table 1.2,M,20,tottax,All,75000.0,100000.0,False,False,False,113079420000.0 +2022,Table 1.2,L,20,tottax,All,75000.0,100000.0,True,False,False,14549648.0 +2022,Table 1.2,AM,21,adjusted_gross_income,Head of Household,100000.0,200000.0,False,False,False,199598735000.0 +2022,Table 1.2,O,21,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,100000.0,200000.0,False,False,False,2538317587000.0 +2022,Table 1.2,AA,21,adjusted_gross_income,Married Filing Separately,100000.0,200000.0,False,False,False,60341658000.0 +2022,Table 1.2,AY,21,adjusted_gross_income,Single,100000.0,200000.0,False,False,False,768789591000.0 +2022,Table 1.2,AL,21,count,Head of Household,100000.0,200000.0,True,False,False,1507144.0 +2022,Table 1.2,N,21,count,Married Filing Jointly/Surviving Spouse,100000.0,200000.0,True,False,False,18132960.0 +2022,Table 1.2,Z,21,count,Married Filing Separately,100000.0,200000.0,True,False,False,457744.0 +2022,Table 1.2,AX,21,count,Single,100000.0,200000.0,True,False,False,5789288.0 +2022,Table 1.2,E,21,itemized_deductions,All,100000.0,200000.0,False,False,False,151517219000.0 +2022,Table 1.2,D,21,itemized_deductions,All,100000.0,200000.0,True,False,False,4745777.0 +2022,Table 1.2,G,21,standard_deduction,All,100000.0,200000.0,False,False,False,500164477000.0 +2022,Table 1.2,F,21,standard_deduction,All,100000.0,200000.0,True,False,False,21140339.0 +2022,Table 1.2,K,21,income_tax_after_credits,All,100000.0,200000.0,False,False,False,397720446000.0 +2022,Table 1.2,J,21,income_tax_after_credits,All,100000.0,200000.0,True,False,False,25543182.0 +2022,Table 1.2,I,21,taxable_income,All,100000.0,200000.0,False,False,False,2884827377000.0 +2022,Table 1.2,H,21,taxable_income,All,100000.0,200000.0,True,False,False,25858946.0 +2022,Table 1.2,M,21,tottax,All,100000.0,200000.0,False,False,False,397758377000.0 +2022,Table 1.2,L,21,tottax,All,100000.0,200000.0,True,False,False,25547389.0 +2022,Table 1.2,AM,22,adjusted_gross_income,Head of Household,200000.0,500000.0,False,False,False,78908442000.0 +2022,Table 1.2,O,22,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,200000.0,500000.0,False,False,False,2377873755000.0 +2022,Table 1.2,AA,22,adjusted_gross_income,Married Filing Separately,200000.0,500000.0,False,False,False,32638692000.0 +2022,Table 1.2,AY,22,adjusted_gross_income,Single,200000.0,500000.0,False,False,False,401643939000.0 +2022,Table 1.2,AL,22,count,Head of Household,200000.0,500000.0,True,False,False,277721.0 +2022,Table 1.2,N,22,count,Married Filing Jointly/Surviving Spouse,200000.0,500000.0,True,False,False,8217044.0 +2022,Table 1.2,Z,22,count,Married Filing Separately,200000.0,500000.0,True,False,False,113765.0 +2022,Table 1.2,AX,22,count,Single,200000.0,500000.0,True,False,False,1409096.0 +2022,Table 1.2,E,22,itemized_deductions,All,200000.0,500000.0,False,False,False,136240610000.0 +2022,Table 1.2,D,22,itemized_deductions,All,200000.0,500000.0,True,False,False,3330396.0 +2022,Table 1.2,G,22,standard_deduction,All,200000.0,500000.0,False,False,False,165778465000.0 +2022,Table 1.2,F,22,standard_deduction,All,200000.0,500000.0,True,False,False,6687170.0 +2022,Table 1.2,K,22,income_tax_after_credits,All,200000.0,500000.0,False,False,False,478105230000.0 +2022,Table 1.2,J,22,income_tax_after_credits,All,200000.0,500000.0,True,False,False,9975881.0 +2022,Table 1.2,I,22,taxable_income,All,200000.0,500000.0,False,False,False,2546130393000.0 +2022,Table 1.2,H,22,taxable_income,All,200000.0,500000.0,True,False,False,10012726.0 +2022,Table 1.2,M,22,tottax,All,200000.0,500000.0,False,False,False,483056987000.0 +2022,Table 1.2,L,22,tottax,All,200000.0,500000.0,True,False,False,9992304.0 +2022,Table 1.2,AM,23,adjusted_gross_income,Head of Household,500000.0,1000000.0,False,False,False,30309857000.0 +2022,Table 1.2,O,23,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,500000.0,1000000.0,False,False,False,945135321000.0 +2022,Table 1.2,AA,23,adjusted_gross_income,Married Filing Separately,500000.0,1000000.0,False,False,False,14725478000.0 +2022,Table 1.2,AY,23,adjusted_gross_income,Single,500000.0,1000000.0,False,False,False,134128813000.0 +2022,Table 1.2,AL,23,count,Head of Household,500000.0,1000000.0,True,False,False,44818.0 +2022,Table 1.2,N,23,count,Married Filing Jointly/Surviving Spouse,500000.0,1000000.0,True,False,False,1407631.0 +2022,Table 1.2,Z,23,count,Married Filing Separately,500000.0,1000000.0,True,False,False,21615.0 +2022,Table 1.2,AX,23,count,Single,500000.0,1000000.0,True,False,False,200544.0 +2022,Table 1.2,E,23,itemized_deductions,All,500000.0,1000000.0,False,False,False,54792042000.0 +2022,Table 1.2,D,23,itemized_deductions,All,500000.0,1000000.0,True,False,False,902511.0 +2022,Table 1.2,G,23,standard_deduction,All,500000.0,1000000.0,False,False,False,19248184000.0 +2022,Table 1.2,F,23,standard_deduction,All,500000.0,1000000.0,True,False,False,771949.0 +2022,Table 1.2,K,23,income_tax_after_credits,All,500000.0,1000000.0,False,False,False,254284854000.0 +2022,Table 1.2,J,23,income_tax_after_credits,All,500000.0,1000000.0,True,False,False,1667357.0 +2022,Table 1.2,I,23,taxable_income,All,500000.0,1000000.0,False,False,False,1029732840000.0 +2022,Table 1.2,H,23,taxable_income,All,500000.0,1000000.0,True,False,False,1672890.0 +2022,Table 1.2,M,23,tottax,All,500000.0,1000000.0,False,False,False,260282198000.0 +2022,Table 1.2,L,23,tottax,All,500000.0,1000000.0,True,False,False,1672148.0 +2022,Table 1.2,AM,24,adjusted_gross_income,Head of Household,1000000.0,1500000.0,False,False,False,11099083000.0 +2022,Table 1.2,O,24,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,1000000.0,1500000.0,False,False,False,367071380000.0 +2022,Table 1.2,AA,24,adjusted_gross_income,Married Filing Separately,1000000.0,1500000.0,False,False,False,7498985000.0 +2022,Table 1.2,AY,24,adjusted_gross_income,Single,1000000.0,1500000.0,False,False,False,49508054000.0 +2022,Table 1.2,AL,24,count,Head of Household,1000000.0,1500000.0,True,False,False,9165.0 +2022,Table 1.2,N,24,count,Married Filing Jointly/Surviving Spouse,1000000.0,1500000.0,True,False,False,304533.0 +2022,Table 1.2,Z,24,count,Married Filing Separately,1000000.0,1500000.0,True,False,False,6098.0 +2022,Table 1.2,AX,24,count,Single,1000000.0,1500000.0,True,False,False,41086.0 +2022,Table 1.2,E,24,itemized_deductions,All,1000000.0,1500000.0,False,False,False,21274748000.0 +2022,Table 1.2,D,24,itemized_deductions,All,1000000.0,1500000.0,True,False,False,230387.0 +2022,Table 1.2,G,24,standard_deduction,All,1000000.0,1500000.0,False,False,False,3255956000.0 +2022,Table 1.2,F,24,standard_deduction,All,1000000.0,1500000.0,True,False,False,130493.0 +2022,Table 1.2,K,24,income_tax_after_credits,All,1000000.0,1500000.0,False,False,False,110819453000.0 +2022,Table 1.2,J,24,income_tax_after_credits,All,1000000.0,1500000.0,True,False,False,359534.0 +2022,Table 1.2,I,24,taxable_income,All,1000000.0,1500000.0,False,False,False,398810860000.0 +2022,Table 1.2,H,24,taxable_income,All,1000000.0,1500000.0,True,False,False,360624.0 +2022,Table 1.2,M,24,tottax,All,1000000.0,1500000.0,False,False,False,114003393000.0 +2022,Table 1.2,L,24,tottax,All,1000000.0,1500000.0,True,False,False,360444.0 +2022,Table 1.2,AM,25,adjusted_gross_income,Head of Household,1500000.0,2000000.0,False,False,False,6128994000.0 +2022,Table 1.2,O,25,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,1500000.0,2000000.0,False,False,False,212759924000.0 +2022,Table 1.2,AA,25,adjusted_gross_income,Married Filing Separately,1500000.0,2000000.0,False,False,False,4847219000.0 +2022,Table 1.2,AY,25,adjusted_gross_income,Single,1500000.0,2000000.0,False,False,False,30740648000.0 +2022,Table 1.2,AL,25,count,Head of Household,1500000.0,2000000.0,True,False,False,3575.0 +2022,Table 1.2,N,25,count,Married Filing Jointly/Surviving Spouse,1500000.0,2000000.0,True,False,False,123960.0 +2022,Table 1.2,Z,25,count,Married Filing Separately,1500000.0,2000000.0,True,False,False,2815.0 +2022,Table 1.2,AX,25,count,Single,1500000.0,2000000.0,True,False,False,17872.0 +2022,Table 1.2,E,25,itemized_deductions,All,1500000.0,2000000.0,False,False,False,12194361000.0 +2022,Table 1.2,D,25,itemized_deductions,All,1500000.0,2000000.0,True,False,False,101541.0 +2022,Table 1.2,G,25,standard_deduction,All,1500000.0,2000000.0,False,False,False,1151032000.0 +2022,Table 1.2,F,25,standard_deduction,All,1500000.0,2000000.0,True,False,False,46672.0 +2022,Table 1.2,K,25,income_tax_after_credits,All,1500000.0,2000000.0,False,False,False,67287429000.0 +2022,Table 1.2,J,25,income_tax_after_credits,All,1500000.0,2000000.0,True,False,False,147558.0 +2022,Table 1.2,I,25,taxable_income,All,1500000.0,2000000.0,False,False,False,232503836000.0 +2022,Table 1.2,H,25,taxable_income,All,1500000.0,2000000.0,True,False,False,148065.0 +2022,Table 1.2,M,25,tottax,All,1500000.0,2000000.0,False,False,False,69338677000.0 +2022,Table 1.2,L,25,tottax,All,1500000.0,2000000.0,True,False,False,148056.0 +2022,Table 1.2,AM,26,adjusted_gross_income,Head of Household,2000000.0,5000000.0,False,False,False,14984657000.0 +2022,Table 1.2,O,26,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,2000000.0,5000000.0,False,False,False,508979071000.0 +2022,Table 1.2,AA,26,adjusted_gross_income,Married Filing Separately,2000000.0,5000000.0,False,False,False,15401979000.0 +2022,Table 1.2,AY,26,adjusted_gross_income,Single,2000000.0,5000000.0,False,False,False,81678697000.0 +2022,Table 1.2,AL,26,count,Head of Household,2000000.0,5000000.0,True,False,False,5033.0 +2022,Table 1.2,N,26,count,Married Filing Jointly/Surviving Spouse,2000000.0,5000000.0,True,False,False,170806.0 +2022,Table 1.2,Z,26,count,Married Filing Separately,2000000.0,5000000.0,True,False,False,5029.0 +2022,Table 1.2,AX,26,count,Single,2000000.0,5000000.0,True,False,False,27261.0 +2022,Table 1.2,E,26,itemized_deductions,All,2000000.0,5000000.0,False,False,False,29514407000.0 +2022,Table 1.2,D,26,itemized_deductions,All,2000000.0,5000000.0,True,False,False,153659.0 +2022,Table 1.2,G,26,standard_deduction,All,2000000.0,5000000.0,False,False,False,1330930000.0 +2022,Table 1.2,F,26,standard_deduction,All,2000000.0,5000000.0,True,False,False,54446.0 +2022,Table 1.2,K,26,income_tax_after_credits,All,2000000.0,5000000.0,False,False,False,166026539000.0 +2022,Table 1.2,J,26,income_tax_after_credits,All,2000000.0,5000000.0,True,False,False,207401.0 +2022,Table 1.2,I,26,taxable_income,All,2000000.0,5000000.0,False,False,False,566143508000.0 +2022,Table 1.2,H,26,taxable_income,All,2000000.0,5000000.0,True,False,False,207905.0 +2022,Table 1.2,M,26,tottax,All,2000000.0,5000000.0,False,False,False,171825620000.0 +2022,Table 1.2,L,26,tottax,All,2000000.0,5000000.0,True,False,False,207905.0 +2022,Table 1.2,AM,27,adjusted_gross_income,Head of Household,5000000.0,10000000.0,False,False,False,8861342000.0 +2022,Table 1.2,O,27,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,5000000.0,10000000.0,False,False,False,295179490000.0 +2022,Table 1.2,AA,27,adjusted_gross_income,Married Filing Separately,5000000.0,10000000.0,False,False,False,11544457000.0 +2022,Table 1.2,AY,27,adjusted_gross_income,Single,5000000.0,10000000.0,False,False,False,47230435000.0 +2022,Table 1.2,AL,27,count,Head of Household,5000000.0,10000000.0,True,False,False,1280.0 +2022,Table 1.2,N,27,count,Married Filing Jointly/Surviving Spouse,5000000.0,10000000.0,True,False,False,43126.0 +2022,Table 1.2,Z,27,count,Married Filing Separately,5000000.0,10000000.0,True,False,False,1649.0 +2022,Table 1.2,AX,27,count,Single,5000000.0,10000000.0,True,False,False,6913.0 +2022,Table 1.2,E,27,itemized_deductions,All,5000000.0,10000000.0,False,False,False,18019722000.0 +2022,Table 1.2,D,27,itemized_deductions,All,5000000.0,10000000.0,True,False,False,42951.0 +2022,Table 1.2,G,27,standard_deduction,All,5000000.0,10000000.0,False,False,False,246152000.0 +2022,Table 1.2,F,27,standard_deduction,All,5000000.0,10000000.0,True,False,False,10015.0 +2022,Table 1.2,K,27,income_tax_after_credits,All,5000000.0,10000000.0,False,False,False,96475701000.0 +2022,Table 1.2,J,27,income_tax_after_credits,All,5000000.0,10000000.0,True,False,False,52747.0 +2022,Table 1.2,I,27,taxable_income,All,5000000.0,10000000.0,False,False,False,329548099000.0 +2022,Table 1.2,H,27,taxable_income,All,5000000.0,10000000.0,True,False,False,52914.0 +2022,Table 1.2,M,27,tottax,All,5000000.0,10000000.0,False,False,False,100262125000.0 +2022,Table 1.2,L,27,tottax,All,5000000.0,10000000.0,True,False,False,52913.0 +2022,Table 1.2,AM,28,adjusted_gross_income,Head of Household,10000000.0,inf,False,False,False,28647107000.0 +2022,Table 1.2,O,28,adjusted_gross_income,Married Filing Jointly/Surviving Spouse,10000000.0,inf,False,False,False,778371107000.0 +2022,Table 1.2,AA,28,adjusted_gross_income,Married Filing Separately,10000000.0,inf,False,False,False,83278521000.0 +2022,Table 1.2,AY,28,adjusted_gross_income,Single,10000000.0,inf,False,False,False,161222649000.0 +2022,Table 1.2,AL,28,count,Head of Household,10000000.0,inf,True,False,False,866.0 +2022,Table 1.2,N,28,count,Married Filing Jointly/Surviving Spouse,10000000.0,inf,True,False,False,27413.0 +2022,Table 1.2,Z,28,count,Married Filing Separately,10000000.0,inf,True,False,False,1514.0 +2022,Table 1.2,AX,28,count,Single,10000000.0,inf,True,False,False,4837.0 +2022,Table 1.2,E,28,itemized_deductions,All,10000000.0,inf,False,False,False,78344359000.0 +2022,Table 1.2,D,28,itemized_deductions,All,10000000.0,inf,True,False,False,30108.0 +2022,Table 1.2,G,28,standard_deduction,All,10000000.0,inf,False,False,False,106229000.0 +2022,Table 1.2,F,28,standard_deduction,All,10000000.0,inf,True,False,False,4521.0 +2022,Table 1.2,K,28,income_tax_after_credits,All,10000000.0,inf,False,False,False,251097008000.0 +2022,Table 1.2,J,28,income_tax_after_credits,All,10000000.0,inf,True,False,False,34472.0 +2022,Table 1.2,I,28,taxable_income,All,10000000.0,inf,False,False,False,938022489000.0 +2022,Table 1.2,H,28,taxable_income,All,10000000.0,inf,True,False,False,34587.0 +2022,Table 1.2,M,28,tottax,All,10000000.0,inf,False,False,False,266286618000.0 +2022,Table 1.2,L,28,tottax,All,10000000.0,inf,True,False,False,34604.0 +2022,Table 1.4,EO,9,alternative_minimum_tax,All,-inf,inf,False,False,True,4101697000.0 +2022,Table 1.4,EN,9,alternative_minimum_tax,All,-inf,inf,True,False,True,198059.0 +2022,Table 1.4,AG,9,business_net_profits,All,-inf,inf,False,False,True,543564980000.0 +2022,Table 1.4,AI,9,business_net_losses,All,-inf,inf,False,False,True,133172174000.0 +2022,Table 1.4,AF,9,business_net_profits,All,-inf,inf,True,False,True,21969832.0 +2022,Table 1.4,AH,9,business_net_losses,All,-inf,inf,True,False,True,8386569.0 +2022,Table 1.4,AK,9,capital_gains_distributions,All,-inf,inf,False,False,True,12863423000.0 +2022,Table 1.4,AJ,9,capital_gains_distributions,All,-inf,inf,True,False,True,3980047.0 +2022,Table 1.4,AM,9,capital_gains_gross,All,-inf,inf,False,False,True,1269785083000.0 +2022,Table 1.4,AO,9,capital_gains_losses,All,-inf,inf,False,False,True,28874408000.0 +2022,Table 1.4,AL,9,capital_gains_gross,All,-inf,inf,True,False,True,12915122.0 +2022,Table 1.4,AN,9,capital_gains_losses,All,-inf,inf,True,False,True,13565876.0 +2022,Table 1.4,W,9,exempt_interest,All,-inf,inf,False,False,True,55567941000.0 +2022,Table 1.4,V,9,exempt_interest,All,-inf,inf,True,False,True,6892813.0 +2022,Table 1.4,AU,9,ira_distributions,All,-inf,inf,False,False,True,437775580000.0 +2022,Table 1.4,AT,9,ira_distributions,All,-inf,inf,True,False,True,16282441.0 +2022,Table 1.4,Y,9,ordinary_dividends,All,-inf,inf,False,False,True,412320850000.0 +2022,Table 1.4,X,9,ordinary_dividends,All,-inf,inf,True,False,True,32853481.0 +2022,Table 1.4,BQ,9,partnership_and_s_corp_income,All,-inf,inf,False,False,True,1299835827000.0 +2022,Table 1.4,BS,9,partnership_and_s_corp_losses,All,-inf,inf,False,False,True,268627907000.0 +2022,Table 1.4,BP,9,partnership_and_s_corp_income,All,-inf,inf,True,False,True,7339387.0 +2022,Table 1.4,BR,9,partnership_and_s_corp_losses,All,-inf,inf,True,False,True,3612203.0 +2022,Table 1.4,AW,9,total_pension_income,All,-inf,inf,False,False,True,1528410590000.0 +2022,Table 1.4,AV,9,total_pension_income,All,-inf,inf,True,False,True,32975793.0 +2022,Table 1.4,AY,9,taxable_pension_income,All,-inf,inf,False,False,True,911698884000.0 +2022,Table 1.4,AX,9,taxable_pension_income,All,-inf,inf,True,False,True,30020638.0 +2022,Table 1.4,EI,9,qualified_business_income_deduction,All,-inf,inf,False,False,True,216078693000.0 +2022,Table 1.4,EH,9,qualified_business_income_deduction,All,-inf,inf,True,False,True,25654318.0 +2022,Table 1.4,AA,9,qualified_dividends,All,-inf,inf,False,False,True,313230845000.0 +2022,Table 1.4,Z,9,qualified_dividends,All,-inf,inf,True,False,True,30737089.0 +2022,Table 1.4,BU,9,s_corporation_net_income,All,-inf,inf,False,False,True,812741318000.0 +2022,Table 1.4,BW,9,s_corporation_net_losses,All,-inf,inf,False,False,True,93025607000.0 +2022,Table 1.4,BT,9,s_corporation_net_income,All,-inf,inf,True,False,True,4027461.0 +2022,Table 1.4,BV,9,s_corporation_net_losses,All,-inf,inf,True,False,True,1517428.0 +2022,Table 1.4,CK,9,taxable_social_security,All,-inf,inf,False,False,True,458513595000.0 +2022,Table 1.4,CJ,9,taxable_social_security,All,-inf,inf,True,False,True,24667460.0 +2022,Table 1.4,CI,9,total_social_security,All,-inf,inf,False,False,True,871307268000.0 +2022,Table 1.4,CH,9,total_social_security,All,-inf,inf,True,False,True,31861807.0 +2022,Table 1.4,ES,9,income_tax_before_credits,All,-inf,inf,False,False,True,2260350184000.0 +2022,Table 1.4,ER,9,income_tax_before_credits,All,-inf,inf,True,False,True,129352044.0 +2022,Table 1.4,U,9,taxable_interest_income,All,-inf,inf,False,False,True,133596569000.0 +2022,Table 1.4,T,9,taxable_interest_income,All,-inf,inf,True,False,True,49736855.0 +2022,Table 1.4,CG,9,unemployment_compensation,All,-inf,inf,False,False,True,30247572000.0 +2022,Table 1.4,CF,9,unemployment_compensation,All,-inf,inf,True,False,True,4728507.0 +2022,Table 1.4,G,9,employment_income,All,-inf,inf,False,False,True,9738950972000.0 +2022,Table 1.4,F,9,employment_income,All,-inf,inf,True,False,True,128387726.0 +2022,Table 1.4,EO,10,alternative_minimum_tax,All,-inf,0.0,False,False,False,139579000.0 +2022,Table 1.4,EN,10,alternative_minimum_tax,All,-inf,0.0,True,False,False,4127.0 +2022,Table 1.4,AG,10,business_net_profits,All,-inf,0.0,False,False,False,4257779000.0 +2022,Table 1.4,AI,10,business_net_losses,All,-inf,0.0,False,False,False,24055163000.0 +2022,Table 1.4,AF,10,business_net_profits,All,-inf,0.0,True,False,False,196114.0 +2022,Table 1.4,AH,10,business_net_losses,All,-inf,0.0,True,False,False,602612.0 +2022,Table 1.4,AK,10,capital_gains_distributions,All,-inf,0.0,False,False,False,88131000.0 +2022,Table 1.4,AJ,10,capital_gains_distributions,All,-inf,0.0,True,False,False,27012.0 +2022,Table 1.4,AM,10,capital_gains_gross,All,-inf,0.0,False,False,False,15131125000.0 +2022,Table 1.4,AO,10,capital_gains_losses,All,-inf,0.0,False,False,False,1236717000.0 +2022,Table 1.4,AL,10,capital_gains_gross,All,-inf,0.0,True,False,False,149100.0 +2022,Table 1.4,AN,10,capital_gains_losses,All,-inf,0.0,True,False,False,498407.0 +2022,Table 1.4,W,10,exempt_interest,All,-inf,0.0,False,False,False,789360000.0 +2022,Table 1.4,V,10,exempt_interest,All,-inf,0.0,True,False,False,93427.0 +2022,Table 1.4,AU,10,ira_distributions,All,-inf,0.0,False,False,False,1980715000.0 +2022,Table 1.4,AT,10,ira_distributions,All,-inf,0.0,True,False,False,121561.0 +2022,Table 1.4,Y,10,ordinary_dividends,All,-inf,0.0,False,False,False,3782002000.0 +2022,Table 1.4,X,10,ordinary_dividends,All,-inf,0.0,True,False,False,488427.0 +2022,Table 1.4,BQ,10,partnership_and_s_corp_income,All,-inf,0.0,False,False,False,8369859000.0 +2022,Table 1.4,BS,10,partnership_and_s_corp_losses,All,-inf,0.0,False,False,False,73421348000.0 +2022,Table 1.4,BP,10,partnership_and_s_corp_income,All,-inf,0.0,True,False,False,94554.0 +2022,Table 1.4,BR,10,partnership_and_s_corp_losses,All,-inf,0.0,True,False,False,359214.0 +2022,Table 1.4,AW,10,total_pension_income,All,-inf,0.0,False,False,False,8256209000.0 +2022,Table 1.4,AV,10,total_pension_income,All,-inf,0.0,True,False,False,263919.0 +2022,Table 1.4,AY,10,taxable_pension_income,All,-inf,0.0,False,False,False,2461700000.0 +2022,Table 1.4,AX,10,taxable_pension_income,All,-inf,0.0,True,False,False,188928.0 +2022,Table 1.4,EI,10,qualified_business_income_deduction,All,-inf,0.0,False,False,False,0.0 +2022,Table 1.4,EH,10,qualified_business_income_deduction,All,-inf,0.0,True,False,False,0.0 +2022,Table 1.4,AA,10,qualified_dividends,All,-inf,0.0,False,False,False,2427364000.0 +2022,Table 1.4,Z,10,qualified_dividends,All,-inf,0.0,True,False,False,441499.0 +2022,Table 1.4,BU,10,s_corporation_net_income,All,-inf,0.0,False,False,False,5058593000.0 +2022,Table 1.4,BW,10,s_corporation_net_losses,All,-inf,0.0,False,False,False,28337405000.0 +2022,Table 1.4,BT,10,s_corporation_net_income,All,-inf,0.0,True,False,False,47362.0 +2022,Table 1.4,BV,10,s_corporation_net_losses,All,-inf,0.0,True,False,False,186797.0 +2022,Table 1.4,CK,10,taxable_social_security,All,-inf,0.0,False,False,False,9577000.0 +2022,Table 1.4,CJ,10,taxable_social_security,All,-inf,0.0,True,False,False,3272.0 +2022,Table 1.4,CI,10,total_social_security,All,-inf,0.0,False,False,False,22784191000.0 +2022,Table 1.4,CH,10,total_social_security,All,-inf,0.0,True,False,False,1029709.0 +2022,Table 1.4,ES,10,income_tax_before_credits,All,-inf,0.0,False,False,False,163780000.0 +2022,Table 1.4,ER,10,income_tax_before_credits,All,-inf,0.0,True,False,False,82714.0 +2022,Table 1.4,U,10,taxable_interest_income,All,-inf,0.0,False,False,False,3365630000.0 +2022,Table 1.4,T,10,taxable_interest_income,All,-inf,0.0,True,False,False,679966.0 +2022,Table 1.4,CG,10,unemployment_compensation,All,-inf,0.0,False,False,False,297874000.0 +2022,Table 1.4,CF,10,unemployment_compensation,All,-inf,0.0,True,False,False,30375.0 +2022,Table 1.4,G,10,employment_income,All,-inf,0.0,False,False,False,26549822000.0 +2022,Table 1.4,F,10,employment_income,All,-inf,0.0,True,False,False,535529.0 +2022,Table 1.4,EO,11,alternative_minimum_tax,All,1.0,5000.0,False,False,False,8860000.0 +2022,Table 1.4,EN,11,alternative_minimum_tax,All,1.0,5000.0,True,False,False,1024.0 +2022,Table 1.4,AG,11,business_net_profits,All,1.0,5000.0,False,False,False,4846784000.0 +2022,Table 1.4,AI,11,business_net_losses,All,1.0,5000.0,False,False,False,1243038000.0 +2022,Table 1.4,AF,11,business_net_profits,All,1.0,5000.0,True,False,False,1751591.0 +2022,Table 1.4,AH,11,business_net_losses,All,1.0,5000.0,True,False,False,129781.0 +2022,Table 1.4,AK,11,capital_gains_distributions,All,1.0,5000.0,False,False,False,86558000.0 +2022,Table 1.4,AJ,11,capital_gains_distributions,All,1.0,5000.0,True,False,False,132582.0 +2022,Table 1.4,AM,11,capital_gains_gross,All,1.0,5000.0,False,False,False,655402000.0 +2022,Table 1.4,AO,11,capital_gains_losses,All,1.0,5000.0,False,False,False,734893000.0 +2022,Table 1.4,AL,11,capital_gains_gross,All,1.0,5000.0,True,False,False,220363.0 +2022,Table 1.4,AN,11,capital_gains_losses,All,1.0,5000.0,True,False,False,392041.0 +2022,Table 1.4,W,11,exempt_interest,All,1.0,5000.0,False,False,False,135194000.0 +2022,Table 1.4,V,11,exempt_interest,All,1.0,5000.0,True,False,False,109109.0 +2022,Table 1.4,AU,11,ira_distributions,All,1.0,5000.0,False,False,False,956450000.0 +2022,Table 1.4,AT,11,ira_distributions,All,1.0,5000.0,True,False,False,349510.0 +2022,Table 1.4,Y,11,ordinary_dividends,All,1.0,5000.0,False,False,False,1002127000.0 +2022,Table 1.4,X,11,ordinary_dividends,All,1.0,5000.0,True,False,False,926104.0 +2022,Table 1.4,BQ,11,partnership_and_s_corp_income,All,1.0,5000.0,False,False,False,403892000.0 +2022,Table 1.4,BS,11,partnership_and_s_corp_losses,All,1.0,5000.0,False,False,False,1204312000.0 +2022,Table 1.4,BP,11,partnership_and_s_corp_income,All,1.0,5000.0,True,False,False,42164.0 +2022,Table 1.4,BR,11,partnership_and_s_corp_losses,All,1.0,5000.0,True,False,False,64547.0 +2022,Table 1.4,AW,11,total_pension_income,All,1.0,5000.0,False,False,False,8681447000.0 +2022,Table 1.4,AV,11,total_pension_income,All,1.0,5000.0,True,False,False,749981.0 +2022,Table 1.4,AY,11,taxable_pension_income,All,1.0,5000.0,False,False,False,1926765000.0 +2022,Table 1.4,AX,11,taxable_pension_income,All,1.0,5000.0,True,False,False,678087.0 +2022,Table 1.4,EI,11,qualified_business_income_deduction,All,1.0,5000.0,False,False,False,2192000.0 +2022,Table 1.4,EH,11,qualified_business_income_deduction,All,1.0,5000.0,True,False,False,13037.0 +2022,Table 1.4,AA,11,qualified_dividends,All,1.0,5000.0,False,False,False,626680000.0 +2022,Table 1.4,Z,11,qualified_dividends,All,1.0,5000.0,True,False,False,824214.0 +2022,Table 1.4,BU,11,s_corporation_net_income,All,1.0,5000.0,False,False,False,246011000.0 +2022,Table 1.4,BW,11,s_corporation_net_losses,All,1.0,5000.0,False,False,False,690515000.0 +2022,Table 1.4,BT,11,s_corporation_net_income,All,1.0,5000.0,True,False,False,22342.0 +2022,Table 1.4,BV,11,s_corporation_net_losses,All,1.0,5000.0,True,False,False,34411.0 +2022,Table 1.4,CK,11,taxable_social_security,All,1.0,5000.0,False,False,False,36938000.0 +2022,Table 1.4,CJ,11,taxable_social_security,All,1.0,5000.0,True,False,False,13833.0 +2022,Table 1.4,CI,11,total_social_security,All,1.0,5000.0,False,False,False,44808940000.0 +2022,Table 1.4,CH,11,total_social_security,All,1.0,5000.0,True,False,False,2102117.0 +2022,Table 1.4,ES,11,income_tax_before_credits,All,1.0,5000.0,False,False,False,49108000.0 +2022,Table 1.4,ER,11,income_tax_before_credits,All,1.0,5000.0,True,False,False,239298.0 +2022,Table 1.4,U,11,taxable_interest_income,All,1.0,5000.0,False,False,False,498432000.0 +2022,Table 1.4,T,11,taxable_interest_income,All,1.0,5000.0,True,False,False,1665026.0 +2022,Table 1.4,CG,11,unemployment_compensation,All,1.0,5000.0,False,False,False,259782000.0 +2022,Table 1.4,CF,11,unemployment_compensation,All,1.0,5000.0,True,False,False,80787.0 +2022,Table 1.4,G,11,employment_income,All,1.0,5000.0,False,False,False,20111860000.0 +2022,Table 1.4,F,11,employment_income,All,1.0,5000.0,True,False,False,4526748.0 +2022,Table 1.4,EO,12,alternative_minimum_tax,All,5000.0,10000.0,False,False,False,0.0 +2022,Table 1.4,EN,12,alternative_minimum_tax,All,5000.0,10000.0,True,False,False,0.0 +2022,Table 1.4,AG,12,business_net_profits,All,5000.0,10000.0,False,False,False,10536163000.0 +2022,Table 1.4,AI,12,business_net_losses,All,5000.0,10000.0,False,False,False,3390070000.0 +2022,Table 1.4,AF,12,business_net_profits,All,5000.0,10000.0,True,False,False,1561927.0 +2022,Table 1.4,AH,12,business_net_losses,All,5000.0,10000.0,True,False,False,252209.0 +2022,Table 1.4,AK,12,capital_gains_distributions,All,5000.0,10000.0,False,False,False,182403000.0 +2022,Table 1.4,AJ,12,capital_gains_distributions,All,5000.0,10000.0,True,False,False,130890.0 +2022,Table 1.4,AM,12,capital_gains_gross,All,5000.0,10000.0,False,False,False,1075066000.0 +2022,Table 1.4,AO,12,capital_gains_losses,All,5000.0,10000.0,False,False,False,658940000.0 +2022,Table 1.4,AL,12,capital_gains_gross,All,5000.0,10000.0,True,False,False,229680.0 +2022,Table 1.4,AN,12,capital_gains_losses,All,5000.0,10000.0,True,False,False,341472.0 +2022,Table 1.4,W,12,exempt_interest,All,5000.0,10000.0,False,False,False,180828000.0 +2022,Table 1.4,V,12,exempt_interest,All,5000.0,10000.0,True,False,False,89031.0 +2022,Table 1.4,AU,12,ira_distributions,All,5000.0,10000.0,False,False,False,2516774000.0 +2022,Table 1.4,AT,12,ira_distributions,All,5000.0,10000.0,True,False,False,509867.0 +2022,Table 1.4,Y,12,ordinary_dividends,All,5000.0,10000.0,False,False,False,1342704000.0 +2022,Table 1.4,X,12,ordinary_dividends,All,5000.0,10000.0,True,False,False,758424.0 +2022,Table 1.4,BQ,12,partnership_and_s_corp_income,All,5000.0,10000.0,False,False,False,695008000.0 +2022,Table 1.4,BS,12,partnership_and_s_corp_losses,All,5000.0,10000.0,False,False,False,1026756000.0 +2022,Table 1.4,BP,12,partnership_and_s_corp_income,All,5000.0,10000.0,True,False,False,90857.0 +2022,Table 1.4,BR,12,partnership_and_s_corp_losses,All,5000.0,10000.0,True,False,False,51065.0 +2022,Table 1.4,AW,12,total_pension_income,All,5000.0,10000.0,False,False,False,10839260000.0 +2022,Table 1.4,AV,12,total_pension_income,All,5000.0,10000.0,True,False,False,976411.0 +2022,Table 1.4,AY,12,taxable_pension_income,All,5000.0,10000.0,False,False,False,5456915000.0 +2022,Table 1.4,AX,12,taxable_pension_income,All,5000.0,10000.0,True,False,False,935924.0 +2022,Table 1.4,EI,12,qualified_business_income_deduction,All,5000.0,10000.0,False,False,False,8095000.0 +2022,Table 1.4,EH,12,qualified_business_income_deduction,All,5000.0,10000.0,True,False,False,27435.0 +2022,Table 1.4,AA,12,qualified_dividends,All,5000.0,10000.0,False,False,False,802923000.0 +2022,Table 1.4,Z,12,qualified_dividends,All,5000.0,10000.0,True,False,False,677033.0 +2022,Table 1.4,BU,12,s_corporation_net_income,All,5000.0,10000.0,False,False,False,292912000.0 +2022,Table 1.4,BW,12,s_corporation_net_losses,All,5000.0,10000.0,False,False,False,584635000.0 +2022,Table 1.4,BT,12,s_corporation_net_income,All,5000.0,10000.0,True,False,False,36845.0 +2022,Table 1.4,BV,12,s_corporation_net_losses,All,5000.0,10000.0,True,False,False,27288.0 +2022,Table 1.4,CK,12,taxable_social_security,All,5000.0,10000.0,False,False,False,277763000.0 +2022,Table 1.4,CJ,12,taxable_social_security,All,5000.0,10000.0,True,False,False,78956.0 +2022,Table 1.4,CI,12,total_social_security,All,5000.0,10000.0,False,False,False,39170034000.0 +2022,Table 1.4,CH,12,total_social_security,All,5000.0,10000.0,True,False,False,1812315.0 +2022,Table 1.4,ES,12,income_tax_before_credits,All,5000.0,10000.0,False,False,False,76949000.0 +2022,Table 1.4,ER,12,income_tax_before_credits,All,5000.0,10000.0,True,False,False,278707.0 +2022,Table 1.4,U,12,taxable_interest_income,All,5000.0,10000.0,False,False,False,675967000.0 +2022,Table 1.4,T,12,taxable_interest_income,All,5000.0,10000.0,True,False,False,1280664.0 +2022,Table 1.4,CG,12,unemployment_compensation,All,5000.0,10000.0,False,False,False,736433000.0 +2022,Table 1.4,CF,12,unemployment_compensation,All,5000.0,10000.0,True,False,False,151452.0 +2022,Table 1.4,G,12,employment_income,All,5000.0,10000.0,False,False,False,49932161000.0 +2022,Table 1.4,F,12,employment_income,All,5000.0,10000.0,True,False,False,6288131.0 +2022,Table 1.4,EO,13,alternative_minimum_tax,All,10000.0,15000.0,False,False,False,9869000.0 +2022,Table 1.4,EN,13,alternative_minimum_tax,All,10000.0,15000.0,True,False,False,1169.0 +2022,Table 1.4,AG,13,business_net_profits,All,10000.0,15000.0,False,False,False,23775556000.0 +2022,Table 1.4,AI,13,business_net_losses,All,10000.0,15000.0,False,False,False,4750759000.0 +2022,Table 1.4,AF,13,business_net_profits,All,10000.0,15000.0,True,False,False,2288452.0 +2022,Table 1.4,AH,13,business_net_losses,All,10000.0,15000.0,True,False,False,371397.0 +2022,Table 1.4,AK,13,capital_gains_distributions,All,10000.0,15000.0,False,False,False,188178000.0 +2022,Table 1.4,AJ,13,capital_gains_distributions,All,10000.0,15000.0,True,False,False,106473.0 +2022,Table 1.4,AM,13,capital_gains_gross,All,10000.0,15000.0,False,False,False,1256699000.0 +2022,Table 1.4,AO,13,capital_gains_losses,All,10000.0,15000.0,False,False,False,658840000.0 +2022,Table 1.4,AL,13,capital_gains_gross,All,10000.0,15000.0,True,False,False,242744.0 +2022,Table 1.4,AN,13,capital_gains_losses,All,10000.0,15000.0,True,False,False,360608.0 +2022,Table 1.4,W,13,exempt_interest,All,10000.0,15000.0,False,False,False,224575000.0 +2022,Table 1.4,V,13,exempt_interest,All,10000.0,15000.0,True,False,False,105451.0 +2022,Table 1.4,AU,13,ira_distributions,All,10000.0,15000.0,False,False,False,3889372000.0 +2022,Table 1.4,AT,13,ira_distributions,All,10000.0,15000.0,True,False,False,571324.0 +2022,Table 1.4,Y,13,ordinary_dividends,All,10000.0,15000.0,False,False,False,1799586000.0 +2022,Table 1.4,X,13,ordinary_dividends,All,10000.0,15000.0,True,False,False,797458.0 +2022,Table 1.4,BQ,13,partnership_and_s_corp_income,All,10000.0,15000.0,False,False,False,841760000.0 +2022,Table 1.4,BS,13,partnership_and_s_corp_losses,All,10000.0,15000.0,False,False,False,1099882000.0 +2022,Table 1.4,BP,13,partnership_and_s_corp_income,All,10000.0,15000.0,True,False,False,96494.0 +2022,Table 1.4,BR,13,partnership_and_s_corp_losses,All,10000.0,15000.0,True,False,False,63745.0 +2022,Table 1.4,AW,13,total_pension_income,All,10000.0,15000.0,False,False,False,17268768000.0 +2022,Table 1.4,AV,13,total_pension_income,All,10000.0,15000.0,True,False,False,1358259.0 +2022,Table 1.4,AY,13,taxable_pension_income,All,10000.0,15000.0,False,False,False,11584932000.0 +2022,Table 1.4,AX,13,taxable_pension_income,All,10000.0,15000.0,True,False,False,1305060.0 +2022,Table 1.4,EI,13,qualified_business_income_deduction,All,10000.0,15000.0,False,False,False,79404000.0 +2022,Table 1.4,EH,13,qualified_business_income_deduction,All,10000.0,15000.0,True,False,False,411013.0 +2022,Table 1.4,AA,13,qualified_dividends,All,10000.0,15000.0,False,False,False,1089569000.0 +2022,Table 1.4,Z,13,qualified_dividends,All,10000.0,15000.0,True,False,False,721032.0 +2022,Table 1.4,BU,13,s_corporation_net_income,All,10000.0,15000.0,False,False,False,486657000.0 +2022,Table 1.4,BW,13,s_corporation_net_losses,All,10000.0,15000.0,False,False,False,848888000.0 +2022,Table 1.4,BT,13,s_corporation_net_income,All,10000.0,15000.0,True,False,False,50584.0 +2022,Table 1.4,BV,13,s_corporation_net_losses,All,10000.0,15000.0,True,False,False,38443.0 +2022,Table 1.4,CK,13,taxable_social_security,All,10000.0,15000.0,False,False,False,574534000.0 +2022,Table 1.4,CJ,13,taxable_social_security,All,10000.0,15000.0,True,False,False,390560.0 +2022,Table 1.4,CI,13,total_social_security,All,10000.0,15000.0,False,False,False,42729805000.0 +2022,Table 1.4,CH,13,total_social_security,All,10000.0,15000.0,True,False,False,1933305.0 +2022,Table 1.4,ES,13,income_tax_before_credits,All,10000.0,15000.0,False,False,False,366463000.0 +2022,Table 1.4,ER,13,income_tax_before_credits,All,10000.0,15000.0,True,False,False,2671211.0 +2022,Table 1.4,U,13,taxable_interest_income,All,10000.0,15000.0,False,False,False,757213000.0 +2022,Table 1.4,T,13,taxable_interest_income,All,10000.0,15000.0,True,False,False,1375568.0 +2022,Table 1.4,CG,13,unemployment_compensation,All,10000.0,15000.0,False,False,False,1295114000.0 +2022,Table 1.4,CF,13,unemployment_compensation,All,10000.0,15000.0,True,False,False,241578.0 +2022,Table 1.4,G,13,employment_income,All,10000.0,15000.0,False,False,False,83472741000.0 +2022,Table 1.4,F,13,employment_income,All,10000.0,15000.0,True,False,False,6711329.0 +2022,Table 1.4,EO,14,alternative_minimum_tax,All,15000.0,20000.0,False,False,False,0.0 +2022,Table 1.4,EN,14,alternative_minimum_tax,All,15000.0,20000.0,True,False,False,0.0 +2022,Table 1.4,AG,14,business_net_profits,All,15000.0,20000.0,False,False,False,25668295000.0 +2022,Table 1.4,AI,14,business_net_losses,All,15000.0,20000.0,False,False,False,6523057000.0 +2022,Table 1.4,AF,14,business_net_profits,All,15000.0,20000.0,True,False,False,1919766.0 +2022,Table 1.4,AH,14,business_net_losses,All,15000.0,20000.0,True,False,False,444902.0 +2022,Table 1.4,AK,14,capital_gains_distributions,All,15000.0,20000.0,False,False,False,215886000.0 +2022,Table 1.4,AJ,14,capital_gains_distributions,All,15000.0,20000.0,True,False,False,111615.0 +2022,Table 1.4,AM,14,capital_gains_gross,All,15000.0,20000.0,False,False,False,1258729000.0 +2022,Table 1.4,AO,14,capital_gains_losses,All,15000.0,20000.0,False,False,False,590974000.0 +2022,Table 1.4,AL,14,capital_gains_gross,All,15000.0,20000.0,True,False,False,230900.0 +2022,Table 1.4,AN,14,capital_gains_losses,All,15000.0,20000.0,True,False,False,290222.0 +2022,Table 1.4,W,14,exempt_interest,All,15000.0,20000.0,False,False,False,196450000.0 +2022,Table 1.4,V,14,exempt_interest,All,15000.0,20000.0,True,False,False,95997.0 +2022,Table 1.4,AU,14,ira_distributions,All,15000.0,20000.0,False,False,False,4566996000.0 +2022,Table 1.4,AT,14,ira_distributions,All,15000.0,20000.0,True,False,False,571653.0 +2022,Table 1.4,Y,14,ordinary_dividends,All,15000.0,20000.0,False,False,False,1961601000.0 +2022,Table 1.4,X,14,ordinary_dividends,All,15000.0,20000.0,True,False,False,696385.0 +2022,Table 1.4,BQ,14,partnership_and_s_corp_income,All,15000.0,20000.0,False,False,False,1045289000.0 +2022,Table 1.4,BS,14,partnership_and_s_corp_losses,All,15000.0,20000.0,False,False,False,1019506000.0 +2022,Table 1.4,BP,14,partnership_and_s_corp_income,All,15000.0,20000.0,True,False,False,108155.0 +2022,Table 1.4,BR,14,partnership_and_s_corp_losses,All,15000.0,20000.0,True,False,False,63286.0 +2022,Table 1.4,AW,14,total_pension_income,All,15000.0,20000.0,False,False,False,19136480000.0 +2022,Table 1.4,AV,14,total_pension_income,All,15000.0,20000.0,True,False,False,1282289.0 +2022,Table 1.4,AY,14,taxable_pension_income,All,15000.0,20000.0,False,False,False,14116951000.0 +2022,Table 1.4,AX,14,taxable_pension_income,All,15000.0,20000.0,True,False,False,1238841.0 +2022,Table 1.4,EI,14,qualified_business_income_deduction,All,15000.0,20000.0,False,False,False,473079000.0 +2022,Table 1.4,EH,14,qualified_business_income_deduction,All,15000.0,20000.0,True,False,False,787843.0 +2022,Table 1.4,AA,14,qualified_dividends,All,15000.0,20000.0,False,False,False,1217055000.0 +2022,Table 1.4,Z,14,qualified_dividends,All,15000.0,20000.0,True,False,False,631439.0 +2022,Table 1.4,BU,14,s_corporation_net_income,All,15000.0,20000.0,False,False,False,583158000.0 +2022,Table 1.4,BW,14,s_corporation_net_losses,All,15000.0,20000.0,False,False,False,546682000.0 +2022,Table 1.4,BT,14,s_corporation_net_income,All,15000.0,20000.0,True,False,False,61940.0 +2022,Table 1.4,BV,14,s_corporation_net_losses,All,15000.0,20000.0,True,False,False,35492.0 +2022,Table 1.4,CK,14,taxable_social_security,All,15000.0,20000.0,False,False,False,1828129000.0 +2022,Table 1.4,CJ,14,taxable_social_security,All,15000.0,20000.0,True,False,False,1093175.0 +2022,Table 1.4,CI,14,total_social_security,All,15000.0,20000.0,False,False,False,38636556000.0 +2022,Table 1.4,CH,14,total_social_security,All,15000.0,20000.0,True,False,False,1707714.0 +2022,Table 1.4,ES,14,income_tax_before_credits,All,15000.0,20000.0,False,False,False,2455524000.0 +2022,Table 1.4,ER,14,income_tax_before_credits,All,15000.0,20000.0,True,False,False,6060698.0 +2022,Table 1.4,U,14,taxable_interest_income,All,15000.0,20000.0,False,False,False,858052000.0 +2022,Table 1.4,T,14,taxable_interest_income,All,15000.0,20000.0,True,False,False,1331696.0 +2022,Table 1.4,CG,14,unemployment_compensation,All,15000.0,20000.0,False,False,False,1962929000.0 +2022,Table 1.4,CF,14,unemployment_compensation,All,15000.0,20000.0,True,False,False,302689.0 +2022,Table 1.4,G,14,employment_income,All,15000.0,20000.0,False,False,False,114917988000.0 +2022,Table 1.4,F,14,employment_income,All,15000.0,20000.0,True,False,False,6711424.0 +2022,Table 1.4,EO,15,alternative_minimum_tax,All,20000.0,25000.0,False,False,False,13243000.0 +2022,Table 1.4,EN,15,alternative_minimum_tax,All,20000.0,25000.0,True,False,False,68.0 +2022,Table 1.4,AG,15,business_net_profits,All,20000.0,25000.0,False,False,False,17560336000.0 +2022,Table 1.4,AI,15,business_net_losses,All,20000.0,25000.0,False,False,False,6844014000.0 +2022,Table 1.4,AF,15,business_net_profits,All,20000.0,25000.0,True,False,False,1153051.0 +2022,Table 1.4,AH,15,business_net_losses,All,20000.0,25000.0,True,False,False,479727.0 +2022,Table 1.4,AK,15,capital_gains_distributions,All,20000.0,25000.0,False,False,False,154072000.0 +2022,Table 1.4,AJ,15,capital_gains_distributions,All,20000.0,25000.0,True,False,False,99575.0 +2022,Table 1.4,AM,15,capital_gains_gross,All,20000.0,25000.0,False,False,False,1537561000.0 +2022,Table 1.4,AO,15,capital_gains_losses,All,20000.0,25000.0,False,False,False,564018000.0 +2022,Table 1.4,AL,15,capital_gains_gross,All,20000.0,25000.0,True,False,False,253315.0 +2022,Table 1.4,AN,15,capital_gains_losses,All,20000.0,25000.0,True,False,False,302514.0 +2022,Table 1.4,W,15,exempt_interest,All,20000.0,25000.0,False,False,False,141466000.0 +2022,Table 1.4,V,15,exempt_interest,All,20000.0,25000.0,True,False,False,94559.0 +2022,Table 1.4,AU,15,ira_distributions,All,20000.0,25000.0,False,False,False,4833461000.0 +2022,Table 1.4,AT,15,ira_distributions,All,20000.0,25000.0,True,False,False,508282.0 +2022,Table 1.4,Y,15,ordinary_dividends,All,20000.0,25000.0,False,False,False,1927607000.0 +2022,Table 1.4,X,15,ordinary_dividends,All,20000.0,25000.0,True,False,False,724135.0 +2022,Table 1.4,BQ,15,partnership_and_s_corp_income,All,20000.0,25000.0,False,False,False,1354419000.0 +2022,Table 1.4,BS,15,partnership_and_s_corp_losses,All,20000.0,25000.0,False,False,False,1148160000.0 +2022,Table 1.4,BP,15,partnership_and_s_corp_income,All,20000.0,25000.0,True,False,False,95391.0 +2022,Table 1.4,BR,15,partnership_and_s_corp_losses,All,20000.0,25000.0,True,False,False,64808.0 +2022,Table 1.4,AW,15,total_pension_income,All,20000.0,25000.0,False,False,False,20089714000.0 +2022,Table 1.4,AV,15,total_pension_income,All,20000.0,25000.0,True,False,False,1185076.0 +2022,Table 1.4,AY,15,taxable_pension_income,All,20000.0,25000.0,False,False,False,14414125000.0 +2022,Table 1.4,AX,15,taxable_pension_income,All,20000.0,25000.0,True,False,False,1122645.0 +2022,Table 1.4,EI,15,qualified_business_income_deduction,All,20000.0,25000.0,False,False,False,784347000.0 +2022,Table 1.4,EH,15,qualified_business_income_deduction,All,20000.0,25000.0,True,False,False,856964.0 +2022,Table 1.4,AA,15,qualified_dividends,All,20000.0,25000.0,False,False,False,1221401000.0 +2022,Table 1.4,Z,15,qualified_dividends,All,20000.0,25000.0,True,False,False,668034.0 +2022,Table 1.4,BU,15,s_corporation_net_income,All,20000.0,25000.0,False,False,False,798350000.0 +2022,Table 1.4,BW,15,s_corporation_net_losses,All,20000.0,25000.0,False,False,False,763518000.0 +2022,Table 1.4,BT,15,s_corporation_net_income,All,20000.0,25000.0,True,False,False,56078.0 +2022,Table 1.4,BV,15,s_corporation_net_losses,All,20000.0,25000.0,True,False,False,32497.0 +2022,Table 1.4,CK,15,taxable_social_security,All,20000.0,25000.0,False,False,False,3692023000.0 +2022,Table 1.4,CJ,15,taxable_social_security,All,20000.0,25000.0,True,False,False,1226518.0 +2022,Table 1.4,CI,15,total_social_security,All,20000.0,25000.0,False,False,False,33482285000.0 +2022,Table 1.4,CH,15,total_social_security,All,20000.0,25000.0,True,False,False,1368527.0 +2022,Table 1.4,ES,15,income_tax_before_credits,All,20000.0,25000.0,False,False,False,5228484000.0 +2022,Table 1.4,ER,15,income_tax_before_credits,All,20000.0,25000.0,True,False,False,6829376.0 +2022,Table 1.4,U,15,taxable_interest_income,All,20000.0,25000.0,False,False,False,746963000.0 +2022,Table 1.4,T,15,taxable_interest_income,All,20000.0,25000.0,True,False,False,1266528.0 +2022,Table 1.4,CG,15,unemployment_compensation,All,20000.0,25000.0,False,False,False,2112690000.0 +2022,Table 1.4,CF,15,unemployment_compensation,All,20000.0,25000.0,True,False,False,304130.0 +2022,Table 1.4,G,15,employment_income,All,20000.0,25000.0,False,False,False,142024298000.0 +2022,Table 1.4,F,15,employment_income,All,20000.0,25000.0,True,False,False,6413397.0 +2022,Table 1.4,EO,16,alternative_minimum_tax,All,25000.0,30000.0,False,False,False,191000.0 +2022,Table 1.4,EN,16,alternative_minimum_tax,All,25000.0,30000.0,True,False,False,209.0 +2022,Table 1.4,AG,16,business_net_profits,All,25000.0,30000.0,False,False,False,16468043000.0 +2022,Table 1.4,AI,16,business_net_losses,All,25000.0,30000.0,False,False,False,6144470000.0 +2022,Table 1.4,AF,16,business_net_profits,All,25000.0,30000.0,True,False,False,962362.0 +2022,Table 1.4,AH,16,business_net_losses,All,25000.0,30000.0,True,False,False,459319.0 +2022,Table 1.4,AK,16,capital_gains_distributions,All,25000.0,30000.0,False,False,False,185113000.0 +2022,Table 1.4,AJ,16,capital_gains_distributions,All,25000.0,30000.0,True,False,False,94978.0 +2022,Table 1.4,AM,16,capital_gains_gross,All,25000.0,30000.0,False,False,False,1784653000.0 +2022,Table 1.4,AO,16,capital_gains_losses,All,25000.0,30000.0,False,False,False,581279000.0 +2022,Table 1.4,AL,16,capital_gains_gross,All,25000.0,30000.0,True,False,False,225968.0 +2022,Table 1.4,AN,16,capital_gains_losses,All,25000.0,30000.0,True,False,False,301308.0 +2022,Table 1.4,W,16,exempt_interest,All,25000.0,30000.0,False,False,False,348578000.0 +2022,Table 1.4,V,16,exempt_interest,All,25000.0,30000.0,True,False,False,95098.0 +2022,Table 1.4,AU,16,ira_distributions,All,25000.0,30000.0,False,False,False,5327172000.0 +2022,Table 1.4,AT,16,ira_distributions,All,25000.0,30000.0,True,False,False,502471.0 +2022,Table 1.4,Y,16,ordinary_dividends,All,25000.0,30000.0,False,False,False,2045508000.0 +2022,Table 1.4,X,16,ordinary_dividends,All,25000.0,30000.0,True,False,False,692576.0 +2022,Table 1.4,BQ,16,partnership_and_s_corp_income,All,25000.0,30000.0,False,False,False,2011898000.0 +2022,Table 1.4,BS,16,partnership_and_s_corp_losses,All,25000.0,30000.0,False,False,False,1835683000.0 +2022,Table 1.4,BP,16,partnership_and_s_corp_income,All,25000.0,30000.0,True,False,False,118990.0 +2022,Table 1.4,BR,16,partnership_and_s_corp_losses,All,25000.0,30000.0,True,False,False,71411.0 +2022,Table 1.4,AW,16,total_pension_income,All,25000.0,30000.0,False,False,False,22429177000.0 +2022,Table 1.4,AV,16,total_pension_income,All,25000.0,30000.0,True,False,False,1183550.0 +2022,Table 1.4,AY,16,taxable_pension_income,All,25000.0,30000.0,False,False,False,16717855000.0 +2022,Table 1.4,AX,16,taxable_pension_income,All,25000.0,30000.0,True,False,False,1126270.0 +2022,Table 1.4,EI,16,qualified_business_income_deduction,All,25000.0,30000.0,False,False,False,1007858000.0 +2022,Table 1.4,EH,16,qualified_business_income_deduction,All,25000.0,30000.0,True,False,False,912460.0 +2022,Table 1.4,AA,16,qualified_dividends,All,25000.0,30000.0,False,False,False,1208577000.0 +2022,Table 1.4,Z,16,qualified_dividends,All,25000.0,30000.0,True,False,False,633167.0 +2022,Table 1.4,BU,16,s_corporation_net_income,All,25000.0,30000.0,False,False,False,1214771000.0 +2022,Table 1.4,BW,16,s_corporation_net_losses,All,25000.0,30000.0,False,False,False,1089706000.0 +2022,Table 1.4,BT,16,s_corporation_net_income,All,25000.0,30000.0,True,False,False,66913.0 +2022,Table 1.4,BV,16,s_corporation_net_losses,All,25000.0,30000.0,True,False,False,38318.0 +2022,Table 1.4,CK,16,taxable_social_security,All,25000.0,30000.0,False,False,False,5137194000.0 +2022,Table 1.4,CJ,16,taxable_social_security,All,25000.0,30000.0,True,False,False,1189658.0 +2022,Table 1.4,CI,16,total_social_security,All,25000.0,30000.0,False,False,False,30641677000.0 +2022,Table 1.4,CH,16,total_social_security,All,25000.0,30000.0,True,False,False,1224515.0 +2022,Table 1.4,ES,16,income_tax_before_credits,All,25000.0,30000.0,False,False,False,8950835000.0 +2022,Table 1.4,ER,16,income_tax_before_credits,All,25000.0,30000.0,True,False,False,7393134.0 +2022,Table 1.4,U,16,taxable_interest_income,All,25000.0,30000.0,False,False,False,825814000.0 +2022,Table 1.4,T,16,taxable_interest_income,All,25000.0,30000.0,True,False,False,1342809.0 +2022,Table 1.4,CG,16,unemployment_compensation,All,25000.0,30000.0,False,False,False,2109457000.0 +2022,Table 1.4,CF,16,unemployment_compensation,All,25000.0,30000.0,True,False,False,317628.0 +2022,Table 1.4,G,16,employment_income,All,25000.0,30000.0,False,False,False,179101569000.0 +2022,Table 1.4,F,16,employment_income,All,25000.0,30000.0,True,False,False,6580422.0 +2022,Table 1.4,EO,17,alternative_minimum_tax,All,30000.0,40000.0,False,False,False,1315000.0 +2022,Table 1.4,EN,17,alternative_minimum_tax,All,30000.0,40000.0,True,False,False,766.0 +2022,Table 1.4,AG,17,business_net_profits,All,30000.0,40000.0,False,False,False,28615046000.0 +2022,Table 1.4,AI,17,business_net_losses,All,30000.0,40000.0,False,False,False,10660469000.0 +2022,Table 1.4,AF,17,business_net_profits,All,30000.0,40000.0,True,False,False,1538395.0 +2022,Table 1.4,AH,17,business_net_losses,All,30000.0,40000.0,True,False,False,820104.0 +2022,Table 1.4,AK,17,capital_gains_distributions,All,30000.0,40000.0,False,False,False,421788000.0 +2022,Table 1.4,AJ,17,capital_gains_distributions,All,30000.0,40000.0,True,False,False,222677.0 +2022,Table 1.4,AM,17,capital_gains_gross,All,30000.0,40000.0,False,False,False,3981590000.0 +2022,Table 1.4,AO,17,capital_gains_losses,All,30000.0,40000.0,False,False,False,1232466000.0 +2022,Table 1.4,AL,17,capital_gains_gross,All,30000.0,40000.0,True,False,False,482246.0 +2022,Table 1.4,AN,17,capital_gains_losses,All,30000.0,40000.0,True,False,False,628156.0 +2022,Table 1.4,W,17,exempt_interest,All,30000.0,40000.0,False,False,False,813250000.0 +2022,Table 1.4,V,17,exempt_interest,All,30000.0,40000.0,True,False,False,224413.0 +2022,Table 1.4,AU,17,ira_distributions,All,30000.0,40000.0,False,False,False,10566983000.0 +2022,Table 1.4,AT,17,ira_distributions,All,30000.0,40000.0,True,False,False,930812.0 +2022,Table 1.4,Y,17,ordinary_dividends,All,30000.0,40000.0,False,False,False,4236334000.0 +2022,Table 1.4,X,17,ordinary_dividends,All,30000.0,40000.0,True,False,False,1445415.0 +2022,Table 1.4,BQ,17,partnership_and_s_corp_income,All,30000.0,40000.0,False,False,False,4880956000.0 +2022,Table 1.4,BS,17,partnership_and_s_corp_losses,All,30000.0,40000.0,False,False,False,3007903000.0 +2022,Table 1.4,BP,17,partnership_and_s_corp_income,All,30000.0,40000.0,True,False,False,263839.0 +2022,Table 1.4,BR,17,partnership_and_s_corp_losses,All,30000.0,40000.0,True,False,False,127939.0 +2022,Table 1.4,AW,17,total_pension_income,All,30000.0,40000.0,False,False,False,50139171000.0 +2022,Table 1.4,AV,17,total_pension_income,All,30000.0,40000.0,True,False,False,2309694.0 +2022,Table 1.4,AY,17,taxable_pension_income,All,30000.0,40000.0,False,False,False,36978754000.0 +2022,Table 1.4,AX,17,taxable_pension_income,All,30000.0,40000.0,True,False,False,2182773.0 +2022,Table 1.4,EI,17,qualified_business_income_deduction,All,30000.0,40000.0,False,False,False,2907099000.0 +2022,Table 1.4,EH,17,qualified_business_income_deduction,All,30000.0,40000.0,True,False,False,1775615.0 +2022,Table 1.4,AA,17,qualified_dividends,All,30000.0,40000.0,False,False,False,2701330000.0 +2022,Table 1.4,Z,17,qualified_dividends,All,30000.0,40000.0,True,False,False,1313018.0 +2022,Table 1.4,BU,17,s_corporation_net_income,All,30000.0,40000.0,False,False,False,2929046000.0 +2022,Table 1.4,BW,17,s_corporation_net_losses,All,30000.0,40000.0,False,False,False,1858699000.0 +2022,Table 1.4,BT,17,s_corporation_net_income,All,30000.0,40000.0,True,False,False,154238.0 +2022,Table 1.4,BV,17,s_corporation_net_losses,All,30000.0,40000.0,True,False,False,66717.0 +2022,Table 1.4,CK,17,taxable_social_security,All,30000.0,40000.0,False,False,False,16288336000.0 +2022,Table 1.4,CJ,17,taxable_social_security,All,30000.0,40000.0,True,False,False,2240513.0 +2022,Table 1.4,CI,17,total_social_security,All,30000.0,40000.0,False,False,False,57117804000.0 +2022,Table 1.4,CH,17,total_social_security,All,30000.0,40000.0,True,False,False,2241530.0 +2022,Table 1.4,ES,17,income_tax_before_credits,All,30000.0,40000.0,False,False,False,30149194000.0 +2022,Table 1.4,ER,17,income_tax_before_credits,All,30000.0,40000.0,True,False,False,15541069.0 +2022,Table 1.4,U,17,taxable_interest_income,All,30000.0,40000.0,False,False,False,1844279000.0 +2022,Table 1.4,T,17,taxable_interest_income,All,30000.0,40000.0,True,False,False,2570802.0 +2022,Table 1.4,CG,17,unemployment_compensation,All,30000.0,40000.0,False,False,False,3491782000.0 +2022,Table 1.4,CF,17,unemployment_compensation,All,30000.0,40000.0,True,False,False,547305.0 +2022,Table 1.4,G,17,employment_income,All,30000.0,40000.0,False,False,False,458154921000.0 +2022,Table 1.4,F,17,employment_income,All,30000.0,40000.0,True,False,False,13512882.0 +2022,Table 1.4,EO,18,alternative_minimum_tax,All,40000.0,50000.0,False,False,False,2761000.0 +2022,Table 1.4,EN,18,alternative_minimum_tax,All,40000.0,50000.0,True,False,False,463.0 +2022,Table 1.4,AG,18,business_net_profits,All,40000.0,50000.0,False,False,False,23231693000.0 +2022,Table 1.4,AI,18,business_net_losses,All,40000.0,50000.0,False,False,False,7999679000.0 +2022,Table 1.4,AF,18,business_net_profits,All,40000.0,50000.0,True,False,False,1243032.0 +2022,Table 1.4,AH,18,business_net_losses,All,40000.0,50000.0,True,False,False,617875.0 +2022,Table 1.4,AK,18,capital_gains_distributions,All,40000.0,50000.0,False,False,False,308187000.0 +2022,Table 1.4,AJ,18,capital_gains_distributions,All,40000.0,50000.0,True,False,False,191959.0 +2022,Table 1.4,AM,18,capital_gains_gross,All,40000.0,50000.0,False,False,False,3384009000.0 +2022,Table 1.4,AO,18,capital_gains_losses,All,40000.0,50000.0,False,False,False,1246685000.0 +2022,Table 1.4,AL,18,capital_gains_gross,All,40000.0,50000.0,True,False,False,527948.0 +2022,Table 1.4,AN,18,capital_gains_losses,All,40000.0,50000.0,True,False,False,642162.0 +2022,Table 1.4,W,18,exempt_interest,All,40000.0,50000.0,False,False,False,694502000.0 +2022,Table 1.4,V,18,exempt_interest,All,40000.0,50000.0,True,False,False,262708.0 +2022,Table 1.4,AU,18,ira_distributions,All,40000.0,50000.0,False,False,False,12521815000.0 +2022,Table 1.4,AT,18,ira_distributions,All,40000.0,50000.0,True,False,False,976829.0 +2022,Table 1.4,Y,18,ordinary_dividends,All,40000.0,50000.0,False,False,False,4878940000.0 +2022,Table 1.4,X,18,ordinary_dividends,All,40000.0,50000.0,True,False,False,1491106.0 +2022,Table 1.4,BQ,18,partnership_and_s_corp_income,All,40000.0,50000.0,False,False,False,4933184000.0 +2022,Table 1.4,BS,18,partnership_and_s_corp_losses,All,40000.0,50000.0,False,False,False,2777785000.0 +2022,Table 1.4,BP,18,partnership_and_s_corp_income,All,40000.0,50000.0,True,False,False,230301.0 +2022,Table 1.4,BR,18,partnership_and_s_corp_losses,All,40000.0,50000.0,True,False,False,130447.0 +2022,Table 1.4,AW,18,total_pension_income,All,40000.0,50000.0,False,False,False,87280416000.0 +2022,Table 1.4,AV,18,total_pension_income,All,40000.0,50000.0,True,False,False,2267786.0 +2022,Table 1.4,AY,18,taxable_pension_income,All,40000.0,50000.0,False,False,False,41935487000.0 +2022,Table 1.4,AX,18,taxable_pension_income,All,40000.0,50000.0,True,False,False,2115246.0 +2022,Table 1.4,EI,18,qualified_business_income_deduction,All,40000.0,50000.0,False,False,False,3203594000.0 +2022,Table 1.4,EH,18,qualified_business_income_deduction,All,40000.0,50000.0,True,False,False,1594793.0 +2022,Table 1.4,AA,18,qualified_dividends,All,40000.0,50000.0,False,False,False,3339456000.0 +2022,Table 1.4,Z,18,qualified_dividends,All,40000.0,50000.0,True,False,False,1363374.0 +2022,Table 1.4,BU,18,s_corporation_net_income,All,40000.0,50000.0,False,False,False,3082848000.0 +2022,Table 1.4,BW,18,s_corporation_net_losses,All,40000.0,50000.0,False,False,False,1310679000.0 +2022,Table 1.4,BT,18,s_corporation_net_income,All,40000.0,50000.0,True,False,False,121023.0 +2022,Table 1.4,BV,18,s_corporation_net_losses,All,40000.0,50000.0,True,False,False,61429.0 +2022,Table 1.4,CK,18,taxable_social_security,All,40000.0,50000.0,False,False,False,22132636000.0 +2022,Table 1.4,CJ,18,taxable_social_security,All,40000.0,50000.0,True,False,False,1953921.0 +2022,Table 1.4,CI,18,total_social_security,All,40000.0,50000.0,False,False,False,49489596000.0 +2022,Table 1.4,CH,18,total_social_security,All,40000.0,50000.0,True,False,False,1955929.0 +2022,Table 1.4,ES,18,income_tax_before_credits,All,40000.0,50000.0,False,False,False,39898555000.0 +2022,Table 1.4,ER,18,income_tax_before_credits,All,40000.0,50000.0,True,False,False,13155211.0 +2022,Table 1.4,U,18,taxable_interest_income,All,40000.0,50000.0,False,False,False,1577729000.0 +2022,Table 1.4,T,18,taxable_interest_income,All,40000.0,50000.0,True,False,False,2667327.0 +2022,Table 1.4,CG,18,unemployment_compensation,All,40000.0,50000.0,False,False,False,2743510000.0 +2022,Table 1.4,CF,18,unemployment_compensation,All,40000.0,50000.0,True,False,False,404022.0 +2022,Table 1.4,G,18,employment_income,All,40000.0,50000.0,False,False,False,491501148000.0 +2022,Table 1.4,F,18,employment_income,All,40000.0,50000.0,True,False,False,11461901.0 +2022,Table 1.4,EO,19,alternative_minimum_tax,All,50000.0,75000.0,False,False,False,4554000.0 +2022,Table 1.4,EN,19,alternative_minimum_tax,All,50000.0,75000.0,True,False,False,509.0 +2022,Table 1.4,AG,19,business_net_profits,All,50000.0,75000.0,False,False,False,45622131000.0 +2022,Table 1.4,AI,19,business_net_losses,All,50000.0,75000.0,False,False,False,11430440000.0 +2022,Table 1.4,AF,19,business_net_profits,All,50000.0,75000.0,True,False,False,2292029.0 +2022,Table 1.4,AH,19,business_net_losses,All,50000.0,75000.0,True,False,False,1150596.0 +2022,Table 1.4,AK,19,capital_gains_distributions,All,50000.0,75000.0,False,False,False,1186628000.0 +2022,Table 1.4,AJ,19,capital_gains_distributions,All,50000.0,75000.0,True,False,False,546979.0 +2022,Table 1.4,AM,19,capital_gains_gross,All,50000.0,75000.0,False,False,False,13328918000.0 +2022,Table 1.4,AO,19,capital_gains_losses,All,50000.0,75000.0,False,False,False,3057870000.0 +2022,Table 1.4,AL,19,capital_gains_gross,All,50000.0,75000.0,True,False,False,1476041.0 +2022,Table 1.4,AN,19,capital_gains_losses,All,50000.0,75000.0,True,False,False,1560956.0 +2022,Table 1.4,W,19,exempt_interest,All,50000.0,75000.0,False,False,False,2148899000.0 +2022,Table 1.4,V,19,exempt_interest,All,50000.0,75000.0,True,False,False,701687.0 +2022,Table 1.4,AU,19,ira_distributions,All,50000.0,75000.0,False,False,False,36656755000.0 +2022,Table 1.4,AT,19,ira_distributions,All,50000.0,75000.0,True,False,False,2376482.0 +2022,Table 1.4,Y,19,ordinary_dividends,All,50000.0,75000.0,False,False,False,14654866000.0 +2022,Table 1.4,X,19,ordinary_dividends,All,50000.0,75000.0,True,False,False,3966461.0 +2022,Table 1.4,BQ,19,partnership_and_s_corp_income,All,50000.0,75000.0,False,False,False,16901586000.0 +2022,Table 1.4,BS,19,partnership_and_s_corp_losses,All,50000.0,75000.0,False,False,False,6876525000.0 +2022,Table 1.4,BP,19,partnership_and_s_corp_income,All,50000.0,75000.0,True,False,False,643886.0 +2022,Table 1.4,BR,19,partnership_and_s_corp_losses,All,50000.0,75000.0,True,False,False,337046.0 +2022,Table 1.4,AW,19,total_pension_income,All,50000.0,75000.0,False,False,False,165452006000.0 +2022,Table 1.4,AV,19,total_pension_income,All,50000.0,75000.0,True,False,False,5280824.0 +2022,Table 1.4,AY,19,taxable_pension_income,All,50000.0,75000.0,False,False,False,123924570000.0 +2022,Table 1.4,AX,19,taxable_pension_income,All,50000.0,75000.0,True,False,False,4883689.0 +2022,Table 1.4,EI,19,qualified_business_income_deduction,All,50000.0,75000.0,False,False,False,8711031000.0 +2022,Table 1.4,EH,19,qualified_business_income_deduction,All,50000.0,75000.0,True,False,False,3483624.0 +2022,Table 1.4,AA,19,qualified_dividends,All,50000.0,75000.0,False,False,False,10009937000.0 +2022,Table 1.4,Z,19,qualified_dividends,All,50000.0,75000.0,True,False,False,3682018.0 +2022,Table 1.4,BU,19,s_corporation_net_income,All,50000.0,75000.0,False,False,False,12311632000.0 +2022,Table 1.4,BW,19,s_corporation_net_losses,All,50000.0,75000.0,False,False,False,3737931000.0 +2022,Table 1.4,BT,19,s_corporation_net_income,All,50000.0,75000.0,True,False,False,398335.0 +2022,Table 1.4,BV,19,s_corporation_net_losses,All,50000.0,75000.0,True,False,False,142145.0 +2022,Table 1.4,CK,19,taxable_social_security,All,50000.0,75000.0,False,False,False,78864758000.0 +2022,Table 1.4,CJ,19,taxable_social_security,All,50000.0,75000.0,True,False,False,4637686.0 +2022,Table 1.4,CI,19,total_social_security,All,50000.0,75000.0,False,False,False,118478556000.0 +2022,Table 1.4,CH,19,total_social_security,All,50000.0,75000.0,True,False,False,4638670.0 +2022,Table 1.4,ES,19,income_tax_before_credits,All,50000.0,75000.0,False,False,False,122066429000.0 +2022,Table 1.4,ER,19,income_tax_before_credits,All,50000.0,75000.0,True,False,False,23662648.0 +2022,Table 1.4,U,19,taxable_interest_income,All,50000.0,75000.0,False,False,False,5341764000.0 +2022,Table 1.4,T,19,taxable_interest_income,All,50000.0,75000.0,True,False,False,6774179.0 +2022,Table 1.4,CG,19,unemployment_compensation,All,50000.0,75000.0,False,False,False,4978676000.0 +2022,Table 1.4,CF,19,unemployment_compensation,All,50000.0,75000.0,True,False,False,776781.0 +2022,Table 1.4,G,19,employment_income,All,50000.0,75000.0,False,False,False,1150473333000.0 +2022,Table 1.4,F,19,employment_income,All,50000.0,75000.0,True,False,False,20174516.0 +2022,Table 1.4,EO,20,alternative_minimum_tax,All,75000.0,100000.0,False,False,False,28095000.0 +2022,Table 1.4,EN,20,alternative_minimum_tax,All,75000.0,100000.0,True,False,False,2039.0 +2022,Table 1.4,AG,20,business_net_profits,All,75000.0,100000.0,False,False,False,37229434000.0 +2022,Table 1.4,AI,20,business_net_losses,All,75000.0,100000.0,False,False,False,8340188000.0 +2022,Table 1.4,AF,20,business_net_profits,All,75000.0,100000.0,True,False,False,1647929.0 +2022,Table 1.4,AH,20,business_net_losses,All,75000.0,100000.0,True,False,False,806887.0 +2022,Table 1.4,AK,20,capital_gains_distributions,All,75000.0,100000.0,False,False,False,1359330000.0 +2022,Table 1.4,AJ,20,capital_gains_distributions,All,75000.0,100000.0,True,False,False,523797.0 +2022,Table 1.4,AM,20,capital_gains_gross,All,75000.0,100000.0,False,False,False,14586283000.0 +2022,Table 1.4,AO,20,capital_gains_losses,All,75000.0,100000.0,False,False,False,2905088000.0 +2022,Table 1.4,AL,20,capital_gains_gross,All,75000.0,100000.0,True,False,False,1307848.0 +2022,Table 1.4,AN,20,capital_gains_losses,All,75000.0,100000.0,True,False,False,1406649.0 +2022,Table 1.4,W,20,exempt_interest,All,75000.0,100000.0,False,False,False,2363823000.0 +2022,Table 1.4,V,20,exempt_interest,All,75000.0,100000.0,True,False,False,677301.0 +2022,Table 1.4,AU,20,ira_distributions,All,75000.0,100000.0,False,False,False,44499088000.0 +2022,Table 1.4,AT,20,ira_distributions,All,75000.0,100000.0,True,False,False,2075069.0 +2022,Table 1.4,Y,20,ordinary_dividends,All,75000.0,100000.0,False,False,False,16495243000.0 +2022,Table 1.4,X,20,ordinary_dividends,All,75000.0,100000.0,True,False,False,3649718.0 +2022,Table 1.4,BQ,20,partnership_and_s_corp_income,All,75000.0,100000.0,False,False,False,18119959000.0 +2022,Table 1.4,BS,20,partnership_and_s_corp_losses,All,75000.0,100000.0,False,False,False,5996975000.0 +2022,Table 1.4,BP,20,partnership_and_s_corp_income,All,75000.0,100000.0,True,False,False,563664.0 +2022,Table 1.4,BR,20,partnership_and_s_corp_losses,All,75000.0,100000.0,True,False,False,277674.0 +2022,Table 1.4,AW,20,total_pension_income,All,75000.0,100000.0,False,False,False,179611887000.0 +2022,Table 1.4,AV,20,total_pension_income,All,75000.0,100000.0,True,False,False,4323974.0 +2022,Table 1.4,AY,20,taxable_pension_income,All,75000.0,100000.0,False,False,False,128997640000.0 +2022,Table 1.4,AX,20,taxable_pension_income,All,75000.0,100000.0,True,False,False,3956479.0 +2022,Table 1.4,EI,20,qualified_business_income_deduction,All,75000.0,100000.0,False,False,False,8485129000.0 +2022,Table 1.4,EH,20,qualified_business_income_deduction,All,75000.0,100000.0,True,False,False,2813016.0 +2022,Table 1.4,AA,20,qualified_dividends,All,75000.0,100000.0,False,False,False,11386257000.0 +2022,Table 1.4,Z,20,qualified_dividends,All,75000.0,100000.0,True,False,False,3402060.0 +2022,Table 1.4,BU,20,s_corporation_net_income,All,75000.0,100000.0,False,False,False,12098356000.0 +2022,Table 1.4,BW,20,s_corporation_net_losses,All,75000.0,100000.0,False,False,False,3147742000.0 +2022,Table 1.4,BT,20,s_corporation_net_income,All,75000.0,100000.0,True,False,False,310902.0 +2022,Table 1.4,BV,20,s_corporation_net_losses,All,75000.0,100000.0,True,False,False,130525.0 +2022,Table 1.4,CK,20,taxable_social_security,All,75000.0,100000.0,False,False,False,78886207000.0 +2022,Table 1.4,CJ,20,taxable_social_security,All,75000.0,100000.0,True,False,False,3479283.0 +2022,Table 1.4,CI,20,total_social_security,All,75000.0,100000.0,False,False,False,98175681000.0 +2022,Table 1.4,CH,20,total_social_security,All,75000.0,100000.0,True,False,False,3481308.0 +2022,Table 1.4,ES,20,income_tax_before_credits,All,75000.0,100000.0,False,False,False,131394004000.0 +2022,Table 1.4,ER,20,income_tax_before_credits,All,75000.0,100000.0,True,False,False,15123515.0 +2022,Table 1.4,U,20,taxable_interest_income,All,75000.0,100000.0,False,False,False,4965163000.0 +2022,Table 1.4,T,20,taxable_interest_income,All,75000.0,100000.0,True,False,False,5800861.0 +2022,Table 1.4,CG,20,unemployment_compensation,All,75000.0,100000.0,False,False,False,3087608000.0 +2022,Table 1.4,CF,20,unemployment_compensation,All,75000.0,100000.0,True,False,False,511954.0 +2022,Table 1.4,G,20,employment_income,All,75000.0,100000.0,False,False,False,987573283000.0 +2022,Table 1.4,F,20,employment_income,All,75000.0,100000.0,True,False,False,12691167.0 +2022,Table 1.4,EO,21,alternative_minimum_tax,All,100000.0,200000.0,False,False,False,110219000.0 +2022,Table 1.4,EN,21,alternative_minimum_tax,All,100000.0,200000.0,True,False,False,15081.0 +2022,Table 1.4,AG,21,business_net_profits,All,100000.0,200000.0,False,False,False,102878354000.0 +2022,Table 1.4,AI,21,business_net_losses,All,100000.0,200000.0,False,False,False,17942473000.0 +2022,Table 1.4,AF,21,business_net_profits,All,100000.0,200000.0,True,False,False,3325549.0 +2022,Table 1.4,AH,21,business_net_losses,All,100000.0,200000.0,True,False,False,1501233.0 +2022,Table 1.4,AK,21,capital_gains_distributions,All,100000.0,200000.0,False,False,False,4073791000.0 +2022,Table 1.4,AJ,21,capital_gains_distributions,All,100000.0,200000.0,True,False,False,1191091.0 +2022,Table 1.4,AM,21,capital_gains_gross,All,100000.0,200000.0,False,False,False,69765168000.0 +2022,Table 1.4,AO,21,capital_gains_losses,All,100000.0,200000.0,False,False,False,7466456000.0 +2022,Table 1.4,AL,21,capital_gains_gross,All,100000.0,200000.0,True,False,False,3616111.0 +2022,Table 1.4,AN,21,capital_gains_losses,All,100000.0,200000.0,True,False,False,3526750.0 +2022,Table 1.4,W,21,exempt_interest,All,100000.0,200000.0,False,False,False,8746815000.0 +2022,Table 1.4,V,21,exempt_interest,All,100000.0,200000.0,True,False,False,1909389.0 +2022,Table 1.4,AU,21,ira_distributions,All,100000.0,200000.0,False,False,False,146268928000.0 +2022,Table 1.4,AT,21,ira_distributions,All,100000.0,200000.0,True,False,False,4441475.0 +2022,Table 1.4,Y,21,ordinary_dividends,All,100000.0,200000.0,False,False,False,58133031000.0 +2022,Table 1.4,X,21,ordinary_dividends,All,100000.0,200000.0,True,False,False,9213886.0 +2022,Table 1.4,BQ,21,partnership_and_s_corp_income,All,100000.0,200000.0,False,False,False,81479507000.0 +2022,Table 1.4,BS,21,partnership_and_s_corp_losses,All,100000.0,200000.0,False,False,False,21344122000.0 +2022,Table 1.4,BP,21,partnership_and_s_corp_income,All,100000.0,200000.0,True,False,False,1789868.0 +2022,Table 1.4,BR,21,partnership_and_s_corp_losses,All,100000.0,200000.0,True,False,False,852293.0 +2022,Table 1.4,AW,21,total_pension_income,All,100000.0,200000.0,False,False,False,507229081000.0 +2022,Table 1.4,AV,21,total_pension_income,All,100000.0,200000.0,True,False,False,8204662.0 +2022,Table 1.4,AY,21,taxable_pension_income,All,100000.0,200000.0,False,False,False,326624026000.0 +2022,Table 1.4,AX,21,taxable_pension_income,All,100000.0,200000.0,True,False,False,7404672.0 +2022,Table 1.4,EI,21,qualified_business_income_deduction,All,100000.0,200000.0,False,False,False,31213286000.0 +2022,Table 1.4,EH,21,qualified_business_income_deduction,All,100000.0,200000.0,True,False,False,6872405.0 +2022,Table 1.4,AA,21,qualified_dividends,All,100000.0,200000.0,False,False,False,42106183000.0 +2022,Table 1.4,Z,21,qualified_dividends,All,100000.0,200000.0,True,False,False,8685946.0 +2022,Table 1.4,BU,21,s_corporation_net_income,All,100000.0,200000.0,False,False,False,54285528000.0 +2022,Table 1.4,BW,21,s_corporation_net_losses,All,100000.0,200000.0,False,False,False,10258755000.0 +2022,Table 1.4,BT,21,s_corporation_net_income,All,100000.0,200000.0,True,False,False,1015075.0 +2022,Table 1.4,BV,21,s_corporation_net_losses,All,100000.0,200000.0,True,False,False,365653.0 +2022,Table 1.4,CK,21,taxable_social_security,All,100000.0,200000.0,False,False,False,171524062000.0 +2022,Table 1.4,CJ,21,taxable_social_security,All,100000.0,200000.0,True,False,False,5998511.0 +2022,Table 1.4,CI,21,total_social_security,All,100000.0,200000.0,False,False,False,202495359000.0 +2022,Table 1.4,CH,21,total_social_security,All,100000.0,200000.0,True,False,False,6002667.0 +2022,Table 1.4,ES,21,income_tax_before_credits,All,100000.0,200000.0,False,False,False,439843814000.0 +2022,Table 1.4,ER,21,income_tax_before_credits,All,100000.0,200000.0,True,False,False,25829887.0 +2022,Table 1.4,U,21,taxable_interest_income,All,100000.0,200000.0,False,False,False,17661595000.0 +2022,Table 1.4,T,21,taxable_interest_income,All,100000.0,200000.0,True,False,False,13454221.0 +2022,Table 1.4,CG,21,unemployment_compensation,All,100000.0,200000.0,False,False,False,5240219000.0 +2022,Table 1.4,CF,21,unemployment_compensation,All,100000.0,200000.0,True,False,False,817583.0 +2022,Table 1.4,G,21,employment_income,All,100000.0,200000.0,False,False,False,2619600305000.0 +2022,Table 1.4,F,21,employment_income,All,100000.0,200000.0,True,False,False,21959412.0 +2022,Table 1.4,EO,22,alternative_minimum_tax,All,200000.0,500000.0,False,False,False,695476000.0 +2022,Table 1.4,EN,22,alternative_minimum_tax,All,200000.0,500000.0,True,False,False,39907.0 +2022,Table 1.4,AG,22,business_net_profits,All,200000.0,500000.0,False,False,False,103480907000.0 +2022,Table 1.4,AI,22,business_net_losses,All,200000.0,500000.0,False,False,False,10344497000.0 +2022,Table 1.4,AF,22,business_net_profits,All,200000.0,500000.0,True,False,False,1614884.0 +2022,Table 1.4,AH,22,business_net_losses,All,200000.0,500000.0,True,False,False,589269.0 +2022,Table 1.4,AK,22,capital_gains_distributions,All,200000.0,500000.0,False,False,False,3461697000.0 +2022,Table 1.4,AJ,22,capital_gains_distributions,All,200000.0,500000.0,True,False,False,522256.0 +2022,Table 1.4,AM,22,capital_gains_gross,All,200000.0,500000.0,False,False,False,150434000000.0 +2022,Table 1.4,AO,22,capital_gains_losses,All,200000.0,500000.0,False,False,False,5705378000.0 +2022,Table 1.4,AL,22,capital_gains_gross,All,200000.0,500000.0,True,False,False,2796324.0 +2022,Table 1.4,AN,22,capital_gains_losses,All,200000.0,500000.0,True,False,False,2479090.0 +2022,Table 1.4,W,22,exempt_interest,All,200000.0,500000.0,False,False,False,12714183000.0 +2022,Table 1.4,V,22,exempt_interest,All,200000.0,500000.0,True,False,False,1588632.0 +2022,Table 1.4,AU,22,ira_distributions,All,200000.0,500000.0,False,False,False,118094434000.0 +2022,Table 1.4,AT,22,ira_distributions,All,200000.0,500000.0,True,False,False,1909850.0 +2022,Table 1.4,Y,22,ordinary_dividends,All,200000.0,500000.0,False,False,False,83427872000.0 +2022,Table 1.4,X,22,ordinary_dividends,All,200000.0,500000.0,True,False,False,5982187.0 +2022,Table 1.4,BQ,22,partnership_and_s_corp_income,All,200000.0,500000.0,False,False,False,198668939000.0 +2022,Table 1.4,BS,22,partnership_and_s_corp_losses,All,200000.0,500000.0,False,False,False,28863396000.0 +2022,Table 1.4,BP,22,partnership_and_s_corp_income,All,200000.0,500000.0,True,False,False,1894411.0 +2022,Table 1.4,BR,22,partnership_and_s_corp_losses,All,200000.0,500000.0,True,False,False,710505.0 +2022,Table 1.4,AW,22,total_pension_income,All,200000.0,500000.0,False,False,False,319047092000.0 +2022,Table 1.4,AV,22,total_pension_income,All,200000.0,500000.0,True,False,False,2991496.0 +2022,Table 1.4,AY,22,taxable_pension_income,All,200000.0,500000.0,False,False,False,153405814000.0 +2022,Table 1.4,AX,22,taxable_pension_income,All,200000.0,500000.0,True,False,False,2466379.0 +2022,Table 1.4,EI,22,qualified_business_income_deduction,All,200000.0,500000.0,False,False,False,43295660000.0 +2022,Table 1.4,EH,22,qualified_business_income_deduction,All,200000.0,500000.0,True,False,False,4517126.0 +2022,Table 1.4,AA,22,qualified_dividends,All,200000.0,500000.0,False,False,False,64535479000.0 +2022,Table 1.4,Z,22,qualified_dividends,All,200000.0,500000.0,True,False,False,5737299.0 +2022,Table 1.4,BU,22,s_corporation_net_income,All,200000.0,500000.0,False,False,False,127744318000.0 +2022,Table 1.4,BW,22,s_corporation_net_losses,All,200000.0,500000.0,False,False,False,10948036000.0 +2022,Table 1.4,BT,22,s_corporation_net_income,All,200000.0,500000.0,True,False,False,1046308.0 +2022,Table 1.4,BV,22,s_corporation_net_losses,All,200000.0,500000.0,True,False,False,240902.0 +2022,Table 1.4,CK,22,taxable_social_security,All,200000.0,500000.0,False,False,False,62981505000.0 +2022,Table 1.4,CJ,22,taxable_social_security,All,200000.0,500000.0,True,False,False,1908375.0 +2022,Table 1.4,CI,22,total_social_security,All,200000.0,500000.0,False,False,False,74138027000.0 +2022,Table 1.4,CH,22,total_social_security,All,200000.0,500000.0,True,False,False,1910013.0 +2022,Table 1.4,ES,22,income_tax_before_credits,All,200000.0,500000.0,False,False,False,500320082000.0 +2022,Table 1.4,ER,22,income_tax_before_credits,All,200000.0,500000.0,True,False,False,10008079.0 +2022,Table 1.4,U,22,taxable_interest_income,All,200000.0,500000.0,False,False,False,20375918000.0 +2022,Table 1.4,T,22,taxable_interest_income,All,200000.0,500000.0,True,False,False,7280415.0 +2022,Table 1.4,CG,22,unemployment_compensation,All,200000.0,500000.0,False,False,False,1691302000.0 +2022,Table 1.4,CF,22,unemployment_compensation,All,200000.0,500000.0,True,False,False,215466.0 +2022,Table 1.4,G,22,employment_income,All,200000.0,500000.0,False,False,False,2010514162000.0 +2022,Table 1.4,F,22,employment_income,All,200000.0,500000.0,True,False,False,8723740.0 +2022,Table 1.4,EO,23,alternative_minimum_tax,All,500000.0,1000000.0,False,False,False,641456000.0 +2022,Table 1.4,EN,23,alternative_minimum_tax,All,500000.0,1000000.0,True,False,False,31511.0 +2022,Table 1.4,AG,23,business_net_profits,All,500000.0,1000000.0,False,False,False,43196167000.0 +2022,Table 1.4,AI,23,business_net_losses,All,500000.0,1000000.0,False,False,False,3813934000.0 +2022,Table 1.4,AF,23,business_net_profits,All,500000.0,1000000.0,True,False,False,316777.0 +2022,Table 1.4,AH,23,business_net_losses,All,500000.0,1000000.0,True,False,False,105357.0 +2022,Table 1.4,AK,23,capital_gains_distributions,All,500000.0,1000000.0,False,False,False,951661000.0 +2022,Table 1.4,AJ,23,capital_gains_distributions,All,500000.0,1000000.0,True,False,False,78163.0 +2022,Table 1.4,AM,23,capital_gains_gross,All,500000.0,1000000.0,False,False,False,122254903000.0 +2022,Table 1.4,AO,23,capital_gains_losses,All,500000.0,1000000.0,False,False,False,1467163000.0 +2022,Table 1.4,AL,23,capital_gains_gross,All,500000.0,1000000.0,True,False,False,716042.0 +2022,Table 1.4,AN,23,capital_gains_losses,All,500000.0,1000000.0,True,False,False,561543.0 +2022,Table 1.4,W,23,exempt_interest,All,500000.0,1000000.0,False,False,False,7368520000.0 +2022,Table 1.4,V,23,exempt_interest,All,500000.0,1000000.0,True,False,False,485091.0 +2022,Table 1.4,AU,23,ira_distributions,All,500000.0,1000000.0,False,False,False,27676430000.0 +2022,Table 1.4,AT,23,ira_distributions,All,500000.0,1000000.0,True,False,False,303601.0 +2022,Table 1.4,Y,23,ordinary_dividends,All,500000.0,1000000.0,False,False,False,47800937000.0 +2022,Table 1.4,X,23,ordinary_dividends,All,500000.0,1000000.0,True,False,False,1317721.0 +2022,Table 1.4,BQ,23,partnership_and_s_corp_income,All,500000.0,1000000.0,False,False,False,187105966000.0 +2022,Table 1.4,BS,23,partnership_and_s_corp_losses,All,500000.0,1000000.0,False,False,False,19608707000.0 +2022,Table 1.4,BP,23,partnership_and_s_corp_income,All,500000.0,1000000.0,True,False,False,729501.0 +2022,Table 1.4,BR,23,partnership_and_s_corp_losses,All,500000.0,1000000.0,True,False,False,239177.0 +2022,Table 1.4,AW,23,total_pension_income,All,500000.0,1000000.0,False,False,False,66577278000.0 +2022,Table 1.4,AV,23,total_pension_income,All,500000.0,1000000.0,True,False,False,412073.0 +2022,Table 1.4,AY,23,taxable_pension_income,All,500000.0,1000000.0,False,False,False,21980856000.0 +2022,Table 1.4,AX,23,taxable_pension_income,All,500000.0,1000000.0,True,False,False,290436.0 +2022,Table 1.4,EI,23,qualified_business_income_deduction,All,500000.0,1000000.0,False,False,False,20878540000.0 +2022,Table 1.4,EH,23,qualified_business_income_deduction,All,500000.0,1000000.0,True,False,False,994968.0 +2022,Table 1.4,AA,23,qualified_dividends,All,500000.0,1000000.0,False,False,False,37096245000.0 +2022,Table 1.4,Z,23,qualified_dividends,All,500000.0,1000000.0,True,False,False,1273494.0 +2022,Table 1.4,BU,23,s_corporation_net_income,All,500000.0,1000000.0,False,False,False,111710531000.0 +2022,Table 1.4,BW,23,s_corporation_net_losses,All,500000.0,1000000.0,False,False,False,5599460000.0 +2022,Table 1.4,BT,23,s_corporation_net_income,All,500000.0,1000000.0,True,False,False,365639.0 +2022,Table 1.4,BV,23,s_corporation_net_losses,All,500000.0,1000000.0,True,False,False,66468.0 +2022,Table 1.4,CK,23,taxable_social_security,All,500000.0,1000000.0,False,False,False,10628872000.0 +2022,Table 1.4,CJ,23,taxable_social_security,All,500000.0,1000000.0,True,False,False,299809.0 +2022,Table 1.4,CI,23,total_social_security,All,500000.0,1000000.0,False,False,False,12508307000.0 +2022,Table 1.4,CH,23,total_social_security,All,500000.0,1000000.0,True,False,False,299988.0 +2022,Table 1.4,ES,23,income_tax_before_credits,All,500000.0,1000000.0,False,False,False,260437884000.0 +2022,Table 1.4,ER,23,income_tax_before_credits,All,500000.0,1000000.0,True,False,False,1672422.0 +2022,Table 1.4,U,23,taxable_interest_income,All,500000.0,1000000.0,False,False,False,11558538000.0 +2022,Table 1.4,T,23,taxable_interest_income,All,500000.0,1000000.0,True,False,False,1476964.0 +2022,Table 1.4,CG,23,unemployment_compensation,All,500000.0,1000000.0,False,False,False,182568000.0 +2022,Table 1.4,CF,23,unemployment_compensation,All,500000.0,1000000.0,True,False,False,20982.0 +2022,Table 1.4,G,23,employment_income,All,500000.0,1000000.0,False,False,False,652360162000.0 +2022,Table 1.4,F,23,employment_income,All,500000.0,1000000.0,True,False,False,1436001.0 +2022,Table 1.4,EO,24,alternative_minimum_tax,All,1000000.0,1500000.0,False,False,False,518268000.0 +2022,Table 1.4,EN,24,alternative_minimum_tax,All,1000000.0,1500000.0,True,False,False,27826.0 +2022,Table 1.4,AG,24,business_net_profits,All,1000000.0,1500000.0,False,False,False,15635538000.0 +2022,Table 1.4,AI,24,business_net_losses,All,1000000.0,1500000.0,False,False,False,1560220000.0 +2022,Table 1.4,AF,24,business_net_profits,All,1000000.0,1500000.0,True,False,False,71381.0 +2022,Table 1.4,AH,24,business_net_losses,All,1000000.0,1500000.0,True,False,False,23767.0 +2022,Table 1.4,AK,24,capital_gains_distributions,All,1000000.0,1500000.0,False,False,False,0.0 +2022,Table 1.4,AJ,24,capital_gains_distributions,All,1000000.0,1500000.0,True,False,False,0.0 +2022,Table 1.4,AM,24,capital_gains_gross,All,1000000.0,1500000.0,False,False,False,68052040000.0 +2022,Table 1.4,AO,24,capital_gains_losses,All,1000000.0,1500000.0,False,False,False,350146000.0 +2022,Table 1.4,AL,24,capital_gains_gross,All,1000000.0,1500000.0,True,False,False,183121.0 +2022,Table 1.4,AN,24,capital_gains_losses,All,1000000.0,1500000.0,True,False,False,126982.0 +2022,Table 1.4,W,24,exempt_interest,All,1000000.0,1500000.0,False,False,False,3438200000.0 +2022,Table 1.4,V,24,exempt_interest,All,1000000.0,1500000.0,True,False,False,139181.0 +2022,Table 1.4,AU,24,ira_distributions,All,1000000.0,1500000.0,False,False,False,6463776000.0 +2022,Table 1.4,AT,24,ira_distributions,All,1000000.0,1500000.0,True,False,False,60854.0 +2022,Table 1.4,Y,24,ordinary_dividends,All,1000000.0,1500000.0,False,False,False,21561868000.0 +2022,Table 1.4,X,24,ordinary_dividends,All,1000000.0,1500000.0,True,False,False,308547.0 +2022,Table 1.4,BQ,24,partnership_and_s_corp_income,All,1000000.0,1500000.0,False,False,False,109620135000.0 +2022,Table 1.4,BS,24,partnership_and_s_corp_losses,All,1000000.0,1500000.0,False,False,False,10144344000.0 +2022,Table 1.4,BP,24,partnership_and_s_corp_income,All,1000000.0,1500000.0,True,False,False,228920.0 +2022,Table 1.4,BR,24,partnership_and_s_corp_losses,All,1000000.0,1500000.0,True,False,False,71480.0 +2022,Table 1.4,AW,24,total_pension_income,All,1000000.0,1500000.0,False,False,False,18042784000.0 +2022,Table 1.4,AV,24,total_pension_income,All,1000000.0,1500000.0,True,False,False,85028.0 +2022,Table 1.4,AY,24,taxable_pension_income,All,1000000.0,1500000.0,False,False,False,4646272000.0 +2022,Table 1.4,AX,24,taxable_pension_income,All,1000000.0,1500000.0,True,False,False,56206.0 +2022,Table 1.4,EI,24,qualified_business_income_deduction,All,1000000.0,1500000.0,False,False,False,11914987000.0 +2022,Table 1.4,EH,24,qualified_business_income_deduction,All,1000000.0,1500000.0,True,False,False,254883.0 +2022,Table 1.4,AA,24,qualified_dividends,All,1000000.0,1500000.0,False,False,False,16687226000.0 +2022,Table 1.4,Z,24,qualified_dividends,All,1000000.0,1500000.0,True,False,False,298612.0 +2022,Table 1.4,BU,24,s_corporation_net_income,All,1000000.0,1500000.0,False,False,False,64784994000.0 +2022,Table 1.4,BW,24,s_corporation_net_losses,All,1000000.0,1500000.0,False,False,False,2691171000.0 +2022,Table 1.4,BT,24,s_corporation_net_income,All,1000000.0,1500000.0,True,False,False,108812.0 +2022,Table 1.4,BV,24,s_corporation_net_losses,All,1000000.0,1500000.0,True,False,False,18252.0 +2022,Table 1.4,CK,24,taxable_social_security,All,1000000.0,1500000.0,False,False,False,2420263000.0 +2022,Table 1.4,CJ,24,taxable_social_security,All,1000000.0,1500000.0,True,False,False,67263.0 +2022,Table 1.4,CI,24,total_social_security,All,1000000.0,1500000.0,False,False,False,2847599000.0 +2022,Table 1.4,CH,24,total_social_security,All,1000000.0,1500000.0,True,False,False,67304.0 +2022,Table 1.4,ES,24,income_tax_before_credits,All,1000000.0,1500000.0,False,False,False,113951006000.0 +2022,Table 1.4,ER,24,income_tax_before_credits,All,1000000.0,1500000.0,True,False,False,360600.0 +2022,Table 1.4,U,24,taxable_interest_income,All,1000000.0,1500000.0,False,False,False,6183046000.0 +2022,Table 1.4,T,24,taxable_interest_income,All,1000000.0,1500000.0,True,False,False,339954.0 +2022,Table 1.4,CG,24,unemployment_compensation,All,1000000.0,1500000.0,False,False,False,30487000.0 +2022,Table 1.4,CF,24,unemployment_compensation,All,1000000.0,1500000.0,True,False,False,3694.0 +2022,Table 1.4,G,24,employment_income,All,1000000.0,1500000.0,False,False,False,201078168000.0 +2022,Table 1.4,F,24,employment_income,All,1000000.0,1500000.0,True,False,False,300870.0 +2022,Table 1.4,EO,25,alternative_minimum_tax,All,1500000.0,2000000.0,False,False,False,476876000.0 +2022,Table 1.4,EN,25,alternative_minimum_tax,All,1500000.0,2000000.0,True,False,False,23214.0 +2022,Table 1.4,AG,25,business_net_profits,All,1500000.0,2000000.0,False,False,False,8068249000.0 +2022,Table 1.4,AI,25,business_net_losses,All,1500000.0,2000000.0,False,False,False,961547000.0 +2022,Table 1.4,AF,25,business_net_profits,All,1500000.0,2000000.0,True,False,False,30837.0 +2022,Table 1.4,AH,25,business_net_losses,All,1500000.0,2000000.0,True,False,False,9380.0 +2022,Table 1.4,AK,25,capital_gains_distributions,All,1500000.0,2000000.0,False,False,False,0.0 +2022,Table 1.4,AJ,25,capital_gains_distributions,All,1500000.0,2000000.0,True,False,False,0.0 +2022,Table 1.4,AM,25,capital_gains_gross,All,1500000.0,2000000.0,False,False,False,45324707000.0 +2022,Table 1.4,AO,25,capital_gains_losses,All,1500000.0,2000000.0,False,False,False,143678000.0 +2022,Table 1.4,AL,25,capital_gains_gross,All,1500000.0,2000000.0,True,False,False,79790.0 +2022,Table 1.4,AN,25,capital_gains_losses,All,1500000.0,2000000.0,True,False,False,51411.0 +2022,Table 1.4,W,25,exempt_interest,All,1500000.0,2000000.0,False,False,False,2293946000.0 +2022,Table 1.4,V,25,exempt_interest,All,1500000.0,2000000.0,True,False,False,64081.0 +2022,Table 1.4,AU,25,ira_distributions,All,1500000.0,2000000.0,False,False,False,2784109000.0 +2022,Table 1.4,AT,25,ira_distributions,All,1500000.0,2000000.0,True,False,False,24263.0 +2022,Table 1.4,Y,25,ordinary_dividends,All,1500000.0,2000000.0,False,False,False,13893099000.0 +2022,Table 1.4,X,25,ordinary_dividends,All,1500000.0,2000000.0,True,False,False,129569.0 +2022,Table 1.4,BQ,25,partnership_and_s_corp_income,All,1500000.0,2000000.0,False,False,False,75732635000.0 +2022,Table 1.4,BS,25,partnership_and_s_corp_losses,All,1500000.0,2000000.0,False,False,False,7144908000.0 +2022,Table 1.4,BP,25,partnership_and_s_corp_income,All,1500000.0,2000000.0,True,False,False,106274.0 +2022,Table 1.4,BR,25,partnership_and_s_corp_losses,All,1500000.0,2000000.0,True,False,False,34842.0 +2022,Table 1.4,AW,25,total_pension_income,All,1500000.0,2000000.0,False,False,False,7211207000.0 +2022,Table 1.4,AV,25,total_pension_income,All,1500000.0,2000000.0,True,False,False,34671.0 +2022,Table 1.4,AY,25,taxable_pension_income,All,1500000.0,2000000.0,False,False,False,2023264000.0 +2022,Table 1.4,AX,25,taxable_pension_income,All,1500000.0,2000000.0,True,False,False,23738.0 +2022,Table 1.4,EI,25,qualified_business_income_deduction,All,1500000.0,2000000.0,False,False,False,8737822000.0 +2022,Table 1.4,EH,25,qualified_business_income_deduction,All,1500000.0,2000000.0,True,False,False,111485.0 +2022,Table 1.4,AA,25,qualified_dividends,All,1500000.0,2000000.0,False,False,False,10708071000.0 +2022,Table 1.4,Z,25,qualified_dividends,All,1500000.0,2000000.0,True,False,False,126287.0 +2022,Table 1.4,BU,25,s_corporation_net_income,All,1500000.0,2000000.0,False,False,False,45248962000.0 +2022,Table 1.4,BW,25,s_corporation_net_losses,All,1500000.0,2000000.0,False,False,False,1589080000.0 +2022,Table 1.4,BT,25,s_corporation_net_income,All,1500000.0,2000000.0,True,False,False,51323.0 +2022,Table 1.4,BV,25,s_corporation_net_losses,All,1500000.0,2000000.0,True,False,False,8370.0 +2022,Table 1.4,CK,25,taxable_social_security,All,1500000.0,2000000.0,False,False,False,1019752000.0 +2022,Table 1.4,CJ,25,taxable_social_security,All,1500000.0,2000000.0,True,False,False,27760.0 +2022,Table 1.4,CI,25,total_social_security,All,1500000.0,2000000.0,False,False,False,1201194000.0 +2022,Table 1.4,CH,25,total_social_security,All,1500000.0,2000000.0,True,False,False,27809.0 +2022,Table 1.4,ES,25,income_tax_before_credits,All,1500000.0,2000000.0,False,False,False,69393007000.0 +2022,Table 1.4,ER,25,income_tax_before_credits,All,1500000.0,2000000.0,True,False,False,148061.0 +2022,Table 1.4,U,25,taxable_interest_income,All,1500000.0,2000000.0,False,False,False,4095630000.0 +2022,Table 1.4,T,25,taxable_interest_income,All,1500000.0,2000000.0,True,False,False,141749.0 +2022,Table 1.4,CG,25,unemployment_compensation,All,1500000.0,2000000.0,False,False,False,6834000.0 +2022,Table 1.4,CF,25,unemployment_compensation,All,1500000.0,2000000.0,True,False,False,856.0 +2022,Table 1.4,G,25,employment_income,All,1500000.0,2000000.0,False,False,False,101222017000.0 +2022,Table 1.4,F,25,employment_income,All,1500000.0,2000000.0,True,False,False,121422.0 +2022,Table 1.4,EO,26,alternative_minimum_tax,All,2000000.0,5000000.0,False,False,False,739425000.0 +2022,Table 1.4,EN,26,alternative_minimum_tax,All,2000000.0,5000000.0,True,False,False,35322.0 +2022,Table 1.4,AG,26,business_net_profits,All,2000000.0,5000000.0,False,False,False,15476265000.0 +2022,Table 1.4,AI,26,business_net_losses,All,2000000.0,5000000.0,False,False,False,2413058000.0 +2022,Table 1.4,AF,26,business_net_profits,All,2000000.0,5000000.0,True,False,False,39323.0 +2022,Table 1.4,AH,26,business_net_losses,All,2000000.0,5000000.0,True,False,False,14471.0 +2022,Table 1.4,AK,26,capital_gains_distributions,All,2000000.0,5000000.0,False,False,False,0.0 +2022,Table 1.4,AJ,26,capital_gains_distributions,All,2000000.0,5000000.0,True,False,False,0.0 +2022,Table 1.4,AM,26,capital_gains_gross,All,2000000.0,5000000.0,False,False,False,145075477000.0 +2022,Table 1.4,AO,26,capital_gains_losses,All,2000000.0,5000000.0,False,False,False,200629000.0 +2022,Table 1.4,AL,26,capital_gains_gross,All,2000000.0,5000000.0,True,False,False,119204.0 +2022,Table 1.4,AN,26,capital_gains_losses,All,2000000.0,5000000.0,True,False,False,70293.0 +2022,Table 1.4,W,26,exempt_interest,All,2000000.0,5000000.0,False,False,False,5199540000.0 +2022,Table 1.4,V,26,exempt_interest,All,2000000.0,5000000.0,True,False,False,103702.0 +2022,Table 1.4,AU,26,ira_distributions,All,2000000.0,5000000.0,False,False,False,4999976000.0 +2022,Table 1.4,AT,26,ira_distributions,All,2000000.0,5000000.0,True,False,False,35091.0 +2022,Table 1.4,Y,26,ordinary_dividends,All,2000000.0,5000000.0,False,False,False,36124960000.0 +2022,Table 1.4,X,26,ordinary_dividends,All,2000000.0,5000000.0,True,False,False,184183.0 +2022,Table 1.4,BQ,26,partnership_and_s_corp_income,All,2000000.0,5000000.0,False,False,False,196496410000.0 +2022,Table 1.4,BS,26,partnership_and_s_corp_losses,All,2000000.0,5000000.0,False,False,False,19643937000.0 +2022,Table 1.4,BP,26,partnership_and_s_corp_income,All,2000000.0,5000000.0,True,False,False,165056.0 +2022,Table 1.4,BR,26,partnership_and_s_corp_losses,All,2000000.0,5000000.0,True,False,False,59255.0 +2022,Table 1.4,AW,26,total_pension_income,All,2000000.0,5000000.0,False,False,False,13141378000.0 +2022,Table 1.4,AV,26,total_pension_income,All,2000000.0,5000000.0,True,False,False,46735.0 +2022,Table 1.4,AY,26,taxable_pension_income,All,2000000.0,5000000.0,False,False,False,2543726000.0 +2022,Table 1.4,AX,26,taxable_pension_income,All,2000000.0,5000000.0,True,False,False,31713.0 +2022,Table 1.4,EI,26,qualified_business_income_deduction,All,2000000.0,5000000.0,False,False,False,24115347000.0 +2022,Table 1.4,EH,26,qualified_business_income_deduction,All,2000000.0,5000000.0,True,False,False,159860.0 +2022,Table 1.4,AA,26,qualified_dividends,All,2000000.0,5000000.0,False,False,False,27882261000.0 +2022,Table 1.4,Z,26,qualified_dividends,All,2000000.0,5000000.0,True,False,False,179434.0 +2022,Table 1.4,BU,26,s_corporation_net_income,All,2000000.0,5000000.0,False,False,False,121207183000.0 +2022,Table 1.4,BW,26,s_corporation_net_losses,All,2000000.0,5000000.0,False,False,False,4769442000.0 +2022,Table 1.4,BT,26,s_corporation_net_income,All,2000000.0,5000000.0,True,False,False,78168.0 +2022,Table 1.4,BV,26,s_corporation_net_losses,All,2000000.0,5000000.0,True,False,False,14792.0 +2022,Table 1.4,CK,26,taxable_social_security,All,2000000.0,5000000.0,False,False,False,1531738000.0 +2022,Table 1.4,CJ,26,taxable_social_security,All,2000000.0,5000000.0,True,False,False,40927.0 +2022,Table 1.4,CI,26,total_social_security,All,2000000.0,5000000.0,False,False,False,1802248000.0 +2022,Table 1.4,CH,26,total_social_security,All,2000000.0,5000000.0,True,False,False,40937.0 +2022,Table 1.4,ES,26,income_tax_before_credits,All,2000000.0,5000000.0,False,False,False,171945771000.0 +2022,Table 1.4,ER,26,income_tax_before_credits,All,2000000.0,5000000.0,True,False,False,207907.0 +2022,Table 1.4,U,26,taxable_interest_income,All,2000000.0,5000000.0,False,False,False,12342959000.0 +2022,Table 1.4,T,26,taxable_interest_income,All,2000000.0,5000000.0,True,False,False,201919.0 +2022,Table 1.4,CG,26,unemployment_compensation,All,2000000.0,5000000.0,False,False,False,8058000.0 +2022,Table 1.4,CF,26,unemployment_compensation,All,2000000.0,5000000.0,True,False,False,993.0 +2022,Table 1.4,G,26,employment_income,All,2000000.0,5000000.0,False,False,False,202143391000.0 +2022,Table 1.4,F,26,employment_income,All,2000000.0,5000000.0,True,False,False,168281.0 +2022,Table 1.4,EO,27,alternative_minimum_tax,All,5000000.0,10000000.0,False,False,False,239748000.0 +2022,Table 1.4,EN,27,alternative_minimum_tax,All,5000000.0,10000000.0,True,False,False,8587.0 +2022,Table 1.4,AG,27,business_net_profits,All,5000000.0,10000000.0,False,False,False,6585206000.0 +2022,Table 1.4,AI,27,business_net_losses,All,5000000.0,10000000.0,False,False,False,1394148000.0 +2022,Table 1.4,AF,27,business_net_profits,All,5000000.0,10000000.0,True,False,False,9772.0 +2022,Table 1.4,AH,27,business_net_losses,All,5000000.0,10000000.0,True,False,False,4170.0 +2022,Table 1.4,AK,27,capital_gains_distributions,All,5000000.0,10000000.0,False,False,False,0.0 +2022,Table 1.4,AJ,27,capital_gains_distributions,All,5000000.0,10000000.0,True,False,False,0.0 +2022,Table 1.4,AM,27,capital_gains_gross,All,5000000.0,10000000.0,False,False,False,109907460000.0 +2022,Table 1.4,AO,27,capital_gains_losses,All,5000000.0,10000000.0,False,False,False,48564000.0 +2022,Table 1.4,AL,27,capital_gains_gross,All,5000000.0,10000000.0,True,False,False,33310.0 +2022,Table 1.4,AN,27,capital_gains_losses,All,5000000.0,10000000.0,True,False,False,16807.0 +2022,Table 1.4,W,27,exempt_interest,All,5000000.0,10000000.0,False,False,False,2706049000.0 +2022,Table 1.4,V,27,exempt_interest,All,5000000.0,10000000.0,True,False,False,30837.0 +2022,Table 1.4,AU,27,ira_distributions,All,5000000.0,10000000.0,False,False,False,1580337000.0 +2022,Table 1.4,AT,27,ira_distributions,All,5000000.0,10000000.0,True,False,False,8317.0 +2022,Table 1.4,Y,27,ordinary_dividends,All,5000000.0,10000000.0,False,False,False,21509269000.0 +2022,Table 1.4,X,27,ordinary_dividends,All,5000000.0,10000000.0,True,False,False,48494.0 +2022,Table 1.4,BQ,27,partnership_and_s_corp_income,All,5000000.0,10000000.0,False,False,False,114302392000.0 +2022,Table 1.4,BS,27,partnership_and_s_corp_losses,All,5000000.0,10000000.0,False,False,False,12723898000.0 +2022,Table 1.4,BP,27,partnership_and_s_corp_income,All,5000000.0,10000000.0,True,False,False,46077.0 +2022,Table 1.4,BR,27,partnership_and_s_corp_losses,All,5000000.0,10000000.0,True,False,False,17926.0 +2022,Table 1.4,AW,27,total_pension_income,All,5000000.0,10000000.0,False,False,False,4099993000.0 +2022,Table 1.4,AV,27,total_pension_income,All,5000000.0,10000000.0,True,False,False,11735.0 +2022,Table 1.4,AY,27,taxable_pension_income,All,5000000.0,10000000.0,False,False,False,1000482000.0 +2022,Table 1.4,AX,27,taxable_pension_income,All,5000000.0,10000000.0,True,False,False,8093.0 +2022,Table 1.4,EI,27,qualified_business_income_deduction,All,5000000.0,10000000.0,False,False,False,15082798000.0 +2022,Table 1.4,EH,27,qualified_business_income_deduction,All,5000000.0,10000000.0,True,False,False,41720.0 +2022,Table 1.4,AA,27,qualified_dividends,All,5000000.0,10000000.0,False,False,False,16627301000.0 +2022,Table 1.4,Z,27,qualified_dividends,All,5000000.0,10000000.0,True,False,False,47262.0 +2022,Table 1.4,BU,27,s_corporation_net_income,All,5000000.0,10000000.0,False,False,False,72523417000.0 +2022,Table 1.4,BW,27,s_corporation_net_losses,All,5000000.0,10000000.0,False,False,False,2809765000.0 +2022,Table 1.4,BT,27,s_corporation_net_income,All,5000000.0,10000000.0,True,False,False,21350.0 +2022,Table 1.4,BV,27,s_corporation_net_losses,All,5000000.0,10000000.0,True,False,False,4555.0 +2022,Table 1.4,CK,27,taxable_social_security,All,5000000.0,10000000.0,False,False,False,400286000.0 +2022,Table 1.4,CJ,27,taxable_social_security,All,5000000.0,10000000.0,True,False,False,10496.0 +2022,Table 1.4,CI,27,total_social_security,All,5000000.0,10000000.0,False,False,False,470996000.0 +2022,Table 1.4,CH,27,total_social_security,All,5000000.0,10000000.0,True,False,False,10500.0 +2022,Table 1.4,ES,27,income_tax_before_credits,All,5000000.0,10000000.0,False,False,False,100030718000.0 +2022,Table 1.4,ER,27,income_tax_before_credits,All,5000000.0,10000000.0,True,False,False,52914.0 +2022,Table 1.4,U,27,taxable_interest_income,All,5000000.0,10000000.0,False,False,False,8523479000.0 +2022,Table 1.4,T,27,taxable_interest_income,All,5000000.0,10000000.0,True,False,False,51995.0 +2022,Table 1.4,CG,27,unemployment_compensation,All,5000000.0,10000000.0,False,False,False,1618000.0 +2022,Table 1.4,CF,27,unemployment_compensation,All,5000000.0,10000000.0,True,False,False,169.0 +2022,Table 1.4,G,27,employment_income,All,5000000.0,10000000.0,False,False,False,95902801000.0 +2022,Table 1.4,F,27,employment_income,All,5000000.0,10000000.0,True,False,False,42749.0 +2022,Table 1.4,EO,28,alternative_minimum_tax,All,10000000.0,inf,False,False,False,471761000.0 +2022,Table 1.4,EN,28,alternative_minimum_tax,All,10000000.0,inf,True,False,False,6237.0 +2022,Table 1.4,AG,28,business_net_profits,All,10000000.0,inf,False,False,False,10433033000.0 +2022,Table 1.4,AI,28,business_net_losses,All,10000000.0,inf,False,False,False,3360952000.0 +2022,Table 1.4,AF,28,business_net_profits,All,10000000.0,inf,True,False,False,6659.0 +2022,Table 1.4,AH,28,business_net_losses,All,10000000.0,inf,True,False,False,3512.0 +2022,Table 1.4,AK,28,capital_gains_distributions,All,10000000.0,inf,False,False,False,0.0 +2022,Table 1.4,AJ,28,capital_gains_distributions,All,10000000.0,inf,True,False,False,0.0 +2022,Table 1.4,AM,28,capital_gains_gross,All,10000000.0,inf,False,False,False,500991294000.0 +2022,Table 1.4,AO,28,capital_gains_losses,All,10000000.0,inf,False,False,False,24625000.0 +2022,Table 1.4,AL,28,capital_gains_gross,All,10000000.0,inf,True,False,False,25066.0 +2022,Table 1.4,AN,28,capital_gains_losses,All,10000000.0,inf,True,False,False,8508.0 +2022,Table 1.4,W,28,exempt_interest,All,10000000.0,inf,False,False,False,5063762000.0 +2022,Table 1.4,V,28,exempt_interest,All,10000000.0,inf,True,False,False,23117.0 +2022,Table 1.4,AU,28,ira_distributions,All,10000000.0,inf,False,False,False,1592011000.0 +2022,Table 1.4,AT,28,ira_distributions,All,10000000.0,inf,True,False,False,5130.0 +2022,Table 1.4,Y,28,ordinary_dividends,All,10000000.0,inf,False,False,False,75743296000.0 +2022,Table 1.4,X,28,ordinary_dividends,All,10000000.0,inf,True,False,False,32685.0 +2022,Table 1.4,BQ,28,partnership_and_s_corp_income,All,10000000.0,inf,False,False,False,276872035000.0 +2022,Table 1.4,BS,28,partnership_and_s_corp_losses,All,10000000.0,inf,False,False,False,49739759000.0 +2022,Table 1.4,BP,28,partnership_and_s_corp_income,All,10000000.0,inf,True,False,False,30987.0 +2022,Table 1.4,BR,28,partnership_and_s_corp_losses,All,10000000.0,inf,True,False,False,15544.0 +2022,Table 1.4,AW,28,total_pension_income,All,10000000.0,inf,False,False,False,3877241000.0 +2022,Table 1.4,AV,28,total_pension_income,All,10000000.0,inf,True,False,False,7631.0 +2022,Table 1.4,AY,28,taxable_pension_income,All,10000000.0,inf,False,False,False,958750000.0 +2022,Table 1.4,AX,28,taxable_pension_income,All,10000000.0,inf,True,False,False,5456.0 +2022,Table 1.4,EI,28,qualified_business_income_deduction,All,10000000.0,inf,False,False,False,35178424000.0 +2022,Table 1.4,EH,28,qualified_business_income_deduction,All,10000000.0,inf,True,False,False,26069.0 +2022,Table 1.4,AA,28,qualified_dividends,All,10000000.0,inf,False,False,False,61557527000.0 +2022,Table 1.4,Z,28,qualified_dividends,All,10000000.0,inf,True,False,False,31865.0 +2022,Table 1.4,BU,28,s_corporation_net_income,All,10000000.0,inf,False,False,False,176134053000.0 +2022,Table 1.4,BW,28,s_corporation_net_losses,All,10000000.0,inf,False,False,False,11443499000.0 +2022,Table 1.4,BT,28,s_corporation_net_income,All,10000000.0,inf,True,False,False,14224.0 +2022,Table 1.4,BV,28,s_corporation_net_losses,All,10000000.0,inf,True,False,False,4374.0 +2022,Table 1.4,CK,28,taxable_social_security,All,10000000.0,inf,False,False,False,279021000.0 +2022,Table 1.4,CJ,28,taxable_social_security,All,10000000.0,inf,True,False,False,6942.0 +2022,Table 1.4,CI,28,total_social_security,All,10000000.0,inf,False,False,False,328415000.0 +2022,Table 1.4,CH,28,total_social_security,All,10000000.0,inf,True,False,False,6948.0 +2022,Table 1.4,ES,28,income_tax_before_credits,All,10000000.0,inf,False,False,False,263628575000.0 +2022,Table 1.4,ER,28,income_tax_before_credits,All,10000000.0,inf,True,False,False,34591.0 +2022,Table 1.4,U,28,taxable_interest_income,All,10000000.0,inf,False,False,False,31398399000.0 +2022,Table 1.4,T,28,taxable_interest_income,All,10000000.0,inf,True,False,False,34213.0 +2022,Table 1.4,CG,28,unemployment_compensation,All,10000000.0,inf,False,False,False,10632000.0 +2022,Table 1.4,CF,28,unemployment_compensation,All,10000000.0,inf,True,False,False,61.0 +2022,Table 1.4,G,28,employment_income,All,10000000.0,inf,False,False,False,152316841000.0 +2022,Table 1.4,F,28,employment_income,All,10000000.0,inf,True,False,False,27805.0 +2022,Table 2.1,DH,10,charitable_contributions_deductions,All,-inf,inf,False,False,True,222384855000.0 +2022,Table 2.1,DG,10,charitable_contributions_deductions,All,-inf,inf,True,False,True,12179939.0 +2022,Table 2.1,CJ,10,itemized_general_sales_tax_deduction,All,-inf,inf,False,False,True,28500488000.0 +2022,Table 2.1,CI,10,itemized_general_sales_tax_deduction,All,-inf,inf,True,False,True,3653312.0 +2022,Table 2.1,CT,10,interest_paid_deductions,All,-inf,inf,False,False,True,170451254000.0 +2022,Table 2.1,CS,10,interest_paid_deductions,All,-inf,inf,True,False,True,11900478.0 +2022,Table 2.1,BV,10,medical_expense_deductions_capped,All,-inf,inf,False,False,True,92946111000.0 +2022,Table 2.1,BU,10,medical_expense_deductions_capped,All,-inf,inf,True,False,True,3983082.0 +2022,Table 2.1,BX,10,medical_expense_deductions_uncapped,All,-inf,inf,False,False,True,120988136000.0 +2022,Table 2.1,BW,10,medical_expense_deductions_uncapped,All,-inf,inf,True,False,True,3983082.0 +2022,Table 2.1,CX,10,mortgage_interest_deductions,All,-inf,inf,False,False,True,145435728000.0 +2022,Table 2.1,CW,10,mortgage_interest_deductions,All,-inf,inf,True,False,True,11629555.0 +2022,Table 2.1,CH,10,itemized_state_income_tax_deductions,All,-inf,inf,False,False,True,257354764000.0 +2022,Table 2.1,CG,10,itemized_state_income_tax_deductions,All,-inf,inf,True,False,True,10988927.0 +2022,Table 2.1,CF,10,idpitgst,All,-inf,inf,False,False,True,285855252000.0 +2022,Table 2.1,CE,10,idpitgst,All,-inf,inf,True,False,True,14642239.0 +2022,Table 2.1,CL,10,itemized_real_estate_tax_deductions,All,-inf,inf,False,False,True,106876443000.0 +2022,Table 2.1,CK,10,itemized_real_estate_tax_deductions,All,-inf,inf,True,False,True,12922862.0 +2022,Table 2.1,CD,10,state_and_local_tax_deductions,All,-inf,inf,False,False,True,396877843000.0 +2022,Table 2.1,CC,10,state_and_local_tax_deductions,All,-inf,inf,True,False,True,15033846.0 +2022,Table 2.1,CB,10,itemized_taxes_paid_deductions,All,-inf,inf,False,False,True,125205903000.0 +2022,Table 2.1,CA,10,itemized_taxes_paid_deductions,All,-inf,inf,True,False,True,15079029.0 +2022,Table 2.1,DH,11,charitable_contributions_deductions,All,0.0,5000.0,False,False,False,34841000.0 +2022,Table 2.1,DG,11,charitable_contributions_deductions,All,0.0,5000.0,True,False,False,46941.0 +2022,Table 2.1,CJ,11,itemized_general_sales_tax_deduction,All,0.0,5000.0,False,False,False,32892000.0 +2022,Table 2.1,CI,11,itemized_general_sales_tax_deduction,All,0.0,5000.0,True,False,False,48417.0 +2022,Table 2.1,CT,11,interest_paid_deductions,All,0.0,5000.0,False,False,False,528925000.0 +2022,Table 2.1,CS,11,interest_paid_deductions,All,0.0,5000.0,True,False,False,51464.0 +2022,Table 2.1,BV,11,medical_expense_deductions_capped,All,0.0,5000.0,False,False,False,1191699000.0 +2022,Table 2.1,BU,11,medical_expense_deductions_capped,All,0.0,5000.0,True,False,False,66399.0 +2022,Table 2.1,BX,11,medical_expense_deductions_uncapped,All,0.0,5000.0,False,False,False,1202437000.0 +2022,Table 2.1,BW,11,medical_expense_deductions_uncapped,All,0.0,5000.0,True,False,False,66399.0 +2022,Table 2.1,CX,11,mortgage_interest_deductions,All,0.0,5000.0,False,False,False,494627000.0 +2022,Table 2.1,CW,11,mortgage_interest_deductions,All,0.0,5000.0,True,False,False,49012.0 +2022,Table 2.1,CH,11,itemized_state_income_tax_deductions,All,0.0,5000.0,False,False,False,59953000.0 +2022,Table 2.1,CG,11,itemized_state_income_tax_deductions,All,0.0,5000.0,True,False,False,26571.0 +2022,Table 2.1,CF,11,idpitgst,All,0.0,5000.0,False,False,False,92845000.0 +2022,Table 2.1,CE,11,idpitgst,All,0.0,5000.0,True,False,False,74988.0 +2022,Table 2.1,CL,11,itemized_real_estate_tax_deductions,All,0.0,5000.0,False,False,False,367851000.0 +2022,Table 2.1,CK,11,itemized_real_estate_tax_deductions,All,0.0,5000.0,True,False,False,58876.0 +2022,Table 2.1,CD,11,state_and_local_tax_deductions,All,0.0,5000.0,False,False,False,468533000.0 +2022,Table 2.1,CC,11,state_and_local_tax_deductions,All,0.0,5000.0,True,False,False,92021.0 +2022,Table 2.1,CB,11,itemized_taxes_paid_deductions,All,0.0,5000.0,False,False,False,409873000.0 +2022,Table 2.1,CA,11,itemized_taxes_paid_deductions,All,0.0,5000.0,True,False,False,93031.0 +2022,Table 2.1,DH,12,charitable_contributions_deductions,All,5000.0,10000.0,False,False,False,92549000.0 +2022,Table 2.1,DG,12,charitable_contributions_deductions,All,5000.0,10000.0,True,False,False,44917.0 +2022,Table 2.1,CJ,12,itemized_general_sales_tax_deduction,All,5000.0,10000.0,False,False,False,52650000.0 +2022,Table 2.1,CI,12,itemized_general_sales_tax_deduction,All,5000.0,10000.0,True,False,False,60906.0 +2022,Table 2.1,CT,12,interest_paid_deductions,All,5000.0,10000.0,False,False,False,541072000.0 +2022,Table 2.1,CS,12,interest_paid_deductions,All,5000.0,10000.0,True,False,False,59062.0 +2022,Table 2.1,BV,12,medical_expense_deductions_capped,All,5000.0,10000.0,False,False,False,10098694000.0 +2022,Table 2.1,BU,12,medical_expense_deductions_capped,All,5000.0,10000.0,True,False,False,70113.0 +2022,Table 2.1,BX,12,medical_expense_deductions_uncapped,All,5000.0,10000.0,False,False,False,10139280000.0 +2022,Table 2.1,BW,12,medical_expense_deductions_uncapped,All,5000.0,10000.0,True,False,False,70113.0 +2022,Table 2.1,CX,12,mortgage_interest_deductions,All,5000.0,10000.0,False,False,False,530166000.0 +2022,Table 2.1,CW,12,mortgage_interest_deductions,All,5000.0,10000.0,True,False,False,53786.0 +2022,Table 2.1,CH,12,itemized_state_income_tax_deductions,All,5000.0,10000.0,False,False,False,105836000.0 +2022,Table 2.1,CG,12,itemized_state_income_tax_deductions,All,5000.0,10000.0,True,False,False,31007.0 +2022,Table 2.1,CF,12,idpitgst,All,5000.0,10000.0,False,False,False,158486000.0 +2022,Table 2.1,CE,12,idpitgst,All,5000.0,10000.0,True,False,False,91913.0 +2022,Table 2.1,CL,12,itemized_real_estate_tax_deductions,All,5000.0,10000.0,False,False,False,351819000.0 +2022,Table 2.1,CK,12,itemized_real_estate_tax_deductions,All,5000.0,10000.0,True,False,False,63089.0 +2022,Table 2.1,CD,12,state_and_local_tax_deductions,All,5000.0,10000.0,False,False,False,516993000.0 +2022,Table 2.1,CC,12,state_and_local_tax_deductions,All,5000.0,10000.0,True,False,False,98619.0 +2022,Table 2.1,CB,12,itemized_taxes_paid_deductions,All,5000.0,10000.0,False,False,False,424919000.0 +2022,Table 2.1,CA,12,itemized_taxes_paid_deductions,All,5000.0,10000.0,True,False,False,99629.0 +2022,Table 2.1,DH,13,charitable_contributions_deductions,All,10000.0,15000.0,False,False,False,159177000.0 +2022,Table 2.1,DG,13,charitable_contributions_deductions,All,10000.0,15000.0,True,False,False,67092.0 +2022,Table 2.1,CJ,13,itemized_general_sales_tax_deduction,All,10000.0,15000.0,False,False,False,41651000.0 +2022,Table 2.1,CI,13,itemized_general_sales_tax_deduction,All,10000.0,15000.0,True,False,False,62658.0 +2022,Table 2.1,CT,13,interest_paid_deductions,All,10000.0,15000.0,False,False,False,470520000.0 +2022,Table 2.1,CS,13,interest_paid_deductions,All,10000.0,15000.0,True,False,False,51798.0 +2022,Table 2.1,BV,13,medical_expense_deductions_capped,All,10000.0,15000.0,False,False,False,1617799000.0 +2022,Table 2.1,BU,13,medical_expense_deductions_capped,All,10000.0,15000.0,True,False,False,84637.0 +2022,Table 2.1,BX,13,medical_expense_deductions_uncapped,All,10000.0,15000.0,False,False,False,1696521000.0 +2022,Table 2.1,BW,13,medical_expense_deductions_uncapped,All,10000.0,15000.0,True,False,False,84637.0 +2022,Table 2.1,CX,13,mortgage_interest_deductions,All,10000.0,15000.0,False,False,False,467388000.0 +2022,Table 2.1,CW,13,mortgage_interest_deductions,All,10000.0,15000.0,True,False,False,50378.0 +2022,Table 2.1,CH,13,itemized_state_income_tax_deductions,All,10000.0,15000.0,False,False,False,82289000.0 +2022,Table 2.1,CG,13,itemized_state_income_tax_deductions,All,10000.0,15000.0,True,False,False,40264.0 +2022,Table 2.1,CF,13,idpitgst,All,10000.0,15000.0,False,False,False,123940000.0 +2022,Table 2.1,CE,13,idpitgst,All,10000.0,15000.0,True,False,False,102922.0 +2022,Table 2.1,CL,13,itemized_real_estate_tax_deductions,All,10000.0,15000.0,False,False,False,411469000.0 +2022,Table 2.1,CK,13,itemized_real_estate_tax_deductions,All,10000.0,15000.0,True,False,False,75383.0 +2022,Table 2.1,CD,13,state_and_local_tax_deductions,All,10000.0,15000.0,False,False,False,544457000.0 +2022,Table 2.1,CC,13,state_and_local_tax_deductions,All,10000.0,15000.0,True,False,False,110403.0 +2022,Table 2.1,CB,13,itemized_taxes_paid_deductions,All,10000.0,15000.0,False,False,False,507176000.0 +2022,Table 2.1,CA,13,itemized_taxes_paid_deductions,All,10000.0,15000.0,True,False,False,111410.0 +2022,Table 2.1,DH,14,charitable_contributions_deductions,All,15000.0,20000.0,False,False,False,281706000.0 +2022,Table 2.1,DG,14,charitable_contributions_deductions,All,15000.0,20000.0,True,False,False,88049.0 +2022,Table 2.1,CJ,14,itemized_general_sales_tax_deduction,All,15000.0,20000.0,False,False,False,87502000.0 +2022,Table 2.1,CI,14,itemized_general_sales_tax_deduction,All,15000.0,20000.0,True,False,False,81757.0 +2022,Table 2.1,CT,14,interest_paid_deductions,All,15000.0,20000.0,False,False,False,986622000.0 +2022,Table 2.1,CS,14,interest_paid_deductions,All,15000.0,20000.0,True,False,False,71368.0 +2022,Table 2.1,BV,14,medical_expense_deductions_capped,All,15000.0,20000.0,False,False,False,1835915000.0 +2022,Table 2.1,BU,14,medical_expense_deductions_capped,All,15000.0,20000.0,True,False,False,119212.0 +2022,Table 2.1,BX,14,medical_expense_deductions_uncapped,All,15000.0,20000.0,False,False,False,1993208000.0 +2022,Table 2.1,BW,14,medical_expense_deductions_uncapped,All,15000.0,20000.0,True,False,False,119212.0 +2022,Table 2.1,CX,14,mortgage_interest_deductions,All,15000.0,20000.0,False,False,False,953867000.0 +2022,Table 2.1,CW,14,mortgage_interest_deductions,All,15000.0,20000.0,True,False,False,69179.0 +2022,Table 2.1,CH,14,itemized_state_income_tax_deductions,All,15000.0,20000.0,False,False,False,136023000.0 +2022,Table 2.1,CG,14,itemized_state_income_tax_deductions,All,15000.0,20000.0,True,False,False,56624.0 +2022,Table 2.1,CF,14,idpitgst,All,15000.0,20000.0,False,False,False,223526000.0 +2022,Table 2.1,CE,14,idpitgst,All,15000.0,20000.0,True,False,False,138381.0 +2022,Table 2.1,CL,14,itemized_real_estate_tax_deductions,All,15000.0,20000.0,False,False,False,554905000.0 +2022,Table 2.1,CK,14,itemized_real_estate_tax_deductions,All,15000.0,20000.0,True,False,False,94124.0 +2022,Table 2.1,CD,14,state_and_local_tax_deductions,All,15000.0,20000.0,False,False,False,812445000.0 +2022,Table 2.1,CC,14,state_and_local_tax_deductions,All,15000.0,20000.0,True,False,False,148531.0 +2022,Table 2.1,CB,14,itemized_taxes_paid_deductions,All,15000.0,20000.0,False,False,False,693372000.0 +2022,Table 2.1,CA,14,itemized_taxes_paid_deductions,All,15000.0,20000.0,True,False,False,148532.0 +2022,Table 2.1,DH,15,charitable_contributions_deductions,All,20000.0,25000.0,False,False,False,456754000.0 +2022,Table 2.1,DG,15,charitable_contributions_deductions,All,20000.0,25000.0,True,False,False,120027.0 +2022,Table 2.1,CJ,15,itemized_general_sales_tax_deduction,All,20000.0,25000.0,False,False,False,138220000.0 +2022,Table 2.1,CI,15,itemized_general_sales_tax_deduction,All,20000.0,25000.0,True,False,False,80981.0 +2022,Table 2.1,CT,15,interest_paid_deductions,All,20000.0,25000.0,False,False,False,1053476000.0 +2022,Table 2.1,CS,15,interest_paid_deductions,All,20000.0,25000.0,True,False,False,98851.0 +2022,Table 2.1,BV,15,medical_expense_deductions_capped,All,20000.0,25000.0,False,False,False,2419602000.0 +2022,Table 2.1,BU,15,medical_expense_deductions_capped,All,20000.0,25000.0,True,False,False,127977.0 +2022,Table 2.1,BX,15,medical_expense_deductions_uncapped,All,20000.0,25000.0,False,False,False,2638259000.0 +2022,Table 2.1,BW,15,medical_expense_deductions_uncapped,All,20000.0,25000.0,True,False,False,127977.0 +2022,Table 2.1,CX,15,mortgage_interest_deductions,All,20000.0,25000.0,False,False,False,1044906000.0 +2022,Table 2.1,CW,15,mortgage_interest_deductions,All,20000.0,25000.0,True,False,False,96021.0 +2022,Table 2.1,CH,15,itemized_state_income_tax_deductions,All,20000.0,25000.0,False,False,False,219740000.0 +2022,Table 2.1,CG,15,itemized_state_income_tax_deductions,All,20000.0,25000.0,True,False,False,78227.0 +2022,Table 2.1,CF,15,idpitgst,All,20000.0,25000.0,False,False,False,357961000.0 +2022,Table 2.1,CE,15,idpitgst,All,20000.0,25000.0,True,False,False,159208.0 +2022,Table 2.1,CL,15,itemized_real_estate_tax_deductions,All,20000.0,25000.0,False,False,False,740767000.0 +2022,Table 2.1,CK,15,itemized_real_estate_tax_deductions,All,20000.0,25000.0,True,False,False,118916.0 +2022,Table 2.1,CD,15,state_and_local_tax_deductions,All,20000.0,25000.0,False,False,False,1145069000.0 +2022,Table 2.1,CC,15,state_and_local_tax_deductions,All,20000.0,25000.0,True,False,False,176103.0 +2022,Table 2.1,CB,15,itemized_taxes_paid_deductions,All,20000.0,25000.0,False,False,False,905356000.0 +2022,Table 2.1,CA,15,itemized_taxes_paid_deductions,All,20000.0,25000.0,True,False,False,177112.0 +2022,Table 2.1,DH,16,charitable_contributions_deductions,All,25000.0,30000.0,False,False,False,553969000.0 +2022,Table 2.1,DG,16,charitable_contributions_deductions,All,25000.0,30000.0,True,False,False,132800.0 +2022,Table 2.1,CJ,16,itemized_general_sales_tax_deduction,All,25000.0,30000.0,False,False,False,111030000.0 +2022,Table 2.1,CI,16,itemized_general_sales_tax_deduction,All,25000.0,30000.0,True,False,False,69038.0 +2022,Table 2.1,CT,16,interest_paid_deductions,All,25000.0,30000.0,False,False,False,1043256000.0 +2022,Table 2.1,CS,16,interest_paid_deductions,All,25000.0,30000.0,True,False,False,88288.0 +2022,Table 2.1,BV,16,medical_expense_deductions_capped,All,25000.0,30000.0,False,False,False,2830226000.0 +2022,Table 2.1,BU,16,medical_expense_deductions_capped,All,25000.0,30000.0,True,False,False,133921.0 +2022,Table 2.1,BX,16,medical_expense_deductions_uncapped,All,25000.0,30000.0,False,False,False,3107240000.0 +2022,Table 2.1,BW,16,medical_expense_deductions_uncapped,All,25000.0,30000.0,True,False,False,133921.0 +2022,Table 2.1,CX,16,mortgage_interest_deductions,All,25000.0,30000.0,False,False,False,1034852000.0 +2022,Table 2.1,CW,16,mortgage_interest_deductions,All,25000.0,30000.0,True,False,False,87201.0 +2022,Table 2.1,CH,16,itemized_state_income_tax_deductions,All,25000.0,30000.0,False,False,False,289210000.0 +2022,Table 2.1,CG,16,itemized_state_income_tax_deductions,All,25000.0,30000.0,True,False,False,112058.0 +2022,Table 2.1,CF,16,idpitgst,All,25000.0,30000.0,False,False,False,400240000.0 +2022,Table 2.1,CE,16,idpitgst,All,25000.0,30000.0,True,False,False,181096.0 +2022,Table 2.1,CL,16,itemized_real_estate_tax_deductions,All,25000.0,30000.0,False,False,False,729232000.0 +2022,Table 2.1,CK,16,itemized_real_estate_tax_deductions,All,25000.0,30000.0,True,False,False,123859.0 +2022,Table 2.1,CD,16,state_and_local_tax_deductions,All,25000.0,30000.0,False,False,False,1179947000.0 +2022,Table 2.1,CC,16,state_and_local_tax_deductions,All,25000.0,30000.0,True,False,False,191024.0 +2022,Table 2.1,CB,16,itemized_taxes_paid_deductions,All,25000.0,30000.0,False,False,False,993800000.0 +2022,Table 2.1,CA,16,itemized_taxes_paid_deductions,All,25000.0,30000.0,True,False,False,193039.0 +2022,Table 2.1,DH,17,charitable_contributions_deductions,All,30000.0,35000.0,False,False,False,663476000.0 +2022,Table 2.1,DG,17,charitable_contributions_deductions,All,30000.0,35000.0,True,False,False,151769.0 +2022,Table 2.1,CJ,17,itemized_general_sales_tax_deduction,All,30000.0,35000.0,False,False,False,143257000.0 +2022,Table 2.1,CI,17,itemized_general_sales_tax_deduction,All,30000.0,35000.0,True,False,False,90770.0 +2022,Table 2.1,CT,17,interest_paid_deductions,All,30000.0,35000.0,False,False,False,1428075000.0 +2022,Table 2.1,CS,17,interest_paid_deductions,All,30000.0,35000.0,True,False,False,115643.0 +2022,Table 2.1,BV,17,medical_expense_deductions_capped,All,30000.0,35000.0,False,False,False,2811061000.0 +2022,Table 2.1,BU,17,medical_expense_deductions_capped,All,30000.0,35000.0,True,False,False,141187.0 +2022,Table 2.1,BX,17,medical_expense_deductions_uncapped,All,30000.0,35000.0,False,False,False,3156446000.0 +2022,Table 2.1,BW,17,medical_expense_deductions_uncapped,All,30000.0,35000.0,True,False,False,141187.0 +2022,Table 2.1,CX,17,mortgage_interest_deductions,All,30000.0,35000.0,False,False,False,1147577000.0 +2022,Table 2.1,CW,17,mortgage_interest_deductions,All,30000.0,35000.0,True,False,False,112541.0 +2022,Table 2.1,CH,17,itemized_state_income_tax_deductions,All,30000.0,35000.0,False,False,False,228824000.0 +2022,Table 2.1,CG,17,itemized_state_income_tax_deductions,All,30000.0,35000.0,True,False,False,102258.0 +2022,Table 2.1,CF,17,idpitgst,All,30000.0,35000.0,False,False,False,372081000.0 +2022,Table 2.1,CE,17,idpitgst,All,30000.0,35000.0,True,False,False,193028.0 +2022,Table 2.1,CL,17,itemized_real_estate_tax_deductions,All,30000.0,35000.0,False,False,False,661642000.0 +2022,Table 2.1,CK,17,itemized_real_estate_tax_deductions,All,30000.0,35000.0,True,False,False,135113.0 +2022,Table 2.1,CD,17,state_and_local_tax_deductions,All,30000.0,35000.0,False,False,False,1094074000.0 +2022,Table 2.1,CC,17,state_and_local_tax_deductions,All,30000.0,35000.0,True,False,False,202461.0 +2022,Table 2.1,CB,17,itemized_taxes_paid_deductions,All,30000.0,35000.0,False,False,False,1016026000.0 +2022,Table 2.1,CA,17,itemized_taxes_paid_deductions,All,30000.0,35000.0,True,False,False,204479.0 +2022,Table 2.1,DH,18,charitable_contributions_deductions,All,35000.0,40000.0,False,False,False,1255200000.0 +2022,Table 2.1,DG,18,charitable_contributions_deductions,All,35000.0,40000.0,True,False,False,198007.0 +2022,Table 2.1,CJ,18,itemized_general_sales_tax_deduction,All,35000.0,40000.0,False,False,False,172862000.0 +2022,Table 2.1,CI,18,itemized_general_sales_tax_deduction,All,35000.0,40000.0,True,False,False,109919.0 +2022,Table 2.1,CT,18,interest_paid_deductions,All,35000.0,40000.0,False,False,False,1409854000.0 +2022,Table 2.1,CS,18,interest_paid_deductions,All,35000.0,40000.0,True,False,False,155104.0 +2022,Table 2.1,BV,18,medical_expense_deductions_capped,All,35000.0,40000.0,False,False,False,3276238000.0 +2022,Table 2.1,BU,18,medical_expense_deductions_capped,All,35000.0,40000.0,True,False,False,176025.0 +2022,Table 2.1,BX,18,medical_expense_deductions_uncapped,All,35000.0,40000.0,False,False,False,3771170000.0 +2022,Table 2.1,BW,18,medical_expense_deductions_uncapped,All,35000.0,40000.0,True,False,False,176025.0 +2022,Table 2.1,CX,18,mortgage_interest_deductions,All,35000.0,40000.0,False,False,False,1347943000.0 +2022,Table 2.1,CW,18,mortgage_interest_deductions,All,35000.0,40000.0,True,False,False,153739.0 +2022,Table 2.1,CH,18,itemized_state_income_tax_deductions,All,35000.0,40000.0,False,False,False,523540000.0 +2022,Table 2.1,CG,18,itemized_state_income_tax_deductions,All,35000.0,40000.0,True,False,False,146275.0 +2022,Table 2.1,CF,18,idpitgst,All,35000.0,40000.0,False,False,False,696402000.0 +2022,Table 2.1,CE,18,idpitgst,All,35000.0,40000.0,True,False,False,256193.0 +2022,Table 2.1,CL,18,itemized_real_estate_tax_deductions,All,35000.0,40000.0,False,False,False,983136000.0 +2022,Table 2.1,CK,18,itemized_real_estate_tax_deductions,All,35000.0,40000.0,True,False,False,181762.0 +2022,Table 2.1,CD,18,state_and_local_tax_deductions,All,35000.0,40000.0,False,False,False,1762967000.0 +2022,Table 2.1,CC,18,state_and_local_tax_deductions,All,35000.0,40000.0,True,False,False,262300.0 +2022,Table 2.1,CB,18,itemized_taxes_paid_deductions,All,35000.0,40000.0,False,False,False,1566235000.0 +2022,Table 2.1,CA,18,itemized_taxes_paid_deductions,All,35000.0,40000.0,True,False,False,265330.0 +2022,Table 2.1,DH,19,charitable_contributions_deductions,All,40000.0,45000.0,False,False,False,1068181000.0 +2022,Table 2.1,DG,19,charitable_contributions_deductions,All,40000.0,45000.0,True,False,False,188265.0 +2022,Table 2.1,CJ,19,itemized_general_sales_tax_deduction,All,40000.0,45000.0,False,False,False,129523000.0 +2022,Table 2.1,CI,19,itemized_general_sales_tax_deduction,All,40000.0,45000.0,True,False,False,88569.0 +2022,Table 2.1,CT,19,interest_paid_deductions,All,40000.0,45000.0,False,False,False,1526699000.0 +2022,Table 2.1,CS,19,interest_paid_deductions,All,40000.0,45000.0,True,False,False,147781.0 +2022,Table 2.1,BV,19,medical_expense_deductions_capped,All,40000.0,45000.0,False,False,False,2549754000.0 +2022,Table 2.1,BU,19,medical_expense_deductions_capped,All,40000.0,45000.0,True,False,False,144236.0 +2022,Table 2.1,BX,19,medical_expense_deductions_uncapped,All,40000.0,45000.0,False,False,False,3011339000.0 +2022,Table 2.1,BW,19,medical_expense_deductions_uncapped,All,40000.0,45000.0,True,False,False,144236.0 +2022,Table 2.1,CX,19,mortgage_interest_deductions,All,40000.0,45000.0,False,False,False,1456726000.0 +2022,Table 2.1,CW,19,mortgage_interest_deductions,All,40000.0,45000.0,True,False,False,145538.0 +2022,Table 2.1,CH,19,itemized_state_income_tax_deductions,All,40000.0,45000.0,False,False,False,465899000.0 +2022,Table 2.1,CG,19,itemized_state_income_tax_deductions,All,40000.0,45000.0,True,False,False,143845.0 +2022,Table 2.1,CF,19,idpitgst,All,40000.0,45000.0,False,False,False,595422000.0 +2022,Table 2.1,CE,19,idpitgst,All,40000.0,45000.0,True,False,False,232414.0 +2022,Table 2.1,CL,19,itemized_real_estate_tax_deductions,All,40000.0,45000.0,False,False,False,878695000.0 +2022,Table 2.1,CK,19,itemized_real_estate_tax_deductions,All,40000.0,45000.0,True,False,False,171788.0 +2022,Table 2.1,CD,19,state_and_local_tax_deductions,All,40000.0,45000.0,False,False,False,1557427000.0 +2022,Table 2.1,CC,19,state_and_local_tax_deductions,All,40000.0,45000.0,True,False,False,248895.0 +2022,Table 2.1,CB,19,itemized_taxes_paid_deductions,All,40000.0,45000.0,False,False,False,1405499000.0 +2022,Table 2.1,CA,19,itemized_taxes_paid_deductions,All,40000.0,45000.0,True,False,False,249907.0 +2022,Table 2.1,DH,20,charitable_contributions_deductions,All,45000.0,50000.0,False,False,False,1311148000.0 +2022,Table 2.1,DG,20,charitable_contributions_deductions,All,45000.0,50000.0,True,False,False,221978.0 +2022,Table 2.1,CJ,20,itemized_general_sales_tax_deduction,All,45000.0,50000.0,False,False,False,163928000.0 +2022,Table 2.1,CI,20,itemized_general_sales_tax_deduction,All,45000.0,50000.0,True,False,False,105651.0 +2022,Table 2.1,CT,20,interest_paid_deductions,All,45000.0,50000.0,False,False,False,1915643000.0 +2022,Table 2.1,CS,20,interest_paid_deductions,All,45000.0,50000.0,True,False,False,185527.0 +2022,Table 2.1,BV,20,medical_expense_deductions_capped,All,45000.0,50000.0,False,False,False,3471236000.0 +2022,Table 2.1,BU,20,medical_expense_deductions_capped,All,45000.0,50000.0,True,False,False,169405.0 +2022,Table 2.1,BX,20,medical_expense_deductions_uncapped,All,45000.0,50000.0,False,False,False,4074881000.0 +2022,Table 2.1,BW,20,medical_expense_deductions_uncapped,All,45000.0,50000.0,True,False,False,169405.0 +2022,Table 2.1,CX,20,mortgage_interest_deductions,All,45000.0,50000.0,False,False,False,1885532000.0 +2022,Table 2.1,CW,20,mortgage_interest_deductions,All,45000.0,50000.0,True,False,False,181958.0 +2022,Table 2.1,CH,20,itemized_state_income_tax_deductions,All,45000.0,50000.0,False,False,False,470460000.0 +2022,Table 2.1,CG,20,itemized_state_income_tax_deductions,All,45000.0,50000.0,True,False,False,175834.0 +2022,Table 2.1,CF,20,idpitgst,All,45000.0,50000.0,False,False,False,634387000.0 +2022,Table 2.1,CE,20,idpitgst,All,45000.0,50000.0,True,False,False,281486.0 +2022,Table 2.1,CL,20,itemized_real_estate_tax_deductions,All,45000.0,50000.0,False,False,False,1171434000.0 +2022,Table 2.1,CK,20,itemized_real_estate_tax_deductions,All,45000.0,50000.0,True,False,False,220013.0 +2022,Table 2.1,CD,20,state_and_local_tax_deductions,All,45000.0,50000.0,False,False,False,1897470000.0 +2022,Table 2.1,CC,20,state_and_local_tax_deductions,All,45000.0,50000.0,True,False,False,299706.0 +2022,Table 2.1,CB,20,itemized_taxes_paid_deductions,All,45000.0,50000.0,False,False,False,1746619000.0 +2022,Table 2.1,CA,20,itemized_taxes_paid_deductions,All,45000.0,50000.0,True,False,False,301730.0 +2022,Table 2.1,DH,21,charitable_contributions_deductions,All,50000.0,55000.0,False,False,False,1509675000.0 +2022,Table 2.1,DG,21,charitable_contributions_deductions,All,50000.0,55000.0,True,False,False,247046.0 +2022,Table 2.1,CJ,21,itemized_general_sales_tax_deduction,All,50000.0,55000.0,False,False,False,207610000.0 +2022,Table 2.1,CI,21,itemized_general_sales_tax_deduction,All,50000.0,55000.0,True,False,False,109135.0 +2022,Table 2.1,CT,21,interest_paid_deductions,All,50000.0,55000.0,False,False,False,2249005000.0 +2022,Table 2.1,CS,21,interest_paid_deductions,All,50000.0,55000.0,True,False,False,227511.0 +2022,Table 2.1,BV,21,medical_expense_deductions_capped,All,50000.0,55000.0,False,False,False,3173483000.0 +2022,Table 2.1,BU,21,medical_expense_deductions_capped,All,50000.0,55000.0,True,False,False,169006.0 +2022,Table 2.1,BX,21,medical_expense_deductions_uncapped,All,50000.0,55000.0,False,False,False,3836231000.0 +2022,Table 2.1,BW,21,medical_expense_deductions_uncapped,All,50000.0,55000.0,True,False,False,169006.0 +2022,Table 2.1,CX,21,mortgage_interest_deductions,All,50000.0,55000.0,False,False,False,2164241000.0 +2022,Table 2.1,CW,21,mortgage_interest_deductions,All,50000.0,55000.0,True,False,False,224320.0 +2022,Table 2.1,CH,21,itemized_state_income_tax_deductions,All,50000.0,55000.0,False,False,False,665647000.0 +2022,Table 2.1,CG,21,itemized_state_income_tax_deductions,All,50000.0,55000.0,True,False,False,223652.0 +2022,Table 2.1,CF,21,idpitgst,All,50000.0,55000.0,False,False,False,873257000.0 +2022,Table 2.1,CE,21,idpitgst,All,50000.0,55000.0,True,False,False,332788.0 +2022,Table 2.1,CL,21,itemized_real_estate_tax_deductions,All,50000.0,55000.0,False,False,False,1282934000.0 +2022,Table 2.1,CK,21,itemized_real_estate_tax_deductions,All,50000.0,55000.0,True,False,False,244422.0 +2022,Table 2.1,CD,21,state_and_local_tax_deductions,All,50000.0,55000.0,False,False,False,2273534000.0 +2022,Table 2.1,CC,21,state_and_local_tax_deductions,All,50000.0,55000.0,True,False,False,337088.0 +2022,Table 2.1,CB,21,itemized_taxes_paid_deductions,All,50000.0,55000.0,False,False,False,2042133000.0 +2022,Table 2.1,CA,21,itemized_taxes_paid_deductions,All,50000.0,55000.0,True,False,False,339363.0 +2022,Table 2.1,DH,22,charitable_contributions_deductions,All,55000.0,60000.0,False,False,False,1751614000.0 +2022,Table 2.1,DG,22,charitable_contributions_deductions,All,55000.0,60000.0,True,False,False,276278.0 +2022,Table 2.1,CJ,22,itemized_general_sales_tax_deduction,All,55000.0,60000.0,False,False,False,158943000.0 +2022,Table 2.1,CI,22,itemized_general_sales_tax_deduction,All,55000.0,60000.0,True,False,False,102830.0 +2022,Table 2.1,CT,22,interest_paid_deductions,All,55000.0,60000.0,False,False,False,2551086000.0 +2022,Table 2.1,CS,22,interest_paid_deductions,All,55000.0,60000.0,True,False,False,237310.0 +2022,Table 2.1,BV,22,medical_expense_deductions_capped,All,55000.0,60000.0,False,False,False,2996137000.0 +2022,Table 2.1,BU,22,medical_expense_deductions_capped,All,55000.0,60000.0,True,False,False,156340.0 +2022,Table 2.1,BX,22,medical_expense_deductions_uncapped,All,55000.0,60000.0,False,False,False,3669549000.0 +2022,Table 2.1,BW,22,medical_expense_deductions_uncapped,All,55000.0,60000.0,True,False,False,156340.0 +2022,Table 2.1,CX,22,mortgage_interest_deductions,All,55000.0,60000.0,False,False,False,2455604000.0 +2022,Table 2.1,CW,22,mortgage_interest_deductions,All,55000.0,60000.0,True,False,False,233844.0 +2022,Table 2.1,CH,22,itemized_state_income_tax_deductions,All,55000.0,60000.0,False,False,False,718738000.0 +2022,Table 2.1,CG,22,itemized_state_income_tax_deductions,All,55000.0,60000.0,True,False,False,244331.0 +2022,Table 2.1,CF,22,idpitgst,All,55000.0,60000.0,False,False,False,877681000.0 +2022,Table 2.1,CE,22,idpitgst,All,55000.0,60000.0,True,False,False,347161.0 +2022,Table 2.1,CL,22,itemized_real_estate_tax_deductions,All,55000.0,60000.0,False,False,False,1354048000.0 +2022,Table 2.1,CK,22,itemized_real_estate_tax_deductions,All,55000.0,60000.0,True,False,False,266461.0 +2022,Table 2.1,CD,22,state_and_local_tax_deductions,All,55000.0,60000.0,False,False,False,2391655000.0 +2022,Table 2.1,CC,22,state_and_local_tax_deductions,All,55000.0,60000.0,True,False,False,352640.0 +2022,Table 2.1,CB,22,itemized_taxes_paid_deductions,All,55000.0,60000.0,False,False,False,2221807000.0 +2022,Table 2.1,CA,22,itemized_taxes_paid_deductions,All,55000.0,60000.0,True,False,False,352685.0 +2022,Table 2.1,DH,23,charitable_contributions_deductions,All,60000.0,75000.0,False,False,False,5401166000.0 +2022,Table 2.1,DG,23,charitable_contributions_deductions,All,60000.0,75000.0,True,False,False,890000.0 +2022,Table 2.1,CJ,23,itemized_general_sales_tax_deduction,All,60000.0,75000.0,False,False,False,611581000.0 +2022,Table 2.1,CI,23,itemized_general_sales_tax_deduction,All,60000.0,75000.0,True,False,False,334107.0 +2022,Table 2.1,CT,23,interest_paid_deductions,All,60000.0,75000.0,False,False,False,8089430000.0 +2022,Table 2.1,CS,23,interest_paid_deductions,All,60000.0,75000.0,True,False,False,856172.0 +2022,Table 2.1,BV,23,medical_expense_deductions_capped,All,60000.0,75000.0,False,False,False,8982950000.0 +2022,Table 2.1,BU,23,medical_expense_deductions_capped,All,60000.0,75000.0,True,False,False,493012.0 +2022,Table 2.1,BX,23,medical_expense_deductions_uncapped,All,60000.0,75000.0,False,False,False,11480491000.0 +2022,Table 2.1,BW,23,medical_expense_deductions_uncapped,All,60000.0,75000.0,True,False,False,493012.0 +2022,Table 2.1,CX,23,mortgage_interest_deductions,All,60000.0,75000.0,False,False,False,7917811000.0 +2022,Table 2.1,CW,23,mortgage_interest_deductions,All,60000.0,75000.0,True,False,False,848002.0 +2022,Table 2.1,CH,23,itemized_state_income_tax_deductions,All,60000.0,75000.0,False,False,False,3143733000.0 +2022,Table 2.1,CG,23,itemized_state_income_tax_deductions,All,60000.0,75000.0,True,False,False,785403.0 +2022,Table 2.1,CF,23,idpitgst,All,60000.0,75000.0,False,False,False,3755315000.0 +2022,Table 2.1,CE,23,idpitgst,All,60000.0,75000.0,True,False,False,1119510.0 +2022,Table 2.1,CL,23,itemized_real_estate_tax_deductions,All,60000.0,75000.0,False,False,False,4893705000.0 +2022,Table 2.1,CK,23,itemized_real_estate_tax_deductions,All,60000.0,75000.0,True,False,False,958968.0 +2022,Table 2.1,CD,23,state_and_local_tax_deductions,All,60000.0,75000.0,False,False,False,8964110000.0 +2022,Table 2.1,CC,23,state_and_local_tax_deductions,All,60000.0,75000.0,True,False,False,1160243.0 +2022,Table 2.1,CB,23,itemized_taxes_paid_deductions,All,60000.0,75000.0,False,False,False,7755846000.0 +2022,Table 2.1,CA,23,itemized_taxes_paid_deductions,All,60000.0,75000.0,True,False,False,1162475.0 +2022,Table 2.1,DH,24,charitable_contributions_deductions,All,75000.0,100000.0,False,False,False,9073536000.0 +2022,Table 2.1,DG,24,charitable_contributions_deductions,All,75000.0,100000.0,True,False,False,1473990.0 +2022,Table 2.1,CJ,24,itemized_general_sales_tax_deduction,All,75000.0,100000.0,False,False,False,777926000.0 +2022,Table 2.1,CI,24,itemized_general_sales_tax_deduction,All,75000.0,100000.0,True,False,False,403661.0 +2022,Table 2.1,CT,24,interest_paid_deductions,All,75000.0,100000.0,False,False,False,14761951000.0 +2022,Table 2.1,CS,24,interest_paid_deductions,All,75000.0,100000.0,True,False,False,1515059.0 +2022,Table 2.1,BV,24,medical_expense_deductions_capped,All,75000.0,100000.0,False,False,False,12134303000.0 +2022,Table 2.1,BU,24,medical_expense_deductions_capped,All,75000.0,100000.0,True,False,False,589529.0 +2022,Table 2.1,BX,24,medical_expense_deductions_uncapped,All,75000.0,100000.0,False,False,False,15979554000.0 +2022,Table 2.1,BW,24,medical_expense_deductions_uncapped,All,75000.0,100000.0,True,False,False,589529.0 +2022,Table 2.1,CX,24,mortgage_interest_deductions,All,75000.0,100000.0,False,False,False,14439702000.0 +2022,Table 2.1,CW,24,mortgage_interest_deductions,All,75000.0,100000.0,True,False,False,1504094.0 +2022,Table 2.1,CH,24,itemized_state_income_tax_deductions,All,75000.0,100000.0,False,False,False,7250442000.0 +2022,Table 2.1,CG,24,itemized_state_income_tax_deductions,All,75000.0,100000.0,True,False,False,1428810.0 +2022,Table 2.1,CF,24,idpitgst,All,75000.0,100000.0,False,False,False,8028368000.0 +2022,Table 2.1,CE,24,idpitgst,All,75000.0,100000.0,True,False,False,1832471.0 +2022,Table 2.1,CL,24,itemized_real_estate_tax_deductions,All,75000.0,100000.0,False,False,False,9182550000.0 +2022,Table 2.1,CK,24,itemized_real_estate_tax_deductions,All,75000.0,100000.0,True,False,False,1632361.0 +2022,Table 2.1,CD,24,state_and_local_tax_deductions,All,75000.0,100000.0,False,False,False,17717861000.0 +2022,Table 2.1,CC,24,state_and_local_tax_deductions,All,75000.0,100000.0,True,False,False,1891180.0 +2022,Table 2.1,CB,24,itemized_taxes_paid_deductions,All,75000.0,100000.0,False,False,False,14632617000.0 +2022,Table 2.1,CA,24,itemized_taxes_paid_deductions,All,75000.0,100000.0,True,False,False,1896368.0 +2022,Table 2.1,DH,25,charitable_contributions_deductions,All,100000.0,200000.0,False,False,False,34781128000.0 +2022,Table 2.1,DG,25,charitable_contributions_deductions,All,100000.0,200000.0,True,False,False,3831570.0 +2022,Table 2.1,CJ,25,itemized_general_sales_tax_deduction,All,100000.0,200000.0,False,False,False,2343346000.0 +2022,Table 2.1,CI,25,itemized_general_sales_tax_deduction,All,100000.0,200000.0,True,False,False,932034.0 +2022,Table 2.1,CT,25,interest_paid_deductions,All,100000.0,200000.0,False,False,False,44357448000.0 +2022,Table 2.1,CS,25,interest_paid_deductions,All,100000.0,200000.0,True,False,False,3879650.0 +2022,Table 2.1,BV,25,medical_expense_deductions_capped,All,100000.0,200000.0,False,False,False,21689680000.0 +2022,Table 2.1,BU,25,medical_expense_deductions_capped,All,100000.0,200000.0,True,False,False,1040043.0 +2022,Table 2.1,BX,25,medical_expense_deductions_uncapped,All,100000.0,200000.0,False,False,False,32277299000.0 +2022,Table 2.1,BW,25,medical_expense_deductions_uncapped,All,100000.0,200000.0,True,False,False,1040043.0 +2022,Table 2.1,CX,25,mortgage_interest_deductions,All,100000.0,200000.0,False,False,False,43076729000.0 +2022,Table 2.1,CW,25,mortgage_interest_deductions,All,100000.0,200000.0,True,False,False,3836302.0 +2022,Table 2.1,CH,25,itemized_state_income_tax_deductions,All,100000.0,200000.0,False,False,False,29975406000.0 +2022,Table 2.1,CG,25,itemized_state_income_tax_deductions,All,100000.0,200000.0,True,False,False,3673771.0 +2022,Table 2.1,CF,25,idpitgst,All,100000.0,200000.0,False,False,False,32318752000.0 +2022,Table 2.1,CE,25,idpitgst,All,100000.0,200000.0,True,False,False,4605804.0 +2022,Table 2.1,CL,25,itemized_real_estate_tax_deductions,All,100000.0,200000.0,False,False,False,26839414000.0 +2022,Table 2.1,CK,25,itemized_real_estate_tax_deductions,All,100000.0,200000.0,True,False,False,4208040.0 +2022,Table 2.1,CD,25,state_and_local_tax_deductions,All,100000.0,200000.0,False,False,False,60242953000.0 +2022,Table 2.1,CC,25,state_and_local_tax_deductions,All,100000.0,200000.0,True,False,False,4692845.0 +2022,Table 2.1,CB,25,itemized_taxes_paid_deductions,All,100000.0,200000.0,False,False,False,41594496000.0 +2022,Table 2.1,CA,25,itemized_taxes_paid_deductions,All,100000.0,200000.0,True,False,False,4707248.0 +2022,Table 2.1,DH,26,charitable_contributions_deductions,All,200000.0,500000.0,False,False,False,37531722000.0 +2022,Table 2.1,DG,26,charitable_contributions_deductions,All,200000.0,500000.0,True,False,False,2868979.0 +2022,Table 2.1,CJ,26,itemized_general_sales_tax_deduction,All,200000.0,500000.0,False,False,False,2466407000.0 +2022,Table 2.1,CI,26,itemized_general_sales_tax_deduction,All,200000.0,500000.0,True,False,False,669142.0 +2022,Table 2.1,CT,26,interest_paid_deductions,All,200000.0,500000.0,False,False,False,46070656000.0 +2022,Table 2.1,CS,26,interest_paid_deductions,All,200000.0,500000.0,True,False,False,2905042.0 +2022,Table 2.1,BV,26,medical_expense_deductions_capped,All,200000.0,500000.0,False,False,False,9579720000.0 +2022,Table 2.1,BU,26,medical_expense_deductions_capped,All,200000.0,500000.0,True,False,False,278713.0 +2022,Table 2.1,BX,26,medical_expense_deductions_uncapped,All,200000.0,500000.0,False,False,False,15279634000.0 +2022,Table 2.1,BW,26,medical_expense_deductions_uncapped,All,200000.0,500000.0,True,False,False,278713.0 +2022,Table 2.1,CX,26,mortgage_interest_deductions,All,200000.0,500000.0,False,False,False,43488414000.0 +2022,Table 2.1,CW,26,mortgage_interest_deductions,All,200000.0,500000.0,True,False,False,2840097.0 +2022,Table 2.1,CH,26,itemized_state_income_tax_deductions,All,200000.0,500000.0,False,False,False,52499008000.0 +2022,Table 2.1,CG,26,itemized_state_income_tax_deductions,All,200000.0,500000.0,True,False,False,2587766.0 +2022,Table 2.1,CF,26,idpitgst,All,200000.0,500000.0,False,False,False,54965415000.0 +2022,Table 2.1,CE,26,idpitgst,All,200000.0,500000.0,True,False,False,3256907.0 +2022,Table 2.1,CL,26,itemized_real_estate_tax_deductions,All,200000.0,500000.0,False,False,False,29283902000.0 +2022,Table 2.1,CK,26,itemized_real_estate_tax_deductions,All,200000.0,500000.0,True,False,False,3046358.0 +2022,Table 2.1,CD,26,state_and_local_tax_deductions,All,200000.0,500000.0,False,False,False,85223975000.0 +2022,Table 2.1,CC,26,state_and_local_tax_deductions,All,200000.0,500000.0,True,False,False,3314681.0 +2022,Table 2.1,CB,26,itemized_taxes_paid_deductions,All,200000.0,500000.0,False,False,False,32118348000.0 +2022,Table 2.1,CA,26,itemized_taxes_paid_deductions,All,200000.0,500000.0,True,False,False,3321050.0 +2022,Table 2.1,DH,27,charitable_contributions_deductions,All,500000.0,1000000.0,False,False,False,20333029000.0 +2022,Table 2.1,DG,27,charitable_contributions_deductions,All,500000.0,1000000.0,True,False,False,810992.0 +2022,Table 2.1,CJ,27,itemized_general_sales_tax_deduction,All,500000.0,1000000.0,False,False,False,20121880000.0 +2022,Table 2.1,CI,27,itemized_general_sales_tax_deduction,All,500000.0,1000000.0,True,False,False,191587.0 +2022,Table 2.1,CT,27,interest_paid_deductions,All,500000.0,1000000.0,False,False,False,16157584000.0 +2022,Table 2.1,CS,27,interest_paid_deductions,All,500000.0,1000000.0,True,False,False,789774.0 +2022,Table 2.1,BV,27,medical_expense_deductions_capped,All,500000.0,1000000.0,False,False,False,1776927000.0 +2022,Table 2.1,BU,27,medical_expense_deductions_capped,All,500000.0,1000000.0,True,False,False,19750.0 +2022,Table 2.1,BX,27,medical_expense_deductions_uncapped,All,500000.0,1000000.0,False,False,False,2729821000.0 +2022,Table 2.1,BW,27,medical_expense_deductions_uncapped,All,500000.0,1000000.0,True,False,False,19750.0 +2022,Table 2.1,CX,27,mortgage_interest_deductions,All,500000.0,1000000.0,False,False,False,13846540000.0 +2022,Table 2.1,CW,27,mortgage_interest_deductions,All,500000.0,1000000.0,True,False,False,751961.0 +2022,Table 2.1,CH,27,itemized_state_income_tax_deductions,All,500000.0,1000000.0,False,False,False,35533301000.0 +2022,Table 2.1,CG,27,itemized_state_income_tax_deductions,All,500000.0,1000000.0,True,False,False,693906.0 +2022,Table 2.1,CF,27,idpitgst,All,500000.0,1000000.0,False,False,False,55655180000.0 +2022,Table 2.1,CE,27,idpitgst,All,500000.0,1000000.0,True,False,False,885494.0 +2022,Table 2.1,CL,27,itemized_real_estate_tax_deductions,All,500000.0,1000000.0,False,False,False,12750661000.0 +2022,Table 2.1,CK,27,itemized_real_estate_tax_deductions,All,500000.0,1000000.0,True,False,False,826870.0 +2022,Table 2.1,CD,27,state_and_local_tax_deductions,All,500000.0,1000000.0,False,False,False,68703441000.0 +2022,Table 2.1,CC,27,state_and_local_tax_deductions,All,500000.0,1000000.0,True,False,False,898216.0 +2022,Table 2.1,CB,27,itemized_taxes_paid_deductions,All,500000.0,1000000.0,False,False,False,8914959000.0 +2022,Table 2.1,CA,27,itemized_taxes_paid_deductions,All,500000.0,1000000.0,True,False,False,898621.0 +2022,Table 2.1,DH,28,charitable_contributions_deductions,All,1000000.0,1500000.0,False,False,False,10226379000.0 +2022,Table 2.1,DG,28,charitable_contributions_deductions,All,1000000.0,1500000.0,True,False,False,211235.0 +2022,Table 2.1,CJ,28,itemized_general_sales_tax_deduction,All,1000000.0,1500000.0,False,False,False,189358000.0 +2022,Table 2.1,CI,28,itemized_general_sales_tax_deduction,All,1000000.0,1500000.0,True,False,False,48184.0 +2022,Table 2.1,CT,28,interest_paid_deductions,All,1000000.0,1500000.0,False,False,False,4904980000.0 +2022,Table 2.1,CS,28,interest_paid_deductions,All,1000000.0,1500000.0,True,False,False,194860.0 +2022,Table 2.1,BV,28,medical_expense_deductions_capped,All,1000000.0,1500000.0,False,False,False,259973000.0 +2022,Table 2.1,BU,28,medical_expense_deductions_capped,All,1000000.0,1500000.0,True,False,False,2220.0 +2022,Table 2.1,BX,28,medical_expense_deductions_uncapped,All,1000000.0,1500000.0,False,False,False,457210000.0 +2022,Table 2.1,BW,28,medical_expense_deductions_uncapped,All,1000000.0,1500000.0,True,False,False,2220.0 +2022,Table 2.1,CX,28,mortgage_interest_deductions,All,1000000.0,1500000.0,False,False,False,3428384000.0 +2022,Table 2.1,CW,28,mortgage_interest_deductions,All,1000000.0,1500000.0,True,False,False,176048.0 +2022,Table 2.1,CH,28,itemized_state_income_tax_deductions,All,1000000.0,1500000.0,False,False,False,17378132000.0 +2022,Table 2.1,CG,28,itemized_state_income_tax_deductions,All,1000000.0,1500000.0,True,False,False,178881.0 +2022,Table 2.1,CF,28,idpitgst,All,1000000.0,1500000.0,False,False,False,17567490000.0 +2022,Table 2.1,CE,28,idpitgst,All,1000000.0,1500000.0,True,False,False,227065.0 +2022,Table 2.1,CL,28,itemized_real_estate_tax_deductions,All,1000000.0,1500000.0,False,False,False,4208736000.0 +2022,Table 2.1,CK,28,itemized_real_estate_tax_deductions,All,1000000.0,1500000.0,True,False,False,208376.0 +2022,Table 2.1,CD,28,state_and_local_tax_deductions,All,1000000.0,1500000.0,False,False,False,21851968000.0 +2022,Table 2.1,CC,28,state_and_local_tax_deductions,All,1000000.0,1500000.0,True,False,False,229656.0 +2022,Table 2.1,CB,28,itemized_taxes_paid_deductions,All,1000000.0,1500000.0,False,False,False,2308379000.0 +2022,Table 2.1,CA,28,itemized_taxes_paid_deductions,All,1000000.0,1500000.0,True,False,False,229745.0 +2022,Table 2.1,DH,29,charitable_contributions_deductions,All,1500000.0,2000000.0,False,False,False,6269622000.0 +2022,Table 2.1,DG,29,charitable_contributions_deductions,All,1500000.0,2000000.0,True,False,False,94711.0 +2022,Table 2.1,CJ,29,itemized_general_sales_tax_deduction,All,1500000.0,2000000.0,False,False,False,88916000.0 +2022,Table 2.1,CI,29,itemized_general_sales_tax_deduction,All,1500000.0,2000000.0,True,False,False,21636.0 +2022,Table 2.1,CT,29,interest_paid_deductions,All,1500000.0,2000000.0,False,False,False,2505822000.0 +2022,Table 2.1,CS,29,interest_paid_deductions,All,1500000.0,2000000.0,True,False,False,84193.0 +2022,Table 2.1,BV,29,medical_expense_deductions_capped,All,1500000.0,2000000.0,False,False,False,109843000.0 +2022,Table 2.1,BU,29,medical_expense_deductions_capped,All,1500000.0,2000000.0,True,False,False,771.0 +2022,Table 2.1,BX,29,medical_expense_deductions_uncapped,All,1500000.0,2000000.0,False,False,False,208301000.0 +2022,Table 2.1,BW,29,medical_expense_deductions_uncapped,All,1500000.0,2000000.0,True,False,False,771.0 +2022,Table 2.1,CX,29,mortgage_interest_deductions,All,1500000.0,2000000.0,False,False,False,1442720000.0 +2022,Table 2.1,CW,29,mortgage_interest_deductions,All,1500000.0,2000000.0,True,False,False,73746.0 +2022,Table 2.1,CH,29,itemized_state_income_tax_deductions,All,1500000.0,2000000.0,False,False,False,10837281000.0 +2022,Table 2.1,CG,29,itemized_state_income_tax_deductions,All,1500000.0,2000000.0,True,False,False,78538.0 +2022,Table 2.1,CF,29,idpitgst,All,1500000.0,2000000.0,False,False,False,10926197000.0 +2022,Table 2.1,CE,29,idpitgst,All,1500000.0,2000000.0,True,False,False,100173.0 +2022,Table 2.1,CL,29,itemized_real_estate_tax_deductions,All,1500000.0,2000000.0,False,False,False,2182570000.0 +2022,Table 2.1,CK,29,itemized_real_estate_tax_deductions,All,1500000.0,2000000.0,True,False,False,90531.0 +2022,Table 2.1,CD,29,state_and_local_tax_deductions,All,1500000.0,2000000.0,False,False,False,13145596000.0 +2022,Table 2.1,CC,29,state_and_local_tax_deductions,All,1500000.0,2000000.0,True,False,False,101270.0 +2022,Table 2.1,CB,29,itemized_taxes_paid_deductions,All,1500000.0,2000000.0,False,False,False,1012061000.0 +2022,Table 2.1,CA,29,itemized_taxes_paid_deductions,All,1500000.0,2000000.0,True,False,False,101270.0 +2022,Table 2.1,DH,30,charitable_contributions_deductions,All,2000000.0,5000000.0,False,False,False,16801653000.0 +2022,Table 2.1,DG,30,charitable_contributions_deductions,All,2000000.0,5000000.0,True,False,False,144922.0 +2022,Table 2.1,CJ,30,itemized_general_sales_tax_deduction,All,2000000.0,5000000.0,False,False,False,136299000.0 +2022,Table 2.1,CI,30,itemized_general_sales_tax_deduction,All,2000000.0,5000000.0,True,False,False,29825.0 +2022,Table 2.1,CT,30,interest_paid_deductions,All,2000000.0,5000000.0,False,False,False,5267640000.0 +2022,Table 2.1,CS,30,interest_paid_deductions,All,2000000.0,5000000.0,True,False,False,126085.0 +2022,Table 2.1,BV,30,medical_expense_deductions_capped,All,2000000.0,5000000.0,False,False,False,120686000.0 +2022,Table 2.1,BU,30,medical_expense_deductions_capped,All,2000000.0,5000000.0,True,False,False,544.0 +2022,Table 2.1,BX,30,medical_expense_deductions_uncapped,All,2000000.0,5000000.0,False,False,False,236937000.0 +2022,Table 2.1,BW,30,medical_expense_deductions_uncapped,All,2000000.0,5000000.0,True,False,False,544.0 +2022,Table 2.1,CX,30,mortgage_interest_deductions,All,2000000.0,5000000.0,False,False,False,2010572000.0 +2022,Table 2.1,CW,30,mortgage_interest_deductions,All,2000000.0,5000000.0,True,False,False,102107.0 +2022,Table 2.1,CH,30,itemized_state_income_tax_deductions,All,2000000.0,5000000.0,False,False,False,29273724000.0 +2022,Table 2.1,CG,30,itemized_state_income_tax_deductions,All,2000000.0,5000000.0,True,False,False,121487.0 +2022,Table 2.1,CF,30,idpitgst,All,2000000.0,5000000.0,False,False,False,29410023000.0 +2022,Table 2.1,CE,30,idpitgst,All,2000000.0,5000000.0,True,False,False,151311.0 +2022,Table 2.1,CL,30,itemized_real_estate_tax_deductions,All,2000000.0,5000000.0,False,False,False,4206821000.0 +2022,Table 2.1,CK,30,itemized_real_estate_tax_deductions,All,2000000.0,5000000.0,True,False,False,134974.0 +2022,Table 2.1,CD,30,state_and_local_tax_deductions,All,2000000.0,5000000.0,False,False,False,33682137000.0 +2022,Table 2.1,CC,30,state_and_local_tax_deductions,All,2000000.0,5000000.0,True,False,False,153186.0 +2022,Table 2.1,CB,30,itemized_taxes_paid_deductions,All,2000000.0,5000000.0,False,False,False,1580393000.0 +2022,Table 2.1,CA,30,itemized_taxes_paid_deductions,All,2000000.0,5000000.0,True,False,False,153198.0 +2022,Table 2.1,DH,31,charitable_contributions_deductions,All,5000000.0,10000000.0,False,False,False,11261823000.0 +2022,Table 2.1,DG,31,charitable_contributions_deductions,All,5000000.0,10000000.0,True,False,False,41137.0 +2022,Table 2.1,CJ,31,itemized_general_sales_tax_deduction,All,5000000.0,10000000.0,False,False,False,66402000.0 +2022,Table 2.1,CI,31,itemized_general_sales_tax_deduction,All,5000000.0,10000000.0,True,False,False,7757.0 +2022,Table 2.1,CT,31,interest_paid_deductions,All,5000000.0,10000000.0,False,False,False,2932702000.0 +2022,Table 2.1,CS,31,interest_paid_deductions,All,5000000.0,10000000.0,True,False,False,35016.0 +2022,Table 2.1,BV,31,medical_expense_deductions_capped,All,5000000.0,10000000.0,False,False,False,18806000.0 +2022,Table 2.1,BU,31,medical_expense_deductions_capped,All,5000000.0,10000000.0,True,False,False,39.0 +2022,Table 2.1,BX,31,medical_expense_deductions_uncapped,All,5000000.0,10000000.0,False,False,False,38147000.0 +2022,Table 2.1,BW,31,medical_expense_deductions_uncapped,All,5000000.0,10000000.0,True,False,False,39.0 +2022,Table 2.1,CX,31,mortgage_interest_deductions,All,5000000.0,10000000.0,False,False,False,503857000.0 +2022,Table 2.1,CW,31,mortgage_interest_deductions,All,5000000.0,10000000.0,True,False,False,25106.0 +2022,Table 2.1,CH,31,itemized_state_income_tax_deductions,All,5000000.0,10000000.0,False,False,False,18054598000.0 +2022,Table 2.1,CG,31,itemized_state_income_tax_deductions,All,5000000.0,10000000.0,True,False,False,34565.0 +2022,Table 2.1,CF,31,idpitgst,All,5000000.0,10000000.0,False,False,False,18121000000.0 +2022,Table 2.1,CE,31,idpitgst,All,5000000.0,10000000.0,True,False,False,42322.0 +2022,Table 2.1,CL,31,itemized_real_estate_tax_deductions,All,5000000.0,10000000.0,False,False,False,1651157000.0 +2022,Table 2.1,CK,31,itemized_real_estate_tax_deductions,All,5000000.0,10000000.0,True,False,False,36961.0 +2022,Table 2.1,CD,31,state_and_local_tax_deductions,All,5000000.0,10000000.0,False,False,False,19793471000.0 +2022,Table 2.1,CC,31,state_and_local_tax_deductions,All,5000000.0,10000000.0,True,False,False,42813.0 +2022,Table 2.1,CB,31,itemized_taxes_paid_deductions,All,5000000.0,10000000.0,False,False,False,478695000.0 +2022,Table 2.1,CA,31,itemized_taxes_paid_deductions,All,5000000.0,10000000.0,True,False,False,42827.0 +2022,Table 2.1,DH,32,charitable_contributions_deductions,All,10000000.0,inf,False,False,False,61566506000.0 +2022,Table 2.1,DG,32,charitable_contributions_deductions,All,10000000.0,inf,True,False,False,29233.0 +2022,Table 2.1,CJ,32,itemized_general_sales_tax_deduction,All,10000000.0,inf,False,False,False,258304000.0 +2022,Table 2.1,CI,32,itemized_general_sales_tax_deduction,All,10000000.0,inf,True,False,False,4747.0 +2022,Table 2.1,CT,32,interest_paid_deductions,All,10000000.0,inf,False,False,False,9698806000.0 +2022,Table 2.1,CS,32,interest_paid_deductions,All,10000000.0,inf,True,False,False,24920.0 +2022,Table 2.1,BV,32,medical_expense_deductions_capped,All,10000000.0,inf,False,False,False,1380000.0 +2022,Table 2.1,BU,32,medical_expense_deductions_capped,All,10000000.0,inf,True,False,False,3.0 +2022,Table 2.1,BX,32,medical_expense_deductions_uncapped,All,10000000.0,inf,False,False,False,4181000.0 +2022,Table 2.1,BW,32,medical_expense_deductions_uncapped,All,10000000.0,inf,True,False,False,3.0 +2022,Table 2.1,CX,32,mortgage_interest_deductions,All,10000000.0,inf,False,False,False,297571000.0 +2022,Table 2.1,CW,32,mortgage_interest_deductions,All,10000000.0,inf,True,False,False,14576.0 +2022,Table 2.1,CH,32,itemized_state_income_tax_deductions,All,10000000.0,inf,False,False,False,49442981000.0 +2022,Table 2.1,CG,32,itemized_state_income_tax_deductions,All,10000000.0,inf,True,False,False,24856.0 +2022,Table 2.1,CF,32,idpitgst,All,10000000.0,inf,False,False,False,49701285000.0 +2022,Table 2.1,CE,32,idpitgst,All,10000000.0,inf,True,False,False,29603.0 +2022,Table 2.1,CL,32,itemized_real_estate_tax_deductions,All,10000000.0,inf,False,False,False,2188994000.0 +2022,Table 2.1,CK,32,itemized_real_estate_tax_deductions,All,10000000.0,inf,True,False,False,25619.0 +2022,Table 2.1,CD,32,state_and_local_tax_deductions,All,10000000.0,inf,False,False,False,51907760000.0 +2022,Table 2.1,CC,32,state_and_local_tax_deductions,All,10000000.0,inf,True,False,False,29965.0 +2022,Table 2.1,CB,32,itemized_taxes_paid_deductions,All,10000000.0,inf,False,False,False,877295000.0 +2022,Table 2.1,CA,32,itemized_taxes_paid_deductions,All,10000000.0,inf,True,False,False,29981.0